Difference between revisions of "Template:Frac/styles.css"
Jump to navigation
Jump to search
imported>Izno (wipe clean; let's just start from first principles) |
imported>Izno (shrink down to current sandbox) |
||
| Line 1: | Line 1: | ||
| + | .frac { | ||
| + | white-space: nowrap; | ||
| + | } | ||
| + | .frac .num, | ||
| + | .frac .den { | ||
| + | font-size: 80%; | ||
| + | line-height: 0; | ||
| + | position: relative; | ||
| + | vertical-align: baseline; | ||
| + | } | ||
| + | |||
| + | .frac .num { | ||
| + | top: -0.5em; | ||
| + | } | ||
| + | |||
| + | .frac .den { | ||
| + | bottom: -0.25em; | ||
| + | } | ||
| + | |||
| + | /* [[Template:Sronly]] is canonical implementation */ | ||
| + | .sr-only { | ||
| + | border: 0; | ||
| + | clip: rect(0, 0, 0, 0); | ||
| + | height: 1px; | ||
| + | margin: -1px; | ||
| + | overflow: hidden; | ||
| + | padding: 0; | ||
| + | position: absolute; | ||
| + | width: 1px; | ||
| + | /* white-space: nowrap; /* already have nowrap above */ | ||
| + | } | ||
Revision as of 05:39, 12 December 2020
.frac {
white-space: nowrap;
}
.frac .num,
.frac .den {
font-size: 80%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
.frac .num {
top: -0.5em;
}
.frac .den {
bottom: -0.25em;
}
/* [[Template:Sronly]] is canonical implementation */
.sr-only {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
/* white-space: nowrap; /* already have nowrap above */
}