Add calendar

This commit is contained in:
Michael Smith
2023-05-05 12:53:45 +02:00
parent 7bba0839a6
commit 1ddfb00eed
8 changed files with 214 additions and 7 deletions

View File

@@ -1,17 +1,66 @@
---
# Only the main Sass file needs front matter (the dashes are enough)
sitemap:
exclude: 'yes'
exclude: "yes"
---
@charset "utf-8";
/* =Colors */
$dorian: #F5F5F5;
$dorian: #f5f5f5;
$iron: #333333;
$cloudy: #828282;
@import
"mixins",
"default",
"404"
;
@import "mixins", "default", "404";
table,
th,
td {
border: 1px solid;
padding: 5px;
}
table.calendar {
width: 100%;
}
.flag.BE {
display: inline-block;
width: 20px;
height: 16px;
background-image: url("/assets/img/flags/BE.png");
background-size: contain;
background-repeat: no-repeat;
vertical-align: text-bottom;
}
.flag.DE {
display: inline-block;
width: 20px;
height: 16px;
background-image: url("/assets/img/flags/DE.png");
background-size: contain;
background-repeat: no-repeat;
vertical-align: text-bottom;
}
.flag.NL {
display: inline-block;
width: 20px;
height: 16px;
background-image: url("/assets/img/flags/NL.png");
background-size: contain;
background-repeat: no-repeat;
vertical-align: text-bottom;
}
.flag.online {
display: inline-block;
width: 16px;
height: 16px;
background-image: url("/assets/img/flags/globe.png");
background-size: contain;
background-repeat: no-repeat;
vertical-align: text-bottom;
background-color: #333333;
}