website/assets/scss/base.scss

44 lines
780 B
SCSS
Raw Normal View History

2021-08-05 13:51:44 +02:00
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap');
@import "~bootstrap";
2021-08-05 22:07:24 +02:00
2021-08-05 13:51:44 +02:00
$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%;
2021-08-05 15:26:47 +02:00
margin: 0 10px;
2021-08-05 13:51:44 +02:00
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;
2021-08-05 22:07:24 +02:00
flex-wrap: wrap;
2021-08-05 13:51:44 +02:00
justify-content: space-around;
list-style: none;
2021-08-05 14:31:18 +02:00
margin: 0;
padding: 0;
2021-08-05 13:51:44 +02:00
}
}
}