Merge branch 'more-webby'

This commit is contained in:
AJ ONeal 2018-08-15 17:38:35 -06:00
commit 6798aa2154
1 changed files with 26 additions and 0 deletions

View File

@ -367,3 +367,29 @@ li{
font-weight: 400;
font-style: normal;
}
/* make links functional for web,
* but not distracting for print
*/
a[href]{
text-decoration: none;
color: #444;
}
a[href]:hover{
text-decoration: underline;
}
/* make web version resemble printable page
*/
body{
background-color: grey;
}
body > *{
background-color: white;
}
#main{
height: var(--page-height);
}
#sidebar{
height: var(--page-height);
}