21 lines
406 B
CSS
21 lines
406 B
CSS
header {
|
|
width: 100vw;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding: 15px 15px 15vh 15px;
|
|
top: 0;
|
|
background: linear-gradient(90deg, var(--colorVT1), var(--colorVT2));
|
|
}
|
|
|
|
#navBtn img {
|
|
height: 1.4em;
|
|
}
|
|
|
|
#pageTitle {
|
|
font-size: 1.2em;
|
|
letter-spacing: 0.3px;
|
|
color: white;
|
|
font-family: 'Roboto Light', sans-serif;
|
|
padding: 0 0 0 25px;
|
|
} |