Add calendar
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user