2024-02-07 05:16:34 +00:00
|
|
|
/* Include */
|
2024-02-13 04:38:32 +00:00
|
|
|
@import url('./colorschemes/colors.css'); /* Include colorscheme */
|
2024-01-29 04:53:34 +00:00
|
|
|
|
2024-02-06 21:02:29 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
/* Global options */
|
2024-01-29 04:53:34 +00:00
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2024-02-11 20:21:08 +00:00
|
|
|
h1,h2,h3,h4,h5,h6 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2024-02-01 11:22:34 +00:00
|
|
|
body{
|
2024-02-20 19:26:28 +00:00
|
|
|
/* font-size: 100%; */
|
2024-01-29 04:53:34 +00:00
|
|
|
line-height: 1.5;
|
2024-02-01 11:22:34 +00:00
|
|
|
background-color: var(--bg);
|
|
|
|
color: var(--fg);
|
2024-02-22 21:04:54 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 100vh;
|
2024-01-29 04:53:34 +00:00
|
|
|
}
|
2024-02-01 11:22:34 +00:00
|
|
|
|
|
|
|
a{
|
2024-01-29 04:53:34 +00:00
|
|
|
text-decoration: none;
|
2024-02-01 11:22:34 +00:00
|
|
|
color: var(--acc-1);
|
2024-01-29 04:53:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-02-01 11:22:34 +00:00
|
|
|
/* Main Body */
|
2024-02-22 21:04:54 +00:00
|
|
|
.content {
|
|
|
|
margin: 5em 5% auto 5%;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2024-02-01 11:22:34 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
footer {
|
2024-02-09 05:28:36 +00:00
|
|
|
width: calc(100% - 40px);
|
2024-02-07 05:16:34 +00:00
|
|
|
text-align: center;
|
2024-02-08 15:26:15 +00:00
|
|
|
padding: 20px;
|
2024-01-29 04:53:34 +00:00
|
|
|
}
|
2024-02-02 20:56:06 +00:00
|
|
|
|
2024-02-08 11:08:24 +00:00
|
|
|
footer.fixed {
|
|
|
|
margin: 0;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
2024-02-02 20:56:06 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
/* Header and Navigation Menu */
|
2024-02-01 20:57:48 +00:00
|
|
|
.header {
|
|
|
|
width: 100%;
|
|
|
|
background-color: var(--alt-bg);
|
|
|
|
box-shadow: inset 0 -20px 20px -20px var(--shadow);
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
2024-02-07 05:16:34 +00:00
|
|
|
z-index: 100;
|
2024-02-02 11:31:53 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 18:42:27 +00:00
|
|
|
.menu-entries a{
|
|
|
|
transition: 400ms;
|
|
|
|
}
|
|
|
|
|
2024-02-01 20:57:48 +00:00
|
|
|
.menu-entries a:hover{
|
|
|
|
background-color: var(--acc-1);
|
|
|
|
color: var(--alt-bg);
|
|
|
|
box-shadow: inset 0 -20px 20px -20px var(--shadow);
|
2024-02-01 11:22:34 +00:00
|
|
|
|
2024-01-29 04:53:34 +00:00
|
|
|
}
|
|
|
|
|
2024-02-01 20:57:48 +00:00
|
|
|
.menu {
|
2024-01-29 04:53:34 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2024-02-02 18:42:27 +00:00
|
|
|
|
2024-02-11 20:21:08 +00:00
|
|
|
.menu a {
|
2024-02-07 05:16:34 +00:00
|
|
|
display: inline-block;
|
2024-02-02 18:42:27 +00:00
|
|
|
}
|
|
|
|
|
2024-02-01 20:57:48 +00:00
|
|
|
.menu-entries {
|
|
|
|
float: right;
|
2024-02-02 18:42:27 +00:00
|
|
|
padding: inherit;
|
2024-02-07 05:16:34 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2024-01-29 04:53:34 +00:00
|
|
|
}
|
|
|
|
|
2024-02-11 20:21:08 +00:00
|
|
|
.menu-btn, .lang-btn {
|
2024-01-29 04:53:34 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2024-02-01 20:57:48 +00:00
|
|
|
.menu a {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
2024-01-29 04:53:34 +00:00
|
|
|
|
|
|
|
|
2024-02-09 05:28:36 +00:00
|
|
|
a.home-link { display: none; }
|
|
|
|
|
2024-02-01 20:57:48 +00:00
|
|
|
/* Mobile layout - logo now serves as toggle for rest of menu items */
|
2024-02-07 05:16:34 +00:00
|
|
|
@media screen and (max-width: 755px) {
|
2024-01-29 04:53:34 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
/* disable clicking and clickable cursor indication */
|
|
|
|
.logo {
|
|
|
|
pointer-events: none;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-01-29 04:53:34 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
.menu-entries {
|
|
|
|
text-align: center;
|
|
|
|
float: none;
|
|
|
|
position: inherit;
|
2024-01-29 04:53:34 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
/* Hide Entries until toggled */
|
|
|
|
height: 0;
|
|
|
|
max-height: 0;
|
|
|
|
overflow: hidden;
|
2024-01-29 04:53:34 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
/* Slide out Animation */
|
|
|
|
transition: 400ms;
|
|
|
|
transition-property: all;
|
2024-02-01 11:22:34 +00:00
|
|
|
}
|
2024-01-29 04:53:34 +00:00
|
|
|
|
2024-02-11 20:21:08 +00:00
|
|
|
.menu-btn:checked ~ .menu .menu-entries {
|
2024-02-07 05:16:34 +00:00
|
|
|
/* Reveal Entries */
|
2024-02-02 18:42:27 +00:00
|
|
|
height: auto;
|
2024-02-17 02:43:03 +00:00
|
|
|
max-height: 750px; /* May Need to be change manually for nav lists */
|
2024-02-14 05:25:55 +00:00
|
|
|
overflow: scroll;
|
|
|
|
}
|
2024-02-02 18:42:27 +00:00
|
|
|
|
|
|
|
.menu-btn:checked ~ .menu .logo, .menu-entries a:hover {
|
2024-02-07 05:16:34 +00:00
|
|
|
/* BG Color on logo an hover effect */
|
|
|
|
background-color: var(--acc-1);
|
|
|
|
color: var(--alt-bg);
|
2024-02-01 11:22:34 +00:00
|
|
|
}
|
2024-02-02 11:31:53 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
.menu li, .menu-entries a{ display: block; }
|
|
|
|
/* TODO Make sure we can combine these 2 blocks */
|
2024-02-02 11:31:53 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
a.logo { display: block; transition: 400ms; }
|
2024-02-02 11:31:53 +00:00
|
|
|
|
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
/* Hamburger Menu */
|
|
|
|
.hamburger {
|
|
|
|
display: block;
|
|
|
|
float: right;
|
2024-02-02 18:42:27 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2024-02-07 05:16:34 +00:00
|
|
|
margin-top: 12px;
|
|
|
|
margin-right: 12px;
|
|
|
|
cursor: pointer;
|
2024-02-02 18:42:27 +00:00
|
|
|
}
|
2024-02-05 11:39:47 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
.bar1, .bar2, .bar3 {
|
|
|
|
width: 35px;
|
|
|
|
height: 5px;
|
|
|
|
background-color: var(--acc-1);
|
|
|
|
margin: 6px 0;
|
|
|
|
transition: 0.4s;
|
2024-02-05 11:39:47 +00:00
|
|
|
}
|
2024-01-29 04:53:34 +00:00
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
.change .bar1 {
|
|
|
|
background-color: var(--alt-bg);
|
|
|
|
transform: translate(0, 11px) rotate(45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.change .bar2 { opacity: 0; }
|
|
|
|
|
|
|
|
.change .bar3 {
|
|
|
|
transform: translate(0, -11px) rotate(-45deg);
|
|
|
|
background-color: var(--alt-bg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Wide window - links on the left in a sidebar */
|
2024-01-29 04:53:34 +00:00
|
|
|
@media screen and (min-width: 1040px) {
|
2024-02-01 20:57:48 +00:00
|
|
|
.header {
|
|
|
|
width: 15%;
|
|
|
|
height: 100%;
|
|
|
|
box-shadow: inset -22px 0 20px -20px var(--shadow);
|
2024-02-01 11:22:34 +00:00
|
|
|
}
|
|
|
|
|
2024-02-01 20:57:48 +00:00
|
|
|
.menu-entries{
|
|
|
|
float: none;
|
2024-02-07 05:16:34 +00:00
|
|
|
position: inherit;
|
2024-02-01 11:22:34 +00:00
|
|
|
}
|
2024-01-29 04:53:34 +00:00
|
|
|
|
2024-02-11 20:21:08 +00:00
|
|
|
.menu a, .menu a { display: block; }
|
2024-02-09 05:28:36 +00:00
|
|
|
a.home-link { display: none; }
|
2024-02-07 05:16:34 +00:00
|
|
|
|
2024-02-01 11:22:34 +00:00
|
|
|
.content {
|
2024-02-08 05:44:20 +00:00
|
|
|
margin-left: calc(15%);
|
2024-02-12 19:39:55 +00:00
|
|
|
margin-right: 0;
|
2024-02-08 05:44:20 +00:00
|
|
|
margin-top: auto;
|
|
|
|
padding: 20px;
|
|
|
|
|
2024-02-01 11:22:34 +00:00
|
|
|
}
|
2024-01-29 04:53:34 +00:00
|
|
|
|
2024-02-01 20:57:48 +00:00
|
|
|
.menu-entries a:hover{
|
|
|
|
box-shadow: inset -22px 0 20px -20px var(--shadow);
|
|
|
|
}
|
2024-02-09 05:28:36 +00:00
|
|
|
|
2024-02-11 20:21:08 +00:00
|
|
|
footer {
|
|
|
|
width: calc(85% - 40px);
|
|
|
|
margin-left: 15%;
|
|
|
|
}
|
2024-02-09 05:28:36 +00:00
|
|
|
|
|
|
|
footer.fixed { left: 15%; }
|
2024-01-29 04:53:34 +00:00
|
|
|
}
|
2024-02-02 11:31:53 +00:00
|
|
|
|
2024-02-08 05:44:20 +00:00
|
|
|
/* Table Styles */
|
|
|
|
|
|
|
|
table { width: 100%; }
|
|
|
|
|
|
|
|
th, td, table {
|
|
|
|
border: 1px solid var(--bg);
|
|
|
|
border-collapse: collapse;
|
|
|
|
padding: 6px 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table thead tr { background-color: var(--table); }
|
|
|
|
|
|
|
|
table tr { background-color: var(--table-alt); }
|
|
|
|
|
|
|
|
table tr:nth-child(2n) { background-color: var(--table); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Markdown Blockquote styles */
|
|
|
|
|
2024-02-07 05:16:34 +00:00
|
|
|
blockquote {
|
2024-02-07 20:41:41 +00:00
|
|
|
border-left-color: var(--alt-bg);
|
2024-02-07 05:16:34 +00:00
|
|
|
border-left-width: 5px;
|
|
|
|
border-left-style: solid;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote blockquote { margin-left: 20px }
|
|
|
|
|
|
|
|
blockquote p {
|
|
|
|
padding: 20px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Maps Shortcode */
|
|
|
|
blockquote.location {
|
|
|
|
background-color: var(--alt-bg);
|
2024-02-07 20:41:41 +00:00
|
|
|
border-left-color: var(--acc-1);
|
2024-02-07 05:16:34 +00:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote.location p { padding: inherit; }
|
|
|
|
|
|
|
|
|
|
|
|
/* =========================================== Still Needs cleaning */
|
|
|
|
/* Maps shortcode styling */
|
|
|
|
/* TODO rename most grid related elements for clarity */
|
2024-02-02 11:31:53 +00:00
|
|
|
|
2024-02-06 21:02:29 +00:00
|
|
|
.grid-item {
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-item p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.map-button {
|
|
|
|
color: var(--fg);
|
|
|
|
background-color: var(--acc-1);
|
|
|
|
padding: 5px;
|
|
|
|
border: solid 3px var(--acc-1);
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.map {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.map img {
|
|
|
|
width: 350px;
|
|
|
|
max-height: 350px;
|
|
|
|
}
|
|
|
|
.map-txt-grid {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: auto 1fr auto;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-gap: 10px;
|
|
|
|
position: relative;
|
|
|
|
left: 15px;
|
2024-02-07 05:16:34 +00:00
|
|
|
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.map img {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.map-txt-grid {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: auto 1fr auto;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-gap: 10px;
|
|
|
|
position: relative;
|
|
|
|
left: 15px;
|
|
|
|
|
|
|
|
z-index: 1;
|
2024-02-06 21:02:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.map img {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 755px) {
|
|
|
|
.map {
|
|
|
|
display: block;
|
|
|
|
}
|
2024-02-07 05:16:34 +00:00
|
|
|
|
2024-02-06 21:02:29 +00:00
|
|
|
.map-button {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.map img {
|
|
|
|
width: 100%;
|
|
|
|
max-height: inherit;
|
|
|
|
}
|
2024-02-07 05:16:34 +00:00
|
|
|
|
2024-02-06 21:02:29 +00:00
|
|
|
.map-txt-grid {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: auto auto; /* Two rows, first row adjusts to content, second row adjusts to content */
|
|
|
|
grid-template-columns: 1fr 1fr; /* Two columns for the entire grid */
|
|
|
|
}
|
2024-02-07 05:16:34 +00:00
|
|
|
|
2024-02-06 21:02:29 +00:00
|
|
|
.map-txt-grid {
|
|
|
|
margin-top: 10px;
|
|
|
|
left: 0;
|
|
|
|
}
|
2024-02-07 05:16:34 +00:00
|
|
|
|
2024-02-06 21:02:29 +00:00
|
|
|
.grid-item:first-child {
|
|
|
|
grid-column: span 2; /* Span two columns */
|
|
|
|
}
|
|
|
|
}
|
2024-02-11 20:21:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* TODO put in a clean spot */
|
|
|
|
.lang-switch {
|
|
|
|
display: inline-block;
|
|
|
|
background-color: var(--lang-btn-bg);
|
|
|
|
text-align: center;
|
|
|
|
width: 120px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.lang-switch a {
|
|
|
|
width: 100%;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lang-switch a:hover {
|
|
|
|
background-color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* lang-switch content (hidden by default) */
|
|
|
|
.translation-list {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
background-color: var(--langs-bg);
|
|
|
|
width: 120px;
|
|
|
|
top: 64px;
|
|
|
|
right: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2024-02-17 02:44:20 +00:00
|
|
|
height: 0;
|
|
|
|
max-height: 0;
|
|
|
|
transition-property: all;
|
|
|
|
transition: 400ms;
|
2024-02-11 20:21:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Links inside the lang-switch */
|
|
|
|
.translation-list a {
|
|
|
|
float: none;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a grey background color to lang-switch links on hover */
|
|
|
|
|
|
|
|
/* Show the lang-switch menu on hover */
|
|
|
|
.lang-btn:checked ~ .translation-list {
|
|
|
|
height: auto;
|
2024-02-17 02:43:03 +00:00
|
|
|
max-height: 100px;
|
2024-02-11 20:21:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1040px) {
|
|
|
|
.lang-switch {
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lang-switch a {
|
|
|
|
padding: 20px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.translation-list {
|
|
|
|
position: static;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 755px) {
|
|
|
|
.lang-switch {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lang-switch a {
|
|
|
|
padding: 20px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.translation-list {
|
|
|
|
position: static;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-02-27 04:55:51 +00:00
|
|
|
}
|