2022-02-18 16:53:54 +01:00
|
|
|
html {
|
|
|
|
min-height: 100vh;
|
2022-03-04 16:33:45 +01:00
|
|
|
scroll-behavior: smooth;
|
2022-02-18 16:53:54 +01:00
|
|
|
|
|
|
|
body {
|
2022-03-01 16:09:46 +01:00
|
|
|
background-color: var(--bg-color);
|
2022-02-18 16:53:54 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding-top: 3.5rem;
|
2023-08-02 16:11:56 +02:00
|
|
|
font-family: 'lucioleregular';
|
2022-02-19 09:25:51 +01:00
|
|
|
min-height: 100vh;
|
2022-03-01 16:09:46 +01:00
|
|
|
color: var(--font-color);
|
2023-08-02 16:11:56 +02:00
|
|
|
@include transition();
|
2022-02-23 14:13:19 +01:00
|
|
|
|
2022-02-19 09:25:51 +01:00
|
|
|
footer.footer {
|
2022-02-18 16:53:54 +01:00
|
|
|
margin-top: auto;
|
2022-02-19 09:25:51 +01:00
|
|
|
padding: 2rem 0.7rem 1.5rem;
|
2022-03-01 16:09:46 +01:00
|
|
|
background-color: var(--footer-color);
|
|
|
|
@include transition() {}
|
2022-02-18 16:53:54 +01:00
|
|
|
}
|
2022-02-19 09:25:51 +01:00
|
|
|
|
2022-02-18 16:53:54 +01:00
|
|
|
a {
|
2022-03-01 16:09:46 +01:00
|
|
|
color: var(--link-color);
|
2022-02-18 16:53:54 +01:00
|
|
|
cursor: pointer;
|
2022-03-01 16:09:46 +01:00
|
|
|
@include transition() {}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--font-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
color: var(--font-color);
|
2022-02-18 16:53:54 +01:00
|
|
|
}
|
2022-02-23 08:41:30 +01:00
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin-top: 2rem;
|
|
|
|
}
|
2022-03-01 16:09:46 +01:00
|
|
|
|
|
|
|
pre {
|
|
|
|
font-family: 'fira_codelight';
|
|
|
|
margin: 0.75rem 0;
|
|
|
|
padding: 0.75rem;
|
|
|
|
border-left: 2px solid $nord10;
|
|
|
|
background: var(--box-bg-color);
|
|
|
|
color: var(--font-color);
|
|
|
|
}
|
2022-02-18 08:14:34 +01:00
|
|
|
}
|
2022-02-19 09:25:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.layout-maxed {
|
|
|
|
@include respond-to("small") {
|
|
|
|
padding: 0 0.7rem;
|
|
|
|
}
|
2022-02-23 11:33:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.is-hidden {
|
|
|
|
display: none;
|
2022-03-04 16:33:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ml-4 {
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-hidden {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
@include respond-to("small-up") {
|
|
|
|
display: initial;
|
|
|
|
}
|
2022-04-08 15:03:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.is-danger {
|
|
|
|
color: $nord12;
|
2022-02-18 08:14:34 +01:00
|
|
|
}
|