32 lines
487 B
SCSS
32 lines
487 B
SCSS
@import url('https://fonts.googleapis.com/css?family=Slabo+27px&subset=latin-ext');
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
font-family: 'Slabo 27px', serif;
|
|
font-size: large;
|
|
}
|
|
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 1em;
|
|
|
|
>li {
|
|
margin: .3em 0;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: #854213;
|
|
transition: all ease-in .2s;
|
|
text-decoration-line: underline;
|
|
text-decoration-color: rgba(133, 66, 19, 0.2);
|
|
|
|
&:hover {
|
|
text-decoration-color: rgba(168, 18, 24, 1);
|
|
color: #a81218;
|
|
}
|
|
}
|