website/assets/scss/base.scss

51 lines
666 B
SCSS
Raw Normal View History

@import "custom";
@import "/node_modules/bootstrap";
2021-08-07 10:34:39 +02:00
@import "fonts";
2021-08-05 22:07:24 +02:00
2021-08-05 13:51:44 +02:00
$black: #141414;
$orange: #d6972a;
$white: #f0f0f0;
2021-08-05 13:51:44 +02:00
$font: 'Fira Code', monospace;
body {
2023-03-21 15:36:26 +01:00
font-family: 'Mukta', sans-serif;
background-color: $white;
2023-03-21 15:36:26 +01:00
}
2023-03-21 15:36:26 +01:00
nav {
background-color: $black;
2023-10-12 15:09:07 +02:00
color: $orange;
2023-03-21 15:36:26 +01:00
ul {
display: flex;
justify-content: end;
list-style: none;
padding: 0;
margin: 0;
li {
width: 150px;
text-align: right;
}
2021-08-06 09:51:41 +02:00
}
2023-03-21 15:36:26 +01:00
}
2021-08-06 09:51:41 +02:00
2023-03-21 15:36:26 +01:00
header {
background-color: $black;
color: $orange;
}
2021-08-06 09:51:41 +02:00
2023-03-21 15:36:26 +01:00
main {
h1 {
background-color: $orange;
padding: 5px;
2021-08-05 13:51:44 +02:00
}
2023-03-21 15:36:26 +01:00
h2 {
background-color: $orange;
padding: 2px;
2021-08-05 13:51:44 +02:00
}
2023-03-21 15:36:26 +01:00
}
2021-08-05 13:51:44 +02:00
2023-03-21 15:36:26 +01:00
a {
color: $orange;
2021-08-05 13:51:44 +02:00
}