Skip to content

Commit

Permalink
Update index.css
Browse files Browse the repository at this point in the history
  • Loading branch information
sahajoydeep authored May 5, 2024
1 parent c2ef198 commit 12975c4
Showing 1 changed file with 46 additions and 44 deletions.
90 changes: 46 additions & 44 deletions index.css
Original file line number Diff line number Diff line change
@@ -1,69 +1,71 @@
header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(177, 168, 241);
padding: 0;
margin: 0;
}
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(177, 168, 241);
padding: 0;
margin: 0;
}

.nav1{
.nav1 {
padding: 10px;
margin-left: -12px;
}

.nav2, .nav3{
.nav2,
.nav3 {
padding: 6px;
}

.nav a {
font-family: 'Courier New', Courier, monospace;
color: blueviolet;
border-color: crimson;
border-radius: 10px;
.nav a {
font-family: 'Courier New', Courier, monospace;
color: blueviolet;
border-color: crimson;
border-radius: 10px;

}
}

.nav a:hover {
background-color: rgb(200, 90, 53);
}

.nav a:hover {
background-color: rgb(200, 90, 53);
}

#desktop {
width: 50% auto;
height: 50% auto;
}

.image-grid {
max-width: 100%;
max-width: 100%;
padding: 10px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 10px;
}

.image-grid img {
max-width: 100%;
height: 100%;
}
#desktop {
width: 50% auto;
height: 50% auto;
}

.image1{
.image-grid {
max-width: 100%;
max-width: 100%;
padding: 10px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 10px;
}

.image-grid img {
max-width: 100%;
height: 100%;
}

.image {
transition: transform 0.25s ease-in-out;
}

.image1:hover {
.image:hover {
transform: scale(1.1);
cursor: pointer;
border: 3px solid orangered;
}

.display{
.display {
display: flex;
align-items: center;
justify-content: center;
}
.title-name{

.title-name {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 10px;
border: 1px solid rgb(24, 227, 197);
Expand All @@ -74,7 +76,7 @@ header {
margin-top: 50px;
}

.title-name:hover{
.title-name:hover {
background-color: navy;
color: white;
}
}

0 comments on commit 12975c4

Please sign in to comment.