Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 29 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ body{
width: var(--page-width);
height: var(--page-height);
margin: 0;
font-family: "Open Sans", sans-serif;
font-family: "Open Sans", sans-serif;
font-weight: 300;
line-height: 1.3;
color: #444;
Expand Down Expand Up @@ -244,7 +244,7 @@ li{
}

.main-block:not(.concise) .details div{
margin: 0.18in 0 0.1in 0;
margin: 0.18in 0 0.1in 0;
}

.main-block:not(.concise) .blocks:last-child .details div{
Expand Down Expand Up @@ -325,7 +325,7 @@ li{
}

.side-block{
margin-top: 0.5in;
margin-top: 0.5in;
}

#contact ul{
Expand Down Expand Up @@ -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);
}