44 lines
780 B
SCSS
44 lines
780 B
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;
|
|
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;
|
|
}
|
|
}
|
|
} |