diff --git a/style.css b/style.css index cff8cb7..a534420 100644 --- a/style.css +++ b/style.css @@ -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); +}