Skip to content

Commit 596c7e2

Browse files
committed
Done
Time: 5:30 AM Date: 7-04-2025 Signed-off-by: Someshdiwan <[email protected]>
1 parent 0b6eba2 commit 596c7e2

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

site/assets/style.css

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,28 @@ body {
113113
margin-left: 0;
114114
}
115115
}
116+
.image-row {
117+
display: flex;
118+
flex-wrap: wrap;
119+
justify-content: space-around;
120+
gap: 1rem;
121+
margin: 1.5rem 0;
122+
}
123+
124+
.image-row img {
125+
max-width: 100%;
126+
height: auto;
127+
border-radius: 10px;
128+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
129+
transition: transform 0.3s ease;
130+
}
131+
132+
.image-row img:hover {
133+
transform: scale(1.03);
134+
}
135+
136+
@media (min-width: 768px) {
137+
.image-row img {
138+
width: 48%;
139+
}
140+
}

0 commit comments

Comments
 (0)