You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
491 B
SCSS
39 lines
491 B
SCSS
@font-face {
|
|
font-family: merriweather;
|
|
src: url(/fonts/merriweather-regular.ttf);
|
|
}
|
|
|
|
body {
|
|
padding: 0;
|
|
font-family: merriweather, serif;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
padding: 4em 0;
|
|
|
|
img {
|
|
max-height: 7em;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2em;
|
|
}
|
|
|
|
nav ul {
|
|
display: flex;
|
|
list-style-type: none;
|
|
padding: 0;
|
|
|
|
li a {
|
|
padding: 1em;
|
|
border: 1px solid #000;
|
|
margin: 0 .5em;
|
|
text-decoration: none;
|
|
color: #000;
|
|
}
|
|
}
|
|
}
|