1
0
Fork 0
moritzruth.de/assets/global.scss
2019-03-09 22:48:13 +01:00

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;
}
}