MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
(186 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Navigation panel on the left side */ | /* TABLE OF COLOR VALUES FOR ALL ELEMENTS */ | ||
:root { | |||
/* General colors */ | |||
--lingo-underline-color: #cccccc; | |||
--panel-link-hover-color: #62a376; | |||
--flowing-numbers-color: rgba(255, 255, 255, 0.3); | |||
--top-box-bg-color: #58846a; | |||
--top-box-link-color: #F8F9FA; | |||
--top-box-link-hover-color: #68d62c; | |||
--top-box-shadow-color: rgba(0, 64, 0, 0.5); | |||
--section-header-bg-color: #58846a; | |||
--section-header-text-color: #f5fcf7; | |||
--header-fx-drop-shadow: #003a13; | |||
--header-fx-shadow-blur: rgba(0, 40, 0, 0.4); | |||
/* Day mode colors */ | |||
--colored-box-bg-day: #f1f6f3; | |||
--colored-box-text-color-day: #202122; | |||
--warning-bg-color-day: #FFFDF4; | |||
--warning-border-color-day: #d48900; | |||
--warning-text-color-day: #d48900; | |||
--signal-bg-color-day: #f4fcff; | |||
--signal-border-color-day: #0092D4; | |||
--signal-text-color-day: #0092D4; | |||
--danger-bg-color-day: #fff4f4; | |||
--danger-border-color-day: #D40000; | |||
--danger-text-color-day: #D40000; | |||
--atheneum-border-color-day: #61a376; | |||
--atheneum-header-bg-day: #f1f6f3; | |||
--atheneum-cell-bg-day: #f9f9f9; | |||
--atheneum-text-color-day: #101418; | |||
/* Night mode colors */ | |||
--colored-box-bg-night: #1a1f21; | |||
--colored-box-text-color-night: #eaecf0; | |||
--warning-bg-color-night: #4d4b47; | |||
--warning-border-color-night: #b47900; | |||
--warning-text-color-night: #ffd700; | |||
--signal-bg-color-night: #1e3a48; | |||
--signal-border-color-night: #0077b6; | |||
--signal-text-color-night: #66c2ff; | |||
--danger-bg-color-night: #4b2828; | |||
--danger-border-color-night: #b30000; | |||
--danger-text-color-night: #ff6666; | |||
--atheneum-border-color-night: #4a6655; | |||
--atheneum-header-bg-night: #2d3e36; | |||
--atheneum-cell-bg-night: #3c4946; | |||
--atheneum-text-color-night: #F8F9FA; | |||
} | |||
/* WORK IN PROGRESS AND HACKS */ | |||
/* Hack for "Confirm account requests" boxes */ | |||
.mw-confirmaccount-body-0, ul.mw-confirmaccount-body-0, li.mw-confirmaccount-body-0, table.mw-confirmaccount-body-0, li.mw-confirmaccount-type-0, .mw-confirmaccount-msg, .mw-confirmaccount-bar { | |||
background: black !important; | |||
color: white !important; | |||
} | |||
#wpNewBio { | |||
background-color: black !important; | |||
color: white !important; | |||
} | |||
/* Header FX */ | |||
.icannwiki-section-header-highlighted { | |||
background: #58846a; /* Cohesive base color */ | |||
font-family: sans-serif; | |||
font-weight: bold; | |||
font-size: 1.2em; | |||
text-align: left; | |||
color: var(--section-header-text-color); | |||
height: 1.5em; | |||
padding: 0.5em; | |||
border-radius: 5px; | |||
position: relative; | |||
overflow: hidden; | |||
z-index: 1; | |||
} | |||
.icannwiki-section-header-highlighted::before { | |||
/* Concentrated gradient with Seafoam Green accents */ | |||
content: ""; | |||
position: absolute; | |||
top: -20%; | |||
left: -20%; | |||
width: 140%; | |||
height: 140%; | |||
background: radial-gradient(circle at 50% 50%, rgba(88, 132, 106, 0.3), rgba(47, 79, 47, 0.25), rgba(173, 226, 195, 0.2), rgba(43, 92, 89, 0.1)); | |||
animation: cohesiveFlowingEffect 16s ease-in-out infinite; | |||
z-index: 0; | |||
filter: blur(8px); /* Focused glow */ | |||
} | |||
.icannwiki-section-header-highlighted .header-text { | |||
position: relative; | |||
z-index: 1; | |||
text-shadow: 2px 2px 2px var(--header-fx-drop-shadow), | |||
4px 4px 4px var(--header-fx-shadow-blur); | |||
} | |||
/* Keyframes for a smooth, flowing effect */ | |||
@keyframes cohesiveFlowingEffect { | |||
0% { transform: translate(0%, 0%) scale(1); } | |||
25% { transform: translate(8%, -8%) scale(1.05); } | |||
50% { transform: translate(-8%, 8%) scale(1); } | |||
75% { transform: translate(8%, 8%) scale(1.05); } | |||
100% { transform: translate(0%, 0%) scale(1); } | |||
} | |||
/* Body FX */ | |||
/* Enhanced highlighted box for low brightness displays */ | |||
.icannwiki-colored-box-highlighted { | |||
padding: 0.5em; /* Reduced padding */ | |||
font-size: 1.05em; | |||
position: relative; | |||
background-color: #1c1c1f; /* Dark grey with slight blue undertone for contrast */ | |||
border-radius: 8px; | |||
box-shadow: inset 0px 0px 10px rgba(255, 255, 255, 0.07), /* Enhanced inner glow */ | |||
0px 4px 12px rgba(0, 0, 0, 0.6); /* Outer shadow for depth */ | |||
color: #e8e8f0; /* Light grey text with a cool undertone */ | |||
overflow: hidden; | |||
margin-bottom: 1em; | |||
z-index: 1; | |||
} | |||
/* Subtle, slightly metallic gloss overlay */ | |||
.icannwiki-colored-box-highlighted::before { | |||
content: ""; | |||
position: absolute; | |||
top: -15%; | |||
left: -15%; | |||
width: 130%; | |||
height: 130%; | |||
background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), rgba(88, 88, 95, 0.07), rgba(0, 0, 0, 0.15)); | |||
animation: highlightedBoxFlowingEffect 16s ease-in-out infinite; | |||
z-index: 0; | |||
filter: blur(5px); /* Adjusted blur to make the glow slightly more pronounced */ | |||
opacity: 0.6; | |||
border-radius: 12px; | |||
} | |||
/* Slightly enhanced sheen animation for better visibility */ | |||
.icannwiki-colored-box-highlighted::after { | |||
content: ""; | |||
position: absolute; | |||
top: 0; | |||
left: -60%; | |||
width: 220%; | |||
height: 100%; | |||
background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 80%); | |||
animation: subtleSheen 20s ease-in-out infinite; | |||
opacity: 0.1; | |||
z-index: 1; | |||
border-radius: 8px; | |||
} | |||
/* Smooth, flowing animation effect */ | |||
@keyframes highlightedBoxFlowingEffect { | |||
0% { transform: translate(0%, 0%) scale(1); } | |||
25% { transform: translate(5%, -5%) scale(1.05); } | |||
50% { transform: translate(-5%, 5%) scale(1); } | |||
75% { transform: translate(5%, 5%) scale(1.05); } | |||
100% { transform: translate(0%, 0%) scale(1); } | |||
} | |||
/* Keyframes for sheen animation */ | |||
@keyframes subtleSheen { | |||
0% { transform: translateX(-100%); } | |||
50% { transform: translateX(100%); } | |||
100% { transform: translateX(-100%); } | |||
} | |||
/* Content style */ | |||
.icannwiki-colored-box-highlighted .content-text { | |||
position: relative; | |||
z-index: 2; | |||
} | |||
/* Main campaign box with a left-aligned image box */ | |||
.icannwiki-campaign-box { | |||
display: flex; | |||
align-items: center; | |||
padding: 0.5em; /* Reduced padding */ | |||
background-color: #1c1c1f; /* Dark grey background */ | |||
border-radius: 8px; | |||
color: #e8e8f0; /* Light grey text for readability */ | |||
margin-bottom: 0.5em; /* Reduced margin */ | |||
} | |||
/* Left rectangular box for the "ccTLDs" image */ | |||
.icannwiki-campaign-image-box { | |||
min-width: 60px; /* Slightly narrower */ | |||
height: auto; | |||
background-color: #333333; /* Dark grey background for the image box */ | |||
border-radius: 6px; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 0.25em; /* Minimal padding */ | |||
margin-right: 0.5em; /* Reduced spacing */ | |||
} | |||
/* Placeholder styling for image inside the image-box */ | |||
.icannwiki-campaign-image-box img { | |||
max-width: 100%; | |||
height: auto; | |||
border-radius: 4px; | |||
} | |||
/* Main content area */ | |||
.icannwiki-campaign-box .content-text { | |||
flex-grow: 1; /* Ensures content takes up remaining space */ | |||
} | |||
/* UI STYLES */ | |||
/* Links affected by the Lingo extension */ | |||
.mw-lingo-term { | |||
text-decoration: underline solid var(--lingo-underline-color); | |||
text-decoration-thickness: 2px; | |||
} | |||
/* Popup generated when user hovers over a link affected by Lingo */ | |||
.qtip-content { | |||
padding: 8px; | |||
line-height: 125%; | |||
font-size: 1.25em; | |||
} | |||
/* Navigation panel on the left side of the main interface */ | |||
#mw-panel a { | #mw-panel a { | ||
font-size: 1.10em; | font-size: 1.10em; | ||
Line 7: | Line 247: | ||
#mw-panel a:hover { | #mw-panel a:hover { | ||
color: | color: var(--panel-link-hover-color); | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
/* | /* ------------------------------------------------------------------------- */ | ||
/* MAIN PAGE STYLES */ | |||
/* Remove main page header */ | |||
body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading | |||
{ display: none; } | |||
/* Top box of the main page */ | |||
.icannwiki-top-box { | .icannwiki-top-box { | ||
display: grid; | display: grid; | ||
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); | grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); | ||
gap: 4px; | gap: 4px; | ||
background-color: | background-color: var(--top-box-bg-color); | ||
background-image: url('images/b/bd/ICANNWiki-Background-2024-A.svg'); | background-image: url('images/b/bd/ICANNWiki-Background-2024-A.svg'); | ||
background-size: cover; | background-size: cover; | ||
Line 24: | Line 272: | ||
} | } | ||
/* | /* Hide bullet points */ | ||
.icannwiki-top-box ul { | .icannwiki-top-box ul { | ||
list-style: none; | list-style: none; | ||
Line 41: | Line 289: | ||
} | } | ||
/* | /* Top box's elements styling */ | ||
.icannwiki-top-box ul li { | .icannwiki-top-box ul li { | ||
font-size: 1.0em; | font-size: 1.0em; | ||
Line 48: | Line 296: | ||
.icannwiki-top-box a { | .icannwiki-top-box a { | ||
color: | color: var(--top-box-link-color); | ||
font-weight: bold; | font-weight: bold; | ||
text-decoration: none; | text-decoration: none; | ||
Line 54: | Line 302: | ||
.icannwiki-top-box a:hover { | .icannwiki-top-box a:hover { | ||
color: | color: var(--top-box-link-hover-color); | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
/* Header for | /* Top box's special effects */ | ||
.top-box-fx { | |||
text-shadow: 2px 2px 4px var(--top-box-shadow-color); /* Shadow blur */ | |||
} | |||
/* Header for other boxes in the main page */ | |||
.icannwiki-section-header { | .icannwiki-section-header { | ||
background: | background: var(--section-header-bg-color); | ||
font-family: sans-serif; | font-family: sans-serif; | ||
font-weight: bold; | font-weight: bold; | ||
font-size: 1.1em; | |||
text-align: left; | text-align: left; | ||
color: | color: var(--section-header-text-color); | ||
height: 1.5em; | height: 1.5em; | ||
padding: .5em; | padding: .5em; | ||
Line 70: | Line 324: | ||
} | } | ||
/* Colored bounding box | /* Colored bounding box for text */ | ||
.icannwiki-colored-box { | .icannwiki-colored-box { | ||
padding-left: 1%; | padding-left: 1%; | ||
padding-right: 1%; | padding-right: 1%; | ||
Line 78: | Line 331: | ||
} | } | ||
/* | /* .icannwiki-colored-box AUTOMATIC */ | ||
.icannwiki- | @media screen and (prefers-color-scheme: dark) { | ||
html.skin-theme-clientpref-os .icannwiki-colored-box { | |||
background-color: var(--colored-box-bg-night); | |||
color: var(--colored-box-text-color-night); | |||
} | |||
} | |||
/* .icannwiki-colored-box DAY */ | |||
@media screen { | |||
html.skin-theme-clientpref-day .icannwiki-colored-box { | |||
background-color: var(--colored-box-bg-day); | |||
color: var(--colored-box-text-color-day); | |||
} | |||
} | |||
/* .icannwiki-colored-box NIGHT */ | |||
@media screen { | |||
html.skin-theme-clientpref-night .icannwiki-colored-box { | |||
background-color: var(--colored-box-bg-night); | |||
color: var(--colored-box-text-color-night); | |||
} | |||
} | } | ||
Line 95: | Line 365: | ||
} | } | ||
/* Sponsors template */ | |||
.icannwiki-sponsors { | .icannwiki-sponsors { | ||
display: grid; | display: grid; | ||
grid-template-columns: repeat(auto-fit, | grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); | ||
gap: 4px; | gap: 4px; | ||
border-radius: 4px; | border-radius: 4px; | ||
margin-bottom: 4px; | margin-bottom: 4px; | ||
padding: 4px; | padding: 8px; | ||
list-style: none; | |||
padding: 0; | |||
margin: 0; | |||
clear: both; | |||
justify-content: center; | |||
background: white; | |||
margin-bottom: 16px; | |||
} | |||
.icannwiki-sponsors li { | |||
display: flex; | |||
justify-content: center; | |||
align-items: center; | |||
border: 0px; | |||
border-radius: 4px; | |||
padding: 8px; | |||
height: 140px; /* Adjust as needed */ | |||
box-sizing: border-box; | |||
} | |||
.icannwiki-sponsors li:nth-last-child(-n+3) { | |||
justify-self: center; | |||
} | |||
.icannwiki-sponsors img { | |||
max-width: 100%; | |||
max-height: 100%; | |||
object-fit: contain; | |||
} | } | ||
Line 108: | Line 407: | ||
list-style-type: none; | list-style-type: none; | ||
} | } | ||
/* ------------------------------------------------------------------------- */ | |||
/* TEMPLATE STYLES */ | |||
/* Warning template */ | /* Warning template */ | ||
Line 119: | Line 422: | ||
margin: 0 auto; | margin: 0 auto; | ||
padding: 10px; | padding: 10px; | ||
background-color: | background-color: var(--warning-bg-color-day); | ||
border: 2px solid | border: 2px solid var(--warning-border-color-day); | ||
border-left: 16px solid | border-left: 16px solid var(--warning-border-color-day); | ||
} | } | ||
.icannwiki-warning a { | .icannwiki-warning a { | ||
font-weight: bold; | font-weight: bold; | ||
color: | color: var(--warning-text-color-day); | ||
} | } | ||
Line 139: | Line 442: | ||
margin: 0 auto; | margin: 0 auto; | ||
padding: 10px; | padding: 10px; | ||
background-color: | background-color: var(--signal-bg-color-day); | ||
border: 2px solid | border: 2px solid var(--signal-border-color-day); | ||
border-left: 16px solid | border-left: 16px solid var(--signal-border-color-day); | ||
} | } | ||
.icannwiki-signal a { | .icannwiki-signal a { | ||
font-weight: bold; | font-weight: bold; | ||
color: | color: var(--signal-text-color-day); | ||
} | } | ||
Line 159: | Line 462: | ||
margin: 0 auto; | margin: 0 auto; | ||
padding: 10px; | padding: 10px; | ||
background-color: | background-color: var(--danger-bg-color-day); | ||
border: 2px solid | border: 2px solid var(--danger-border-color-day); | ||
border-left: 16px solid | border-left: 16px solid var(--danger-border-color-day); | ||
} | } | ||
.icannwiki-danger a { | .icannwiki-danger a { | ||
font-weight: bold; | font-weight: bold; | ||
color: | color: var(--danger-text-color-day); | ||
} | |||
/* .icannwiki-warning, .icannwiki-signal, .icannwiki-danger AUTOMATIC */ | |||
@media screen and (prefers-color-scheme: dark) { | |||
html.skin-theme-clientpref-os .icannwiki-warning { | |||
background-color: var(--warning-bg-color-night); | |||
border: 2px solid var(--warning-border-color-night); | |||
border-left: 16px solid var(--warning-border-color-night); | |||
} | |||
html.skin-theme-clientpref-os .icannwiki-warning a { | |||
color: var(--warning-text-color-night); | |||
} | |||
html.skin-theme-clientpref-os .icannwiki-signal { | |||
background-color: var(--signal-bg-color-night); | |||
border: 2px solid var(--signal-border-color-night); | |||
border-left: 16px solid var(--signal-border-color-night); | |||
} | |||
html.skin-theme-clientpref-os .icannwiki-signal a { | |||
color: var(--signal-text-color-night); | |||
} | |||
html.skin-theme-clientpref-os .icannwiki-danger { | |||
background-color: var(--danger-bg-color-night); | |||
border: 2px solid var(--danger-border-color-night); | |||
border-left: 16px solid var(--danger-border-color-night); | |||
} | |||
html.skin-theme-clientpref-os .icannwiki-danger a { | |||
color: var(--danger-text-color-night); | |||
} | |||
} | |||
/* .icannwiki-warning, .icannwiki-signal, .icannwiki-danger DAY */ | |||
@media screen { | |||
html.skin-theme-clientpref-day .icannwiki-warning { | |||
background-color: var(--warning-bg-color-day); | |||
border: 2px solid var(--warning-border-color-day); | |||
border-left: 16px solid var(--warning-border-color-day); | |||
} | |||
html.skin-theme-clientpref-day .icannwiki-warning a { | |||
color: var(--warning-text-color-day); | |||
} | |||
html.skin-theme-clientpref-day .icannwiki-signal { | |||
background-color: var(--signal-bg-color-day); | |||
border: 2px solid var(--signal-border-color-day); | |||
border-left: 16px solid var(--signal-border-color-day); | |||
} | |||
html.skin-theme-clientpref-day .icannwiki-signal a { | |||
color: var(--signal-text-color-day); | |||
} | |||
html.skin-theme-clientpref-day .icannwiki-danger { | |||
background-color: var(--danger-bg-color-day); | |||
border: 2px solid var(--danger-border-color-day); | |||
border-left: 16px solid var(--danger-border-color-day); | |||
} | |||
html.skin-theme-clientpref-day .icannwiki-danger a { | |||
color: var(--danger-text-color-day); | |||
} | |||
} | |||
/* .icannwiki-warning, .icannwiki-signal, .icannwiki-danger NIGHT */ | |||
@media screen { | |||
html.skin-theme-clientpref-night .icannwiki-warning { | |||
background-color: var(--warning-bg-color-night); | |||
border: 2px solid var(--warning-border-color-night); | |||
border-left: 16px solid var(--warning-border-color-night); | |||
} | |||
html.skin-theme-clientpref-night .icannwiki-warning a { | |||
color: var(--warning-text-color-night); | |||
} | |||
html.skin-theme-clientpref-night .icannwiki-signal { | |||
background-color: var(--signal-bg-color-night); | |||
border: 2px solid var(--signal-border-color-night); | |||
border-left: 16px solid var(--signal-border-color-night); | |||
} | |||
html.skin-theme-clientpref-night .icannwiki-signal a { | |||
color: var(--signal-text-color-night); | |||
} | |||
html.skin-theme-clientpref-night .icannwiki-danger { | |||
background-color: var(--danger-bg-color-night); | |||
border: 2px solid var(--danger-border-color-night); | |||
border-left: 16px solid var(--danger-border-color-night); | |||
} | |||
html.skin-theme-clientpref-night .icannwiki-danger a { | |||
color: var(--danger-text-color-night); | |||
} | |||
} | |||
/* Template:People */ | |||
.template-people { | |||
float: right; | |||
border: 1px solid darkgray; | |||
max-width: 160px; | |||
padding: 5px; | |||
padding-bottom: 10px; | |||
margin-left: 10px | |||
} | |||
/* ------------------------------------------------------------------------- */ | |||
/* INTERNET GOVERNANCE ATHENEUM */ | |||
.atheneum-box { | |||
border-collapse: collapse; | |||
border: 1px solid var(--atheneum-border-color-day); | |||
} | |||
.atheneum-box th, .atheneum-box td { | |||
border: 1px solid var(--atheneum-border-color-day); | |||
} | |||
.atheneum-box th { | |||
background-color: var(--atheneum-header-bg-day); | |||
color: var(--atheneum-text-color-day); | |||
text-transform: uppercase; | |||
padding: 8px; | |||
} | |||
.atheneum-box td { | |||
background-color: var(--atheneum-cell-bg-day); | |||
color: var(--atheneum-text-color-day); | |||
padding: 4px 10px; | |||
} | |||
/* .atheneum-box AUTOMATIC */ | |||
@media screen and (prefers-color-scheme: dark) { | |||
html.skin-theme-clientpref-os .atheneum-box { | |||
border: 1px solid var(--atheneum-border-color-night); | |||
} | |||
html.skin-theme-clientpref-os .atheneum-box th { | |||
background-color: var(--atheneum-header-bg-night); | |||
color: var(--atheneum-text-color-night); | |||
} | |||
html.skin-theme-clientpref-os .atheneum-box td { | |||
background-color: var(--atheneum-cell-bg-night); | |||
color: var(--atheneum-text-color-night); | |||
} | |||
} | |||
/* .atheneum-box DAY */ | |||
@media screen { | |||
html.skin-theme-clientpref-day .atheneum-box { | |||
border: 1px solid var(--atheneum-border-color-day); | |||
} | |||
html.skin-theme-clientpref-day .atheneum-box th { | |||
background-color: var(--atheneum-header-bg-day); | |||
color: var(--atheneum-text-color-day); | |||
} | |||
html.skin-theme-clientpref-day .atheneum-box td { | |||
background-color: var(--atheneum-cell-bg-day); | |||
color: var(--atheneum-text-color-day); | |||
} | |||
} | |||
/* .atheneum-box NIGHT */ | |||
@media screen { | |||
html.skin-theme-clientpref-night .atheneum-box { | |||
border: 1px solid var(--atheneum-border-color-night); | |||
} | |||
html.skin-theme-clientpref-night .atheneum-box th { | |||
background-color: var(--atheneum-header-bg-night); | |||
color: var(--atheneum-text-color-night); | |||
} | |||
html.skin-theme-clientpref-night .atheneum-box td { | |||
background-color: var(--atheneum-cell-bg-night); | |||
color: var(--atheneum-text-color-night); | |||
} | |||
} | |||
/* ------------------------------------------------------------------------- */ | |||
/* GENERIC STYLES */ | |||
/* Separator (blank) */ | |||
.icannwiki-clearfix { | |||
clear: both; | |||
} | |||
/* Hide bullets on lists */ | |||
.no-bullets { | |||
list-style: none; | |||
list-style-type: none; | |||
padding-left: 0; | |||
} | |||
/* Hide second level bullets on lists */ | |||
.no-second-level-bullets ul ul { | |||
list-style: none; | |||
list-style-type: none; | |||
padding-left: 0; /* Adjust padding to align with the parent list */ | |||
} | |||
.no-second-level-bullets ul ul li { | |||
padding-left: 0px; /* Adjust padding to maintain alignment if needed */ | |||
} | |||
/* Centered text */ | |||
.icannwiki-centered { | |||
text-align: center; | |||
} | } | ||
Line 174: | Line 670: | ||
} | } | ||
/* | /* Upper case text */ | ||
.icannwiki- | .icannwiki-uppercase { | ||
text-transform: uppercase; | |||
} | } | ||
Line 183: | Line 679: | ||
font-size: 1.25em; | font-size: 1.25em; | ||
} | } | ||
Latest revision as of 14:18, 11 November 2024
/* CSS placed here will be applied to all skins */
/* TABLE OF COLOR VALUES FOR ALL ELEMENTS */
:root {
/* General colors */
--lingo-underline-color: #cccccc;
--panel-link-hover-color: #62a376;
--flowing-numbers-color: rgba(255, 255, 255, 0.3);
--top-box-bg-color: #58846a;
--top-box-link-color: #F8F9FA;
--top-box-link-hover-color: #68d62c;
--top-box-shadow-color: rgba(0, 64, 0, 0.5);
--section-header-bg-color: #58846a;
--section-header-text-color: #f5fcf7;
--header-fx-drop-shadow: #003a13;
--header-fx-shadow-blur: rgba(0, 40, 0, 0.4);
/* Day mode colors */
--colored-box-bg-day: #f1f6f3;
--colored-box-text-color-day: #202122;
--warning-bg-color-day: #FFFDF4;
--warning-border-color-day: #d48900;
--warning-text-color-day: #d48900;
--signal-bg-color-day: #f4fcff;
--signal-border-color-day: #0092D4;
--signal-text-color-day: #0092D4;
--danger-bg-color-day: #fff4f4;
--danger-border-color-day: #D40000;
--danger-text-color-day: #D40000;
--atheneum-border-color-day: #61a376;
--atheneum-header-bg-day: #f1f6f3;
--atheneum-cell-bg-day: #f9f9f9;
--atheneum-text-color-day: #101418;
/* Night mode colors */
--colored-box-bg-night: #1a1f21;
--colored-box-text-color-night: #eaecf0;
--warning-bg-color-night: #4d4b47;
--warning-border-color-night: #b47900;
--warning-text-color-night: #ffd700;
--signal-bg-color-night: #1e3a48;
--signal-border-color-night: #0077b6;
--signal-text-color-night: #66c2ff;
--danger-bg-color-night: #4b2828;
--danger-border-color-night: #b30000;
--danger-text-color-night: #ff6666;
--atheneum-border-color-night: #4a6655;
--atheneum-header-bg-night: #2d3e36;
--atheneum-cell-bg-night: #3c4946;
--atheneum-text-color-night: #F8F9FA;
}
/* WORK IN PROGRESS AND HACKS */
/* Hack for "Confirm account requests" boxes */
.mw-confirmaccount-body-0, ul.mw-confirmaccount-body-0, li.mw-confirmaccount-body-0, table.mw-confirmaccount-body-0, li.mw-confirmaccount-type-0, .mw-confirmaccount-msg, .mw-confirmaccount-bar {
background: black !important;
color: white !important;
}
#wpNewBio {
background-color: black !important;
color: white !important;
}
/* Header FX */
.icannwiki-section-header-highlighted {
background: #58846a; /* Cohesive base color */
font-family: sans-serif;
font-weight: bold;
font-size: 1.2em;
text-align: left;
color: var(--section-header-text-color);
height: 1.5em;
padding: 0.5em;
border-radius: 5px;
position: relative;
overflow: hidden;
z-index: 1;
}
.icannwiki-section-header-highlighted::before {
/* Concentrated gradient with Seafoam Green accents */
content: "";
position: absolute;
top: -20%;
left: -20%;
width: 140%;
height: 140%;
background: radial-gradient(circle at 50% 50%, rgba(88, 132, 106, 0.3), rgba(47, 79, 47, 0.25), rgba(173, 226, 195, 0.2), rgba(43, 92, 89, 0.1));
animation: cohesiveFlowingEffect 16s ease-in-out infinite;
z-index: 0;
filter: blur(8px); /* Focused glow */
}
.icannwiki-section-header-highlighted .header-text {
position: relative;
z-index: 1;
text-shadow: 2px 2px 2px var(--header-fx-drop-shadow),
4px 4px 4px var(--header-fx-shadow-blur);
}
/* Keyframes for a smooth, flowing effect */
@keyframes cohesiveFlowingEffect {
0% { transform: translate(0%, 0%) scale(1); }
25% { transform: translate(8%, -8%) scale(1.05); }
50% { transform: translate(-8%, 8%) scale(1); }
75% { transform: translate(8%, 8%) scale(1.05); }
100% { transform: translate(0%, 0%) scale(1); }
}
/* Body FX */
/* Enhanced highlighted box for low brightness displays */
.icannwiki-colored-box-highlighted {
padding: 0.5em; /* Reduced padding */
font-size: 1.05em;
position: relative;
background-color: #1c1c1f; /* Dark grey with slight blue undertone for contrast */
border-radius: 8px;
box-shadow: inset 0px 0px 10px rgba(255, 255, 255, 0.07), /* Enhanced inner glow */
0px 4px 12px rgba(0, 0, 0, 0.6); /* Outer shadow for depth */
color: #e8e8f0; /* Light grey text with a cool undertone */
overflow: hidden;
margin-bottom: 1em;
z-index: 1;
}
/* Subtle, slightly metallic gloss overlay */
.icannwiki-colored-box-highlighted::before {
content: "";
position: absolute;
top: -15%;
left: -15%;
width: 130%;
height: 130%;
background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), rgba(88, 88, 95, 0.07), rgba(0, 0, 0, 0.15));
animation: highlightedBoxFlowingEffect 16s ease-in-out infinite;
z-index: 0;
filter: blur(5px); /* Adjusted blur to make the glow slightly more pronounced */
opacity: 0.6;
border-radius: 12px;
}
/* Slightly enhanced sheen animation for better visibility */
.icannwiki-colored-box-highlighted::after {
content: "";
position: absolute;
top: 0;
left: -60%;
width: 220%;
height: 100%;
background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 80%);
animation: subtleSheen 20s ease-in-out infinite;
opacity: 0.1;
z-index: 1;
border-radius: 8px;
}
/* Smooth, flowing animation effect */
@keyframes highlightedBoxFlowingEffect {
0% { transform: translate(0%, 0%) scale(1); }
25% { transform: translate(5%, -5%) scale(1.05); }
50% { transform: translate(-5%, 5%) scale(1); }
75% { transform: translate(5%, 5%) scale(1.05); }
100% { transform: translate(0%, 0%) scale(1); }
}
/* Keyframes for sheen animation */
@keyframes subtleSheen {
0% { transform: translateX(-100%); }
50% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
/* Content style */
.icannwiki-colored-box-highlighted .content-text {
position: relative;
z-index: 2;
}
/* Main campaign box with a left-aligned image box */
.icannwiki-campaign-box {
display: flex;
align-items: center;
padding: 0.5em; /* Reduced padding */
background-color: #1c1c1f; /* Dark grey background */
border-radius: 8px;
color: #e8e8f0; /* Light grey text for readability */
margin-bottom: 0.5em; /* Reduced margin */
}
/* Left rectangular box for the "ccTLDs" image */
.icannwiki-campaign-image-box {
min-width: 60px; /* Slightly narrower */
height: auto;
background-color: #333333; /* Dark grey background for the image box */
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
padding: 0.25em; /* Minimal padding */
margin-right: 0.5em; /* Reduced spacing */
}
/* Placeholder styling for image inside the image-box */
.icannwiki-campaign-image-box img {
max-width: 100%;
height: auto;
border-radius: 4px;
}
/* Main content area */
.icannwiki-campaign-box .content-text {
flex-grow: 1; /* Ensures content takes up remaining space */
}
/* UI STYLES */
/* Links affected by the Lingo extension */
.mw-lingo-term {
text-decoration: underline solid var(--lingo-underline-color);
text-decoration-thickness: 2px;
}
/* Popup generated when user hovers over a link affected by Lingo */
.qtip-content {
padding: 8px;
line-height: 125%;
font-size: 1.25em;
}
/* Navigation panel on the left side of the main interface */
#mw-panel a {
font-size: 1.10em;
}
#mw-panel a:hover {
color: var(--panel-link-hover-color);
text-decoration: none;
}
/* ------------------------------------------------------------------------- */
/* MAIN PAGE STYLES */
/* Remove main page header */
body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading
{ display: none; }
/* Top box of the main page */
.icannwiki-top-box {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 4px;
background-color: var(--top-box-bg-color);
background-image: url('images/b/bd/ICANNWiki-Background-2024-A.svg');
background-size: cover;
border-radius: 4px;
margin-bottom: 4px;
padding: 4px;
}
/* Hide bullet points */
.icannwiki-top-box ul {
list-style: none;
list-style-type: none;
}
/* Changes bullet points to a Unicode character */
.icannwiki-top-box ul li:before {
background-image: url('/images/8/82/1F4CE.png');
background-size: 32px 32px;
display: inline-block;
vertical-align: middle;
width: 32px;
height: 32px;
content:"";
}
/* Top box's elements styling */
.icannwiki-top-box ul li {
font-size: 1.0em;
margin-bottom: 4px; /* Adjusts the spacing between list items */
}
.icannwiki-top-box a {
color: var(--top-box-link-color);
font-weight: bold;
text-decoration: none;
}
.icannwiki-top-box a:hover {
color: var(--top-box-link-hover-color);
text-decoration: none;
}
/* Top box's special effects */
.top-box-fx {
text-shadow: 2px 2px 4px var(--top-box-shadow-color); /* Shadow blur */
}
/* Header for other boxes in the main page */
.icannwiki-section-header {
background: var(--section-header-bg-color);
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
text-align: left;
color: var(--section-header-text-color);
height: 1.5em;
padding: .5em;
border-radius: 5px;
}
/* Colored bounding box for text */
.icannwiki-colored-box {
padding-left: 1%;
padding-right: 1%;
font-size: 1.05em;
}
/* .icannwiki-colored-box AUTOMATIC */
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .icannwiki-colored-box {
background-color: var(--colored-box-bg-night);
color: var(--colored-box-text-color-night);
}
}
/* .icannwiki-colored-box DAY */
@media screen {
html.skin-theme-clientpref-day .icannwiki-colored-box {
background-color: var(--colored-box-bg-day);
color: var(--colored-box-text-color-day);
}
}
/* .icannwiki-colored-box NIGHT */
@media screen {
html.skin-theme-clientpref-night .icannwiki-colored-box {
background-color: var(--colored-box-bg-night);
color: var(--colored-box-text-color-night);
}
}
/* Main page content box: left */
.icannwiki-half-width-left {
width: 49%;
float: left;
}
/* Main page content box: right */
.icannwiki-half-width-right {
width: 49%;
float: right;
}
/* Sponsors template */
.icannwiki-sponsors {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 4px;
border-radius: 4px;
margin-bottom: 4px;
padding: 8px;
list-style: none;
padding: 0;
margin: 0;
clear: both;
justify-content: center;
background: white;
margin-bottom: 16px;
}
.icannwiki-sponsors li {
display: flex;
justify-content: center;
align-items: center;
border: 0px;
border-radius: 4px;
padding: 8px;
height: 140px; /* Adjust as needed */
box-sizing: border-box;
}
.icannwiki-sponsors li:nth-last-child(-n+3) {
justify-self: center;
}
.icannwiki-sponsors img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.icannwiki-sponsors ul {
list-style: none;
list-style-type: none;
}
/* ------------------------------------------------------------------------- */
/* TEMPLATE STYLES */
/* Warning template */
.icannwiki-warning {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
height: auto;
width: 60%;
margin: 0 auto;
padding: 10px;
background-color: var(--warning-bg-color-day);
border: 2px solid var(--warning-border-color-day);
border-left: 16px solid var(--warning-border-color-day);
}
.icannwiki-warning a {
font-weight: bold;
color: var(--warning-text-color-day);
}
/* Signaling template */
.icannwiki-signal {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
height: auto;
width: 60%;
margin: 0 auto;
padding: 10px;
background-color: var(--signal-bg-color-day);
border: 2px solid var(--signal-border-color-day);
border-left: 16px solid var(--signal-border-color-day);
}
.icannwiki-signal a {
font-weight: bold;
color: var(--signal-text-color-day);
}
/* Danger template */
.icannwiki-danger {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
height: auto;
width: 60%;
margin: 0 auto;
padding: 10px;
background-color: var(--danger-bg-color-day);
border: 2px solid var(--danger-border-color-day);
border-left: 16px solid var(--danger-border-color-day);
}
.icannwiki-danger a {
font-weight: bold;
color: var(--danger-text-color-day);
}
/* .icannwiki-warning, .icannwiki-signal, .icannwiki-danger AUTOMATIC */
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .icannwiki-warning {
background-color: var(--warning-bg-color-night);
border: 2px solid var(--warning-border-color-night);
border-left: 16px solid var(--warning-border-color-night);
}
html.skin-theme-clientpref-os .icannwiki-warning a {
color: var(--warning-text-color-night);
}
html.skin-theme-clientpref-os .icannwiki-signal {
background-color: var(--signal-bg-color-night);
border: 2px solid var(--signal-border-color-night);
border-left: 16px solid var(--signal-border-color-night);
}
html.skin-theme-clientpref-os .icannwiki-signal a {
color: var(--signal-text-color-night);
}
html.skin-theme-clientpref-os .icannwiki-danger {
background-color: var(--danger-bg-color-night);
border: 2px solid var(--danger-border-color-night);
border-left: 16px solid var(--danger-border-color-night);
}
html.skin-theme-clientpref-os .icannwiki-danger a {
color: var(--danger-text-color-night);
}
}
/* .icannwiki-warning, .icannwiki-signal, .icannwiki-danger DAY */
@media screen {
html.skin-theme-clientpref-day .icannwiki-warning {
background-color: var(--warning-bg-color-day);
border: 2px solid var(--warning-border-color-day);
border-left: 16px solid var(--warning-border-color-day);
}
html.skin-theme-clientpref-day .icannwiki-warning a {
color: var(--warning-text-color-day);
}
html.skin-theme-clientpref-day .icannwiki-signal {
background-color: var(--signal-bg-color-day);
border: 2px solid var(--signal-border-color-day);
border-left: 16px solid var(--signal-border-color-day);
}
html.skin-theme-clientpref-day .icannwiki-signal a {
color: var(--signal-text-color-day);
}
html.skin-theme-clientpref-day .icannwiki-danger {
background-color: var(--danger-bg-color-day);
border: 2px solid var(--danger-border-color-day);
border-left: 16px solid var(--danger-border-color-day);
}
html.skin-theme-clientpref-day .icannwiki-danger a {
color: var(--danger-text-color-day);
}
}
/* .icannwiki-warning, .icannwiki-signal, .icannwiki-danger NIGHT */
@media screen {
html.skin-theme-clientpref-night .icannwiki-warning {
background-color: var(--warning-bg-color-night);
border: 2px solid var(--warning-border-color-night);
border-left: 16px solid var(--warning-border-color-night);
}
html.skin-theme-clientpref-night .icannwiki-warning a {
color: var(--warning-text-color-night);
}
html.skin-theme-clientpref-night .icannwiki-signal {
background-color: var(--signal-bg-color-night);
border: 2px solid var(--signal-border-color-night);
border-left: 16px solid var(--signal-border-color-night);
}
html.skin-theme-clientpref-night .icannwiki-signal a {
color: var(--signal-text-color-night);
}
html.skin-theme-clientpref-night .icannwiki-danger {
background-color: var(--danger-bg-color-night);
border: 2px solid var(--danger-border-color-night);
border-left: 16px solid var(--danger-border-color-night);
}
html.skin-theme-clientpref-night .icannwiki-danger a {
color: var(--danger-text-color-night);
}
}
/* Template:People */
.template-people {
float: right;
border: 1px solid darkgray;
max-width: 160px;
padding: 5px;
padding-bottom: 10px;
margin-left: 10px
}
/* ------------------------------------------------------------------------- */
/* INTERNET GOVERNANCE ATHENEUM */
.atheneum-box {
border-collapse: collapse;
border: 1px solid var(--atheneum-border-color-day);
}
.atheneum-box th, .atheneum-box td {
border: 1px solid var(--atheneum-border-color-day);
}
.atheneum-box th {
background-color: var(--atheneum-header-bg-day);
color: var(--atheneum-text-color-day);
text-transform: uppercase;
padding: 8px;
}
.atheneum-box td {
background-color: var(--atheneum-cell-bg-day);
color: var(--atheneum-text-color-day);
padding: 4px 10px;
}
/* .atheneum-box AUTOMATIC */
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .atheneum-box {
border: 1px solid var(--atheneum-border-color-night);
}
html.skin-theme-clientpref-os .atheneum-box th {
background-color: var(--atheneum-header-bg-night);
color: var(--atheneum-text-color-night);
}
html.skin-theme-clientpref-os .atheneum-box td {
background-color: var(--atheneum-cell-bg-night);
color: var(--atheneum-text-color-night);
}
}
/* .atheneum-box DAY */
@media screen {
html.skin-theme-clientpref-day .atheneum-box {
border: 1px solid var(--atheneum-border-color-day);
}
html.skin-theme-clientpref-day .atheneum-box th {
background-color: var(--atheneum-header-bg-day);
color: var(--atheneum-text-color-day);
}
html.skin-theme-clientpref-day .atheneum-box td {
background-color: var(--atheneum-cell-bg-day);
color: var(--atheneum-text-color-day);
}
}
/* .atheneum-box NIGHT */
@media screen {
html.skin-theme-clientpref-night .atheneum-box {
border: 1px solid var(--atheneum-border-color-night);
}
html.skin-theme-clientpref-night .atheneum-box th {
background-color: var(--atheneum-header-bg-night);
color: var(--atheneum-text-color-night);
}
html.skin-theme-clientpref-night .atheneum-box td {
background-color: var(--atheneum-cell-bg-night);
color: var(--atheneum-text-color-night);
}
}
/* ------------------------------------------------------------------------- */
/* GENERIC STYLES */
/* Separator (blank) */
.icannwiki-clearfix {
clear: both;
}
/* Hide bullets on lists */
.no-bullets {
list-style: none;
list-style-type: none;
padding-left: 0;
}
/* Hide second level bullets on lists */
.no-second-level-bullets ul ul {
list-style: none;
list-style-type: none;
padding-left: 0; /* Adjust padding to align with the parent list */
}
.no-second-level-bullets ul ul li {
padding-left: 0px; /* Adjust padding to maintain alignment if needed */
}
/* Centered text */
.icannwiki-centered {
text-align: center;
}
/* Justified text */
.icannwiki-justified {
text-align: justify;
}
/* Upper case text */
.icannwiki-uppercase {
text-transform: uppercase;
}
/* Larger text */
.icannwiki-font-large {
font-size: 1.25em;
}