MediaWiki:Common.css: Difference between revisions
From World Encyclopedia of Conductors
No edit summary |
No edit summary |
||
| Line 143: | Line 143: | ||
/* @noflip */ | /* @noflip */ | ||
text-align: right; | text-align: right; | ||
} | |||
.entry { | |||
display: grid; | |||
grid-template-columns: auto max-content; | |||
grid-template-areas: "chapter page"; | |||
align-items: end; | |||
gap: 0 .25rem; /* customize the gap to your needs */ | |||
} | |||
.chapter { | |||
grid-area: chapter; | |||
position: relative; | |||
overflow: hidden; | |||
} | |||
.chapter::after { | |||
position: absolute; | |||
padding-left: .25ch; /* customise the padding to your needs */ | |||
/* adjust the amount of dots to your needs */ | |||
content: " . . . . . . . . . . . . . . . . . . . " | |||
". . . . . . . . . . . . . . . . . . . . . . . " | |||
". . . . . . . . . . . . . . . . . . . . . . . " | |||
". . . . . . . . . . . . . . . . . . . . . . . " | |||
". . . . . . . . . . . . . . . . . . . . . . . "; | |||
text-align: right; /* optional, can be removed */ | |||
} | |||
.page { | |||
grid-area: page; | |||
} | } | ||
Revision as of 20:51, 15 December 2025
/* CSS placed here will be applied to all skins */
@font-face {
font-family: Kazimir;
src:
local("Kazimir"),
url(/resources/assets/Kazimir-Text-Regular.woff2) format("woff2");
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: Kazimir;
src:
local("Kazimir"),
url(/resources/assets/Kazimir-Text-Italic.woff2) format("woff2");
font-style: italic;
font-weight: 400;
}
@font-face {
font-family: Kazimir;
src:
local("Kazimir"),
url(/resources/assets/Kazimir-Text-Bold.woff2) format("woff2");
font-style: normal;
font-weight: 700;
}
#siteSub {
display: block;
}
#p-logo-text a {
font-family: Kazimir, 'Segoe UI', serif;
font-size: 1.2em;
font-variant: small-caps;
}
#p-logo-text a.long {
font-size: 1.2em;
line-height: 1;
}
@media screen{
body {
font-family: Kazimir, 'Segoe UI', Sans-Serif;
}
#siteSub .mw-body .mw-heading, .mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, .mw-body h5, .mw-body h6, .mw-body dt {
font-family: Kazimir, 'Linux Libertine','Times New Roman';
}
}
/* Infoboxes */
.infobox {
border: 1px solid #a2a9b1;
color: black;
padding: 0.2em;
font-size: 88%;
line-height: 1.5em;
border-spacing: 3px;
margin: 0.5em 0;
}
@media screen {
.infobox {
background-color: var(--background-color-neutral-subtle, #f8f9fa);
}
}
@media (max-width: 640px) {
.infobox {
width: 100%;
}
.infobox .nowrap {
white-space: normal;
}
}
@media (min-width: 640px) {
.infobox {
/* @noflip */
margin-left: 1em;
/* @noflip */
float: right;
/* @noflip */
clear: right;
width: 22em;
}
}
.infobox-header,
.infobox-label,
.infobox-above,
.infobox-full-data,
.infobox-data,
.infobox-below,
.infobox-subheader,
.infobox-image,
.infobox-navbar,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox th,
.infobox td {
vertical-align: top;
}
.infobox-label,
.infobox-data,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox th,
.infobox td {
/* @noflip */
text-align: left;
}
/* Remove .infobox when element selectors above are removed */
.infobox .infobox-above,
.infobox .infobox-title,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox caption {
font-size: 125%;
font-weight: bold;
text-align: center;
}
.infobox-title,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox caption {
padding: 0.2em;
}
/* Remove .infobox when element selectors above are removed */
.infobox .infobox-header,
.infobox .infobox-subheader,
.infobox .infobox-image,
.infobox .infobox-full-data,
.infobox .infobox-below {
text-align: center;
}
/* Remove .infobox when element selectors above are removed */
.infobox .infobox-navbar {
/* @noflip */
text-align: right;
}
.entry {
display: grid;
grid-template-columns: auto max-content;
grid-template-areas: "chapter page";
align-items: end;
gap: 0 .25rem; /* customize the gap to your needs */
}
.chapter {
grid-area: chapter;
position: relative;
overflow: hidden;
}
.chapter::after {
position: absolute;
padding-left: .25ch; /* customise the padding to your needs */
/* adjust the amount of dots to your needs */
content: " . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . . . . ";
text-align: right; /* optional, can be removed */
}
.page {
grid-area: page;
}