2024-03-14 23:58:11 +01:00
|
|
|
html {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
font: 400 1.2em/1.4em var(--base-type);
|
|
|
|
}
|
|
|
|
|
|
|
|
html body {
|
2024-04-23 21:41:41 +02:00
|
|
|
background: var(--secondary);
|
2024-03-14 23:58:11 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
perspective: 1px;
|
|
|
|
transform-style: preserve-3d;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GLOBALS */
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--primary);
|
|
|
|
text-decoration: none;
|
|
|
|
transition: all 0.2s linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
2024-03-21 21:51:24 +01:00
|
|
|
border-bottom: 1px solid var(--secondary-highlight);
|
2024-03-14 23:58:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sup {
|
|
|
|
background: var(--black);
|
|
|
|
color: var(--white);
|
|
|
|
padding: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre,
|
|
|
|
code {
|
|
|
|
background: var(--black);
|
2024-03-21 21:51:24 +01:00
|
|
|
color: var(--secondary-highlight);
|
2024-03-14 23:58:11 +01:00
|
|
|
border-radius: 3px;
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
|
2024-04-23 21:41:41 +02:00
|
|
|
img.logo-medium {
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu-open,
|
|
|
|
#menu-close {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2024-03-14 23:58:11 +01:00
|
|
|
/* HEADER */
|
|
|
|
|
|
|
|
header {
|
|
|
|
width: 100%;
|
2024-04-23 21:41:41 +02:00
|
|
|
border-top: var(--secondary) 3px solid;
|
|
|
|
position: relative;
|
|
|
|
z-index: 400;
|
2024-03-14 23:58:11 +01:00
|
|
|
}
|
|
|
|
|
2024-04-23 21:41:41 +02:00
|
|
|
div#menu {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: var(--secondary-highlight);
|
|
|
|
z-index: 500;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
opacity: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.menu > div.links {
|
|
|
|
font-size: 2em;
|
|
|
|
line-height: 1em;
|
|
|
|
}
|
2024-03-14 23:58:11 +01:00
|
|
|
|
2024-04-23 21:41:41 +02:00
|
|
|
/* Slideshow */
|
|
|
|
|
|
|
|
div.slide-show {
|
2024-03-14 23:58:11 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 90%;
|
2024-04-23 21:41:41 +02:00
|
|
|
position: relative;
|
2024-03-14 23:58:11 +01:00
|
|
|
}
|
|
|
|
|
2024-04-23 21:41:41 +02:00
|
|
|
div.slide-show > div.slide {
|
2024-03-14 23:58:11 +01:00
|
|
|
transition: all 0.7s linear;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.show {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2024-04-23 21:41:41 +02:00
|
|
|
div.slide-show > div.slide > video {
|
2024-03-14 23:58:11 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* HEADER -> Navigation */
|
|
|
|
|
|
|
|
nav {
|
|
|
|
width: 97%;
|
|
|
|
margin: 10px auto;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 50% 50%;
|
|
|
|
z-index: 1000;
|
|
|
|
position: relative;
|
|
|
|
color: var(--primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
nav img {
|
2024-04-25 21:17:24 +02:00
|
|
|
width: 40px;
|
2024-03-14 23:58:11 +01:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
2024-04-23 21:41:41 +02:00
|
|
|
nav > div.right {
|
|
|
|
text-align: right;
|
2024-03-14 23:58:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
nav a[role="menu-link"] {
|
|
|
|
background: var(--secondary);
|
|
|
|
margin-bottom: 14px;
|
|
|
|
padding: 3px;
|
|
|
|
border-radius: 2px;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 0.8em;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* MAIN CONTENT */
|
|
|
|
main {
|
|
|
|
z-index: 2;
|
2024-04-23 21:41:41 +02:00
|
|
|
background: var(--secondary);
|
2024-03-14 23:58:11 +01:00
|
|
|
line-height: 30px;
|
|
|
|
font-weight: lighter;
|
|
|
|
width: 100%;
|
2024-04-23 21:41:41 +02:00
|
|
|
color: var(--primary);
|
2024-03-14 23:58:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
main > article {
|
|
|
|
position: relative;
|
2024-04-23 21:41:41 +02:00
|
|
|
background: var(--secondary);
|
2024-03-14 23:58:11 +01:00
|
|
|
vertical-align: top;
|
2024-04-23 21:41:41 +02:00
|
|
|
color: var(--primary);
|
|
|
|
padding: 0 10%;
|
2024-03-14 23:58:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
main > article > div[role="archives"] {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
column-gap: 10px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
main article div[role="archives"] h1,
|
|
|
|
main article div[role="archives"] h2,
|
|
|
|
main article div[role="archives"] h3 {
|
|
|
|
color: var(--primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
main > section {
|
2024-04-23 21:41:41 +02:00
|
|
|
background: var(--secondary-highlight);
|
2024-03-14 23:58:11 +01:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 50% 50%;
|
2024-04-23 21:41:41 +02:00
|
|
|
padding: 0 10%;
|
2024-03-14 23:58:11 +01:00
|
|
|
max-width: 1000px;
|
2024-04-23 21:41:41 +02:00
|
|
|
color: var(--primary);
|
2024-03-14 23:58:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
main > section > div {
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2024-04-23 21:41:41 +02:00
|
|
|
main > sectio.page-meta > div a {
|
|
|
|
color: var(--primary);
|
2024-03-14 23:58:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* FOOTER */
|
|
|
|
footer {
|
2024-04-23 21:41:41 +02:00
|
|
|
background: var(--primary);
|
|
|
|
padding: 30px 10%;
|
|
|
|
color: var(--secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
color: var(--primary-highlight);
|
2024-03-14 23:58:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* RESPONSIVE */
|
|
|
|
|
|
|
|
@media only screen and (max-width: 640px) {
|
|
|
|
main > article {
|
|
|
|
padding: 0 10%;
|
|
|
|
}
|
|
|
|
|
|
|
|
main > section {
|
|
|
|
padding: 0 10%;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
2024-03-21 21:51:24 +01:00
|
|
|
background: var(--secondary-highlight);
|
2024-03-14 23:58:11 +01:00
|
|
|
padding: 30px 10%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
main > section {
|
|
|
|
display: inline-grid;
|
|
|
|
grid-template-columns: 50%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|