More actions
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; | ||
color: #fff; | |||
color: # | |||
} | } | ||
.card-desc { | .card-desc { | ||
font-size: 14px; | font-size: 14px; | ||
color: # | 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;
}