38 lines
617 B
SCSS
Vendored
38 lines
617 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;
|
|
}
|
|
|
|
footer p > a {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.iwc-logo {
|
|
width: 100px;
|
|
height: auto;
|
|
}
|