MediaWiki:Common.css
Tampilan
Catatan: Setelah menerbitkan, Anda mungkin perlu melewati tembolok peramban web Anda untuk melihat perubahan.
- Firefox/Safari: Tekan dan tahan Shift sembari mengeklik Reload, atau tekan Ctrl-F5 atau Ctrl-R (⌘-R di Mac)
- Google Chrome: Tekan Ctrl-Shift-R (⌘-Shift-R di Mac)
- Edge: Tahan Ctrl sembari mengeklik Refresh, atau tekan Ctrl-F5
/* =====================================
MALIKI ENCYCLOPEDIA
Common.css FINAL SIMPLE
===================================== */
/* 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 UTAMA
===================================== */
.maliki-category-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 900px;
margin: 40px auto;
}
/* CARD */
.maliki-category-card {
background: #006b54;
border-radius: 15px;
min-height: 190px;
padding: 30px 25px;
box-sizing: border-box;
text-align: center;
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 {
text-align: center;
margin-top: 12px;
}
.maliki-category-link a {
color: #006b54;
font-weight: bold;
text-decoration: none;
}
/* RESPONSIVE */
@media (max-width: 700px) {
.maliki-category-grid {
grid-template-columns: 1fr;
max-width: 300px;
}
.maliki-hero {
padding: 25px;
}
.maliki-hero h1 {
font-size: 30px;
}
}