MediaWiki:Common.css: Perbedaan antara revisi
Tampilan
ADMIN-ency (bicara | kontrib) Tidak ada ringkasan suntingan |
ADMIN-ency (bicara | kontrib) Tidak ada ringkasan suntingan |
||
| Baris 1: | Baris 1: | ||
/* ===================================== | /* ===================================== | ||
MALIKI ENCYCLOPEDIA | MALIKI ENCYCLOPEDIA | ||
Common.css FINAL SIMPLE | Common.css FINAL SIMPLE v2 | ||
===================================== */ | ===================================== */ | ||
| Baris 8: | Baris 8: | ||
body { | body { | ||
background: #f5f8f7; | background:#f5f8f7; | ||
color: #24343b; | color:#24343b; | ||
} | } | ||
.firstHeading { | .firstHeading { | ||
color: #004f40; | color:#004f40; | ||
} | } | ||
a { | a { | ||
color: #1f5f8b; | color:#1f5f8b; | ||
} | } | ||
| Baris 24: | Baris 24: | ||
.maliki-home { | .maliki-home { | ||
max-width: 1200px; | max-width:1200px; | ||
margin: 0 auto; | margin:0 auto; | ||
} | } | ||
| Baris 32: | Baris 32: | ||
.maliki-hero { | .maliki-hero { | ||
background: #f8f6ef; | background:#f8f6ef; | ||
border: 1px solid #ddd; | border:1px solid #ddd; | ||
border-radius: 16px; | border-radius:16px; | ||
padding: 45px; | padding:45px; | ||
margin: 30px 0 50px; | margin:30px 0 50px; | ||
text-align: center; | text-align:center; | ||
} | } | ||
.maliki-hero h1 { | .maliki-hero h1 { | ||
font-family: Georgia, serif; | font-family:Georgia,serif; | ||
font-size: 40px; | font-size:40px; | ||
color: #006b5b; | color:#006b5b; | ||
margin: 0 0 15px; | margin:0 0 15px; | ||
} | } | ||
.maliki-hero p { | .maliki-hero p { | ||
font-size: 17px; | font-size:17px; | ||
line-height: 1.7; | line-height:1.7; | ||
margin: 10px auto; | margin:10px auto; | ||
} | } | ||
/* ===================================== | /* ===================================== | ||
KATEGORI | KATEGORI | ||
===================================== */ | ===================================== */ | ||
.maliki-category-grid { | .maliki-category-grid { | ||
display: | display:flex; | ||
justify-content:center; | |||
gap: 30px; | align-items:flex-start; | ||
gap:30px; | |||
margin:40px auto; | |||
} | |||
/* ITEM */ | |||
.maliki-category-item { | |||
width:220px; | |||
text-align:center; | |||
} | } | ||
| Baris 70: | Baris 78: | ||
.maliki-category-card { | .maliki-category-card { | ||
background: #006b54; | background:#006b54; | ||
border-radius: 15px; | border-radius:15px; | ||
min-height: 190px; | min-height:190px; | ||
padding: 30px | padding:30px 20px; | ||
box-sizing: border-box | box-sizing:border-box; | ||
color:white; | |||
color: white; | |||
} | } | ||
| Baris 83: | Baris 90: | ||
.maliki-category-card h3 { | .maliki-category-card h3 { | ||
color: white; | color:white; | ||
font-size: 20px; | font-size:20px; | ||
margin: 0 0 15px; | margin:0 0 15px; | ||
} | } | ||
| Baris 92: | Baris 99: | ||
.maliki-category-card p { | .maliki-category-card p { | ||
color: white; | color:white; | ||
font-size: 15px; | font-size:15px; | ||
line-height: 1.6; | line-height:1.6; | ||
margin: 0; | margin:0; | ||
} | } | ||
| Baris 102: | Baris 109: | ||
.maliki-category-link { | .maliki-category-link { | ||
margin-top:12px; | |||
margin-top: 12px; | |||
} | } | ||
.maliki-category-link a { | .maliki-category-link a { | ||
color: #006b54; | color:#006b54; | ||
font-weight: bold; | font-weight:bold; | ||
text-decoration: none; | text-decoration:none; | ||
} | } | ||
| Baris 115: | Baris 121: | ||
/* RESPONSIVE */ | /* RESPONSIVE */ | ||
@media (max-width: | @media(max-width:750px) { | ||
.maliki-category-grid { | .maliki-category-grid { | ||
flex-direction:column; | |||
align-items:center; | |||
} | } | ||
} | } | ||
Revisi per 9 September 2026 18.05
/* =====================================
MALIKI ENCYCLOPEDIA
Common.css FINAL SIMPLE v2
===================================== */
/* GLOBAL */
body {
background:#f5f8f7;
color:#24343b;
}
.firstHeading {
color:#004f40;
}
a {
color:#1f5f8b;
}
/* HOME */
.maliki-home {
max-width:1200px;
margin:0 auto;
}
/* HERO */
.maliki-hero {
background:#f8f6ef;
border:1px solid #ddd;
border-radius:16px;
padding:45px;
margin:30px 0 50px;
text-align:center;
}
.maliki-hero h1 {
font-family:Georgia,serif;
font-size:40px;
color:#006b5b;
margin:0 0 15px;
}
.maliki-hero p {
font-size:17px;
line-height:1.7;
margin:10px auto;
}
/* =====================================
KATEGORI
===================================== */
.maliki-category-grid {
display:flex;
justify-content:center;
align-items:flex-start;
gap:30px;
margin:40px auto;
}
/* ITEM */
.maliki-category-item {
width:220px;
text-align:center;
}
/* CARD */
.maliki-category-card {
background:#006b54;
border-radius:15px;
min-height:190px;
padding:30px 20px;
box-sizing:border-box;
color:white;
}
/* JUDUL */
.maliki-category-card h3 {
color:white;
font-size:20px;
margin:0 0 15px;
}
/* DESKRIPSI */
.maliki-category-card p {
color:white;
font-size:15px;
line-height:1.6;
margin:0;
}
/* LINK DI BAWAH CARD */
.maliki-category-link {
margin-top:12px;
}
.maliki-category-link a {
color:#006b54;
font-weight:bold;
text-decoration:none;
}
/* RESPONSIVE */
@media(max-width:750px) {
.maliki-category-grid {
flex-direction:column;
align-items:center;
}
}