31 lines
337 B
SCSS
31 lines
337 B
SCSS
|
html {
|
||
|
background-color: $color-initial;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
padding-top: 7rem;
|
||
|
}
|
||
|
|
||
|
nav {
|
||
|
margin-bottom: 2rem;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
line-height: 2rem
|
||
|
}
|
||
|
|
||
|
footer ul {
|
||
|
list-style: none;
|
||
|
font-size: 1.2rem;
|
||
|
text-align: center;
|
||
|
line-height: 1rem
|
||
|
}
|
||
|
|
||
|
a:visited {
|
||
|
color: $color-quaternary;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: $color-quinary;
|
||
|
}
|