45 lines
540 B
SCSS
45 lines
540 B
SCSS
@import "./assets/scss/normalize";
|
|
@import "./assets/scss/globals";
|
|
|
|
html,
|
|
body {
|
|
font-size: 16px;
|
|
background-color: $dark-blue;
|
|
height: 100%;
|
|
font-family: $font;
|
|
color: $white;
|
|
overflow: auto;
|
|
}
|
|
|
|
#root {
|
|
position: relative;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
}
|
|
|
|
body {
|
|
padding: 0;
|
|
margin: auto !important;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
p {
|
|
color: $white;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
a,
|
|
a:hover {
|
|
text-decoration: none;
|
|
color: $white;
|
|
}
|