34 lines
421 B
SCSS
34 lines
421 B
SCSS
$padding: 15px;
|
|
|
|
.header {
|
|
background-color: #282c34;
|
|
padding: $padding;
|
|
display: flex;
|
|
justify-items: center;
|
|
font-size: calc(10px + 2vmin);
|
|
color: white;
|
|
}
|
|
|
|
.menu {
|
|
position: absolute;
|
|
|
|
background: none;
|
|
border: none;
|
|
color: white;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button {
|
|
|
|
}
|
|
|
|
.name {
|
|
margin: auto;
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
} |