style: A bunch of general improvements to the CSS
This commit is contained in:
parent
75a7672f97
commit
e821d43c77
1 changed files with 11 additions and 0 deletions
|
@ -27,6 +27,7 @@ body {
|
|||
color: var(--foreground-color);
|
||||
|
||||
font-family: sans-serif, sans;
|
||||
line-height: 150%;
|
||||
}
|
||||
|
||||
header {
|
||||
|
@ -85,6 +86,16 @@ a {
|
|||
color: var(--link-color);
|
||||
}
|
||||
|
||||
sup {
|
||||
/* Hack I don't totally understand to make superscripts look better */
|
||||
/* Stolen partially from https://gist.github.com/unruthless/413930 */
|
||||
font-size: 50%;
|
||||
vertical-align: baseline;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
top: -0.8em;
|
||||
}
|
||||
|
||||
ul#menubar {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
|
|
Loading…
Reference in a new issue