25 lines
402 B
SCSS
Vendored
25 lines
402 B
SCSS
Vendored
// site-header.scss
|
|
|
|
#topheader {
|
|
display: flex;
|
|
width: 100vw;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background-color: var(--black);
|
|
|
|
a {
|
|
color: var(--white);
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
padding-top: 1rem;
|
|
font-size: 3rem;
|
|
}
|
|
|
|
nav {
|
|
padding-bottom: 1rem;
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|