Menüyü değiştir
Toggle preferences menu
Kişisel menüyü aç / kapat
Oturum açık değil
Your IP address will be publicly visible if you make any edits.

Şablon:Main page/categories/styles.css

Kayıp Medya Wiki sitesinden
07.14, 23 Nisan 2025 tarihinde Admin (mesaj | katkılar) tarafından oluşturulmuş 1643 numaralı sürüm
.grid-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.grid-item {
  position: relative;
  width: 150px;
  height: 50px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.grid-item img {
  width: 150px;
  height: 50px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.grid-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 15px;
  text-shadow: 0 0 5px black;
  z-index: 2;
}