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 | Common.css FINAL CLEAN v3.0 | ||
===================================== */ | ===================================== */ | ||
/* | /* GLOBAL */ | ||
body { | body{ | ||
background:#f5f8f7; | |||
color:#24343b; | |||
} | } | ||
.firstHeading { | .firstHeading{ | ||
color:#004f40; | |||
} | } | ||
a { | a{ | ||
color:#1f5f8b; | |||
} | } | ||
a:hover { | a:hover{ | ||
color:#006b54; | |||
} | } | ||
/* | /* HOME */ | ||
.me-home{ | .me-home{ | ||
max-width:1200px; | |||
margin:auto; | |||
} | } | ||
/* | /* HERO */ | ||
.me-hero{ | .me-hero{ | ||
background:#f8f6ef; | |||
padding:45px; | |||
border-radius:16px; | |||
border:1px solid #ddd; | |||
text-align:center; | |||
margin:30px 0 50px; | |||
} | } | ||
.me-hero h1{ | .me-hero h1{ | ||
font-family:Georgia,serif; | |||
font-size:42px; | |||
color:#006b5b; | |||
margin-bottom:15px; | |||
} | } | ||
.me-hero p{ | .me-hero p{ | ||
font-size:18px; | |||
line-height:1.7; | |||
margin:10px auto; | |||
} | } | ||
/* | /* CATEGORY MENU */ | ||
.me-explore{ | .me-explore{ | ||
display:grid; | |||
grid-template-columns:repeat(5,1fr); | |||
gap:25px; | |||
margin-bottom:60px; | |||
} | } | ||
| Baris 111: | Baris 84: | ||
.me-explore-card{ | .me-explore-card{ | ||
background:#006b54; | |||
height:170px; | |||
border-radius:15px; | |||
padding:20px; | |||
box-sizing:border-box; | |||
display:flex; | |||
flex-direction:column; | |||
justify-content:center; | |||
align-items:center; | |||
text-align:center; | |||
color:white; | |||
transition:.3s; | |||
. | |||
} | } | ||
| Baris 145: | Baris 112: | ||
.me-explore-card | .me-explore-card:hover{ | ||
background:#c79b2b; | |||
transform:translateY(-5px); | |||
} | } | ||
| Baris 161: | Baris 124: | ||
.me-icon{ | .me-icon{ | ||
font-size:38px; | |||
margin-bottom:10px; | |||
} | } | ||
| Baris 169: | Baris 132: | ||
.me-explore-card h3{ | |||
color:white; | |||
margin:8px 0; | |||
} | } | ||
| Baris 188: | Baris 142: | ||
.me-explore-card p{ | |||
color:white; | |||
font-size:14px; | |||
line-height:1.5; | |||
margin:5px 0; | |||
} | } | ||
| Baris 207: | Baris 156: | ||
.me-explore-card a{ | |||
color:white; | |||
font-weight:bold; | |||
text-decoration:none; | |||
margin-top:10px; | |||
} | |||
/* SECTION */ | |||
.me-home h2{ | |||
color:#006b5b; | |||
border-bottom:1px solid #ddd; | |||
padding-bottom:10px; | |||
margin-top:50px; | |||
} | } | ||
| Baris 240: | Baris 186: | ||
/* FEATURED */ | |||
.me-featured{ | |||
display:grid; | |||
grid-template-columns:2fr 1fr; | |||
gap:30px; | |||
margin:40px 0; | |||
} | } | ||
| Baris 262: | Baris 202: | ||
.me-feature-main{ | |||
background:white; | |||
border:1px solid #ddd; | |||
border-radius:15px; | |||
padding:30px; | |||
display:flex; | |||
flex-direction:column; | |||
align-items:center; | |||
} | } | ||
| Baris 298: | Baris 224: | ||
.me-feature-main img{ | .me-feature-main img{ | ||
max-width:350px; | |||
height:auto; | |||
border-radius:12px; | |||
} | } | ||
| Baris 312: | Baris 236: | ||
.me-feature-side{ | .me-feature-side{ | ||
display:flex; | |||
flex-direction:column; | |||
gap:20px; | |||
} | } | ||
| Baris 324: | Baris 248: | ||
.me-feature-side div{ | .me-feature-side div{ | ||
background:#f8f6ef; | |||
border:1px solid #ddd; | |||
border-radius:12px; | |||
padding:25px; | |||
} | } | ||
| Baris 336: | Baris 260: | ||
/* | /* CARD */ | ||
.me-grid{ | |||
display:grid; | |||
grid-template-columns:repeat(3,1fr); | |||
gap:30px; | |||
margin:30px 0; | |||
} | |||
.me-card{ | |||
background:white; | |||
border:1px solid #ddd; | |||
border-radius:12px; | |||
padding:20px; | |||
. | box-shadow:0 3px 8px rgba(0,0,0,.08); | ||
} | |||
.me-card img{ | |||
width:100%; | |||
height:180px; | |||
object-fit:cover; | |||
border-radius:10px; | |||
} | } | ||
| Baris 377: | Baris 305: | ||
/* | /* RESPONSIVE */ | ||
@media(max-width:900px){ | @media(max-width:900px){ | ||
.me-explore{ | .me-explore{ | ||
grid-template-columns:repeat(2,1fr); | grid-template-columns:repeat(2,1fr); | ||
| Baris 404: | Baris 322: | ||
} | } | ||
} | } | ||
| Baris 411: | Baris 328: | ||
@media(max-width:600px){ | @media(max-width:600px){ | ||
.me-explore{ | .me-explore{ | ||
| Baris 420: | Baris 336: | ||
.me- | .me-hero{ | ||
padding:25px; | padding:25px; | ||
| Baris 434: | Baris 344: | ||
.me-hero h1{ | .me-hero h1{ | ||
font-size:28px; | font-size:28px; | ||
} | } | ||
} | } | ||
Revisi per 9 September 2026 16.26
/* =====================================
MALIKI ENCYCLOPEDIA
Common.css FINAL CLEAN v3.0
===================================== */
/* GLOBAL */
body{
background:#f5f8f7;
color:#24343b;
}
.firstHeading{
color:#004f40;
}
a{
color:#1f5f8b;
}
a:hover{
color:#006b54;
}
/* HOME */
.me-home{
max-width:1200px;
margin:auto;
}
/* HERO */
.me-hero{
background:#f8f6ef;
padding:45px;
border-radius:16px;
border:1px solid #ddd;
text-align:center;
margin:30px 0 50px;
}
.me-hero h1{
font-family:Georgia,serif;
font-size:42px;
color:#006b5b;
margin-bottom:15px;
}
.me-hero p{
font-size:18px;
line-height:1.7;
margin:10px auto;
}
/* CATEGORY MENU */
.me-explore{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
margin-bottom:60px;
}
.me-explore-card{
background:#006b54;
height:170px;
border-radius:15px;
padding:20px;
box-sizing:border-box;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
transition:.3s;
}
.me-explore-card:hover{
background:#c79b2b;
transform:translateY(-5px);
}
.me-icon{
font-size:38px;
margin-bottom:10px;
}
.me-explore-card h3{
color:white;
margin:8px 0;
}
.me-explore-card p{
color:white;
font-size:14px;
line-height:1.5;
margin:5px 0;
}
.me-explore-card a{
color:white;
font-weight:bold;
text-decoration:none;
margin-top:10px;
}
/* SECTION */
.me-home h2{
color:#006b5b;
border-bottom:1px solid #ddd;
padding-bottom:10px;
margin-top:50px;
}
/* FEATURED */
.me-featured{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
margin:40px 0;
}
.me-feature-main{
background:white;
border:1px solid #ddd;
border-radius:15px;
padding:30px;
display:flex;
flex-direction:column;
align-items:center;
}
.me-feature-main img{
max-width:350px;
height:auto;
border-radius:12px;
}
.me-feature-side{
display:flex;
flex-direction:column;
gap:20px;
}
.me-feature-side div{
background:#f8f6ef;
border:1px solid #ddd;
border-radius:12px;
padding:25px;
}
/* CARD */
.me-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin:30px 0;
}
.me-card{
background:white;
border:1px solid #ddd;
border-radius:12px;
padding:20px;
box-shadow:0 3px 8px rgba(0,0,0,.08);
}
.me-card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:10px;
}
/* RESPONSIVE */
@media(max-width:900px){
.me-explore{
grid-template-columns:repeat(2,1fr);
}
.me-featured{
grid-template-columns:1fr;
}
}
@media(max-width:600px){
.me-explore{
grid-template-columns:1fr;
}
.me-hero{
padding:25px;
}
.me-hero h1{
font-size:28px;
}
}