MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
add cool CSS stuff borrowed from Star Citizen Wiki (https://starcitizen.tools/MediaWiki:Citizen.css for attribution) Tag: Recreated |
make better |
||
| Line 12: | Line 12: | ||
--woa-accent: #00B8E6; | --woa-accent: #00B8E6; | ||
--woa-dark: #053E73; | --woa-dark: #053E73; | ||
/* Override Codex default blues with WikiOasis brand */ | |||
--color-primary: var(--woa-primary); | |||
--color-progressive: var(--woa-secondary); | |||
--color-destructive: #d32424; | |||
} | } | ||
| Line 27: | Line 32: | ||
h1 { | h1 { | ||
padding-bottom: 0.5em; | padding-bottom: 0.5em; | ||
} | } | ||
| Line 72: | Line 76: | ||
} | } | ||
/* External portlet hidden */ | |||
.mw-portlet-External { | .mw-portlet-External { | ||
display: none; | display: none; | ||
} | } | ||
| Line 245: | Line 223: | ||
gap: var(--space-sm); | gap: var(--space-sm); | ||
font-weight: var(--font-weight-bold); | font-weight: var(--font-weight-bold); | ||
color: var(--woa-primary); | |||
} | } | ||
| Line 364: | Line 339: | ||
--gradient-angle: 360deg; | --gradient-angle: 360deg; | ||
} | } | ||
} | |||
@keyframes woa-gradient-pulse { | |||
0%, 100% { | |||
transform: scale(1); | |||
} | |||
50% { | |||
transform: scale(1.02); | |||
} | |||
} | |||
.woa-gradient-glow { | |||
animation: woa-gradient-pulse var(--gradient-time) ease-in-out infinite; | |||
} | } | ||