46 lines
661 B
SCSS
46 lines
661 B
SCSS
@import "./colors";
|
|
@import url('https://fonts.googleapis.com/css?family=Raleway');
|
|
|
|
html, body, #__nuxt, #__layout {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family: "Raleway", sans-serif;
|
|
font-size: 16px;
|
|
|
|
background-color: $c-background;
|
|
color: $c-text
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a {
|
|
color: $c-link;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.button {
|
|
display: inline-block;
|
|
border: 2px solid white;
|
|
width: fit-content;
|
|
padding: 10px;
|
|
|
|
color: white;
|
|
|
|
transition: 400ms;
|
|
|
|
&:hover {
|
|
background-color: white;
|
|
color: $c-background;
|
|
font-weight: 400;
|
|
}
|
|
}
|