Değişiklik özeti yok |
Değişiklik özeti yok |
||
1. satır: | 1. satır: | ||
.grid-gallery { | .grid-gallery { | ||
display: flex; | display: flex; | ||
6. satır: | 5. satır: | ||
} | } | ||
.grid- | .grid-box { | ||
width: 150px; | width: 150px; | ||
height: 50px; | height: 50px; | ||
position: relative; | |||
border-radius: 8px; | |||
overflow: hidden; | overflow: hidden; | ||
box-shadow: 0 0 6px rgba(0,0,0,0.6); | box-shadow: 0 0 6px rgba(0,0,0,0.6); | ||
} | } | ||
.grid- | .grid-box img { | ||
width: | width: 100%; | ||
height: | height: 100%; | ||
object-fit: cover; | object-fit: cover; | ||
border-radius: 8px; | |||
display: block; | display: block; | ||
} | } | ||
.grid- | .grid-label { | ||
position: absolute; | position: absolute; | ||
top: 0; | top: 0; | ||
left: 0; | left: 0; | ||
width: | width: 100%; | ||
height: | height: 100%; | ||
color: white; | |||
font-weight: bold; | |||
font-size: 14px; | |||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
justify-content: center; | justify-content: center; | ||
text-shadow: 0 0 4px black; | |||
text-shadow: 0 0 | |||
} | } |
07.17, 23 Nisan 2025 tarihindeki hâli
.grid-gallery {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.grid-box {
width: 150px;
height: 50px;
position: relative;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 0 6px rgba(0,0,0,0.6);
}
.grid-box img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
display: block;
}
.grid-label {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: white;
font-weight: bold;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
text-shadow: 0 0 4px black;
}