MediaWiki:Common.css: Difference between revisions
mNo edit summary |
mNo edit summary |
||
| Line 396: | Line 396: | ||
/* ========================================================= | /* ========================================================= | ||
OOO SECTION TITLE (Industrial | OOO SECTION TITLE (Responsive Industrial) | ||
========================================================= */ | ========================================================= */ | ||
.ooo-section-title { | .ooo-section-title { | ||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
gap: 1.5rem; | |||
font-size: 1.8rem; | font-size: 1.8rem; | ||
font-weight: 700; | font-weight: 700; | ||
margin: 5rem 0 2.5rem 0; | margin: 5rem 0 2.5rem 0; | ||
letter-spacing: 0.5px; | letter-spacing: 0.5px; | ||
text-align: center; | |||
} | } | ||
| Line 411: | Line 414: | ||
.ooo-section-title::after { | .ooo-section-title::after { | ||
content: ""; | content: ""; | ||
flex: 1; | |||
height: 2px; | height: 2px; | ||
background: linear-gradient( | background: linear-gradient( | ||
| Line 423: | Line 424: | ||
} | } | ||
/* Dark Mode Glow */ | |||
/* | |||
.skin-theme-clientpref-night .ooo-section-title::before, | .skin-theme-clientpref-night .ooo-section-title::before, | ||
.skin-theme-clientpref-night .ooo-section-title::after { | .skin-theme-clientpref-night .ooo-section-title::after { | ||
| Line 442: | Line 434: | ||
.skin-theme-clientpref-os .ooo-section-title::after { | .skin-theme-clientpref-os .ooo-section-title::after { | ||
box-shadow: 0 0 8px rgba(255,122,0,0.6); | box-shadow: 0 0 8px rgba(255,122,0,0.6); | ||
} | |||
} | |||
/* On very small screens, remove lines */ | |||
@media (max-width: 600px) { | |||
.ooo-section-title::before, | |||
.ooo-section-title::after { | |||
display: none; | |||
} | } | ||
} | } | ||