website/assets/scss/base.scss

61 lines
1.0 KiB
SCSS

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap');
@import "~bootstrap";
$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 10px;
&.nineties {
color: $black;
background-image: url("../images/background-1990.gif");
font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
a{
color: $black;
}
}
.nineties-toggle {
position: absolute;
top: 0;
right: 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;
flex-wrap: wrap;
justify-content: space-around;
list-style: none;
margin: 0;
padding: 0;
}
}
}