2022-07-05 09:03:45 +01:00
|
|
|
@use "sass:math";
|
2022-08-03 21:22:11 +01:00
|
|
|
@use "sass:color";
|
2022-07-05 09:03:45 +01:00
|
|
|
|
2022-06-26 16:54:46 +01:00
|
|
|
@use "bulma_overrides" as *;
|
2022-08-16 22:51:03 +01:00
|
|
|
@use "mixins" as *;
|
2022-06-12 17:21:46 +01:00
|
|
|
|
2022-06-14 20:12:09 +01:00
|
|
|
@import "bulma/bulma";
|
2022-06-12 17:21:46 +01:00
|
|
|
|
|
|
|
@import "navbar";
|
2022-06-12 21:08:11 +01:00
|
|
|
@import "homepage";
|
|
|
|
@import "footer";
|
2022-06-14 20:57:43 +01:00
|
|
|
@import "hero";
|
|
|
|
@import "content";
|
2022-06-19 13:23:41 +01:00
|
|
|
@import "listing";
|
2022-06-27 20:40:55 +01:00
|
|
|
@import "blocks";
|
2022-07-04 20:06:04 +01:00
|
|
|
@import "shareon";
|
2022-08-01 22:23:06 +01:00
|
|
|
@import "search";
|
2022-06-12 17:21:46 +01:00
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
2022-06-19 14:46:45 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-07-04 20:36:19 +01:00
|
|
|
font-variant-ligatures: none;
|
2022-06-12 17:21:46 +01:00
|
|
|
}
|
2022-06-19 15:58:00 +01:00
|
|
|
|
|
|
|
main {
|
2022-07-04 20:06:04 +01:00
|
|
|
margin-bottom: 2rem;
|
2022-06-19 15:58:00 +01:00
|
|
|
}
|
2022-07-05 09:07:30 +01:00
|
|
|
|
|
|
|
a {
|
|
|
|
transition: color 0.25s, background-color 0.25s;
|
|
|
|
}
|