29 lines
501 B
SCSS
29 lines
501 B
SCSS
|
// 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;
|
||
|
}
|
||
|
|
||
|
code {
|
||
|
word-wrap: break-word;
|
||
|
}
|