commit 57a28f72e6e2121bfd705b4f6b8386ec9738919a Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Tue Nov 22 20:23:59 2016 +0000 Updated changelog commit 8f0f4023faa7642a630f10d4db2e9e2ab0ad0752 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Tue Nov 22 20:23:20 2016 +0000 Initial colophon commit e50a91d33dc5fb1a7af9356fd36c8bd0f1345361 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Tue Nov 22 17:23:42 2016 +0000 Output of gulp sass && gulp compress commit e33aea1e85e4b82e0c8848f41de174a61974d9ec Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Tue Nov 22 17:23:11 2016 +0000 Style the footer commit e80a43d3795209f834bd67b9501f54ef83861b7a Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Tue Nov 22 17:22:33 2016 +0000 Add footer
29 lines
523 B
SCSS
Vendored
29 lines
523 B
SCSS
Vendored
// styles.scss
|
|
|
|
body {
|
|
// from smashingmagazine.com/2015/11/using-system-ui-fonts-practical-guide
|
|
font-family: -apple-system, BlinkMacSystemFont,
|
|
"Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
|
|
"Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
sans-serif;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
border-bottom: 1px solid;
|
|
color: blue;
|
|
}
|
|
|
|
.social-links a {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.icon {
|
|
height: 1em;
|
|
width: auto;
|
|
}
|
|
|
|
footer {
|
|
font-size: 0.5rem;
|
|
text-align: center;
|
|
}
|