website/assets/scss/base.scss

40 lines
695 B
SCSS

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap');
$black: #141414;
$orange: #d6972a;
$font: 'Fira Code', monospace;
html {
height: 100%;
}
body {
background-color: $black;
background-image: url("../images/background.png");
color: $orange;
font-family: $font;
height: 100%;
margin: 0;
a {
color: $orange;
}
.container {
display: flex;
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
flex-direction: column;
}
header {
text-align: center;
ul {
display: flex;
flex-direction: row;
justify-content: space-around;
list-style: none;
}
}
}