39 lines
459 B
SCSS
39 lines
459 B
SCSS
@import "./assets/scss/globals";
|
|
|
|
html,
|
|
body {
|
|
font-size: 16px;
|
|
background-color: $off-white;
|
|
height: 100%;
|
|
font-family: $font-helvetica;
|
|
color: $blue;
|
|
text-align: center;
|
|
overflow: auto;
|
|
}
|
|
|
|
#root {
|
|
position: relative;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
body {
|
|
max-width: 1200px;
|
|
padding: 0 0.5rem;
|
|
margin: auto;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
p {
|
|
color: $dark-blue;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
a,
|
|
a:hover {
|
|
text-decoration: none;
|
|
color: $blue;
|
|
}
|