2022-01-26 11:25:34 +01:00
|
|
|
@import "custom";
|
2022-04-29 12:23:26 +02:00
|
|
|
@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;
|
2023-03-23 11:32:46 +01:00
|
|
|
$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;
|
2023-03-23 11:32:46 +01:00
|
|
|
background-color: $white;
|
2023-03-21 15:36:26 +01:00
|
|
|
}
|
2021-08-06 15:19:40 +02:00
|
|
|
|
2023-03-21 15:36:26 +01:00
|
|
|
nav {
|
|
|
|
background-color: $black;
|
2023-10-12 15:09:07 +02:00
|
|
|
color: $orange;
|
2021-08-06 15:19:40 +02:00
|
|
|
|
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;
|
2022-02-04 11:27:48 +01:00
|
|
|
}
|
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
|
|
|
}
|