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.

MediaWiki:MineTeks-Cards.css: Revizyonlar arasındaki fark

MediaWiki arayüz sayfası
Değişiklik özeti yok
Değişiklik özeti yok
 
23. satır: 23. satır:
   font-size: 18px;
   font-size: 18px;
   font-weight: 600;
   font-weight: 600;
  margin-bottom: 8px;
   color: #fff;
   color: #ffffff;
}
}


.card-desc {
.card-desc {
   font-size: 14px;
   font-size: 14px;
   color: #bbbbbb;
   color: #bbb;
}
}

14.25, 7 Ocak 2026 itibarı ile sayfanın şu anki hâli

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.card {
  background: #111;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.6);
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.card-desc {
  font-size: 14px;
  color: #bbb;
}