Merge branch 'more-webby'
This commit is contained in:
commit
6798aa2154
1 changed files with 26 additions and 0 deletions
26
style.css
26
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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue