MediaWiki:Common.css: Difference between revisions
From Citypedia Online
No edit summary |
Super Admin (talk | contribs) mNo edit summary |
||
| (11 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
/* | /* ================================ | ||
CITYPEDIA CORE THEME | |||
================================ */ | |||
/* Base typography */ | |||
body { | |||
font-family: system-ui, -apple-system, Roboto, Arial, sans-serif; | |||
background: #f3f4f6; | |||
} | } | ||
/* | /* ================================ | ||
WELCOME / HERO CARD | |||
================================ */ | |||
.cp-welcome-card { | .cp-welcome-card { | ||
background: linear-gradient(135deg,#ffb45c,#b6e3b2); | |||
border-radius: 16px; | |||
padding: 40px; | |||
margin: 20px 0; | |||
box-shadow: 0 12px 25px rgba(0,0,0,0.15); | |||
text-align: center; | |||
} | } | ||
.cp-welcome-text { | .cp-welcome-text { | ||
font-size: 18px; | |||
line-height: 1.8; | |||
color: #1f2937; | |||
} | } | ||
/* | /* Highlighted red links */ | ||
.cp-highlight a { | .cp-highlight a { | ||
color: #dc2626 !important; | |||
font-weight: 700; | |||
text-decoration: underline; | |||
} | } | ||
/* | /* Buttons */ | ||
.cp-btn-style { | .cp-btn-style { | ||
background: #2563eb; | |||
color: #fff !important; | |||
padding: 14px 32px; | |||
border-radius: 10px; | |||
font-size: 16px; | |||
font-weight: 700; | |||
display: inline-block; | |||
text-decoration: none !important; | |||
box-shadow: 0 4px 12px rgba(37,99,235,0.4); | |||
} | } | ||
.cp-btn-style:hover { | .cp-btn-style:hover { | ||
background: #1d4ed8; | |||
} | } | ||
. | .mw-columns { | ||
column-count: 2; | |||
column-gap: 16px; | |||
} | } | ||
@media (max-width: 720px) { | |||
@media | .mw-columns { | ||
. | column-count: 1; | ||
} | } | ||
} | } | ||
Latest revision as of 05:09, 1 February 2026
/* ================================
CITYPEDIA CORE THEME
================================ */
/* Base typography */
body {
font-family: system-ui, -apple-system, Roboto, Arial, sans-serif;
background: #f3f4f6;
}
/* ================================
WELCOME / HERO CARD
================================ */
.cp-welcome-card {
background: linear-gradient(135deg,#ffb45c,#b6e3b2);
border-radius: 16px;
padding: 40px;
margin: 20px 0;
box-shadow: 0 12px 25px rgba(0,0,0,0.15);
text-align: center;
}
.cp-welcome-text {
font-size: 18px;
line-height: 1.8;
color: #1f2937;
}
/* Highlighted red links */
.cp-highlight a {
color: #dc2626 !important;
font-weight: 700;
text-decoration: underline;
}
/* Buttons */
.cp-btn-style {
background: #2563eb;
color: #fff !important;
padding: 14px 32px;
border-radius: 10px;
font-size: 16px;
font-weight: 700;
display: inline-block;
text-decoration: none !important;
box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}
.cp-btn-style:hover {
background: #1d4ed8;
}
.mw-columns {
column-count: 2;
column-gap: 16px;
}
@media (max-width: 720px) {
.mw-columns {
column-count: 1;
}
}
