Created page with "→CSS placed here will be applied to all skins: →Infoboxes: .infobox { border: 1px solid #a2a9b1; color: black; padding: 0.2em; font-size: 88%; line-height: 1.5em; border-spacing: 3px; } @media screen { .infobox { background-color: #f8f9fa; } } @media (max-width: 640px) { .infobox { width: 100%; } .infobox .nowrap { white-space: normal; } } @media (min-width: 640px) { .infobox { →@noflip: margin: 0.5em 0 0.5em 1em; /* @nofli..." |
mNo edit summary |
||
| (6 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
.infobox { | .infobox { | ||
border: 1px solid #aaa; | |||
background-color: #f9f9f9; | |||
padding: 5px; | |||
float: right; | |||
margin: 0 0 1em 1em; | |||
} | } | ||
/* === Edge of Twilight Theme for Cosmos Skin === */ | |||
/* Body and general background */ | |||
body { | |||
background-color: #2C3E50; | |||
} | |||
body * { | |||
font-family: 'Open Sans',sans-serif; | |||
} | |||
/* Wiki title */ | |||
.cosmos-header__sitename a { | |||
font-family: 'Cambria Math', serif; | |||
font-variant: all-small-caps; | |||
} | |||
/* Main content area */ | |||
#content, .mw-body { | |||
border: 1px solid #BDC3C7; | |||
padding: 1em; | |||
} | |||
/* Header and footer */ | |||
#mw-head, #footer { | |||
color: #BDC3C7; | |||
} | |||
/* Sidebar */ | |||
#mw-panel { | |||
color: #BDC3C7; | |||
} | |||
#mw-panel a { | |||
color: #BDC3C7; | |||
} | |||
#mw-panel a:hover { | |||
color: #F39C12; | |||
} | |||
/* Links */ | |||
a { | |||
text-decoration: none; | |||
} | |||
a:hover { | |||
color: #F39C12; | |||
text-decoration: underline; | |||
} | |||
/* Buttons */ | |||
button, input[type="submit"], .mw-ui-button { | |||
background-color: #8E44AD; | |||
color: #F8F9FA; | |||
border: none; | |||
padding: 0.5em 1em; | |||
border-radius: 4px; | |||
} | } | ||
button:hover, input[type="submit"]:hover, .mw-ui-button:hover { | |||
background-color: #F39C12; | |||
color: #1A1A1A; | |||
} | } | ||
/* Headings */ | |||
/* Page title */ | |||
.mw-page-title-main { | |||
font-family: 'Cambria Math', serif; | |||
} | } | ||
h1, h2, h3, h4, h5, h6 { | |||
color: #2C3E50; | |||
} | } | ||
/* Table styling */ | |||
table { | |||
/* | border-collapse: collapse; | ||
width: 100%; | |||
background-color: #F8F9FA; | |||
color: #1A1A1A; | |||
} | } | ||
th, td { | |||
border: 1px solid #BDC3C7; | |||
padding: 0.5em; | |||
} | } | ||
th { | |||
background-color: #8E44AD; | |||
color: #F8F9FA; | |||
} | } | ||
/* | /* Search box and input fields */ | ||
input[type="text"], input[type="search"] { | |||
background-color: #F8F9FA; | |||
border: 1px solid #BDC3C7; | |||
color: #1A1A1A; | |||
. | padding: 0.3em; | ||
} | } | ||
/* | /* Optional: subtle box shadow for depth */ | ||
. | .mw-body, #content { | ||
box-shadow: 0 0 10px rgba(142, 68, 173, 0.2); | |||
} | } | ||
Latest revision as of 14:19, 9 September 2025
.infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
padding: 5px;
float: right;
margin: 0 0 1em 1em;
}
/* === Edge of Twilight Theme for Cosmos Skin === */
/* Body and general background */
body {
background-color: #2C3E50;
}
body * {
font-family: 'Open Sans',sans-serif;
}
/* Wiki title */
.cosmos-header__sitename a {
font-family: 'Cambria Math', serif;
font-variant: all-small-caps;
}
/* Main content area */
#content, .mw-body {
border: 1px solid #BDC3C7;
padding: 1em;
}
/* Header and footer */
#mw-head, #footer {
color: #BDC3C7;
}
/* Sidebar */
#mw-panel {
color: #BDC3C7;
}
#mw-panel a {
color: #BDC3C7;
}
#mw-panel a:hover {
color: #F39C12;
}
/* Links */
a {
text-decoration: none;
}
a:hover {
color: #F39C12;
text-decoration: underline;
}
/* Buttons */
button, input[type="submit"], .mw-ui-button {
background-color: #8E44AD;
color: #F8F9FA;
border: none;
padding: 0.5em 1em;
border-radius: 4px;
}
button:hover, input[type="submit"]:hover, .mw-ui-button:hover {
background-color: #F39C12;
color: #1A1A1A;
}
/* Headings */
/* Page title */
.mw-page-title-main {
font-family: 'Cambria Math', serif;
}
h1, h2, h3, h4, h5, h6 {
color: #2C3E50;
}
/* Table styling */
table {
border-collapse: collapse;
width: 100%;
background-color: #F8F9FA;
color: #1A1A1A;
}
th, td {
border: 1px solid #BDC3C7;
padding: 0.5em;
}
th {
background-color: #8E44AD;
color: #F8F9FA;
}
/* Search box and input fields */
input[type="text"], input[type="search"] {
background-color: #F8F9FA;
border: 1px solid #BDC3C7;
color: #1A1A1A;
padding: 0.3em;
}
/* Optional: subtle box shadow for depth */
.mw-body, #content {
box-shadow: 0 0 10px rgba(142, 68, 173, 0.2);
}
