2022-01-06 08:45:53 +00:00
|
|
|
@font-face {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-family: Gudea;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: url(fonts/gudea.woff2) format("woff2");
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-family: Gudea;
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: 400;
|
|
|
|
src: url(fonts/gudea-italic.woff2) format("woff2");
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-family: Gudea;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
src: url(fonts/gudea-bold.woff2) format("woff2");
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
:root {
|
2022-01-13 11:33:40 +00:00
|
|
|
--border-color: tomato;
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
--tv-dark: #237D0F;
|
|
|
|
--tv-light: #E2FAD7;
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-04-07 16:17:00 +00:00
|
|
|
--pen-dark: #C5021E;
|
|
|
|
--pen-light: #FFEBD9;
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
--social-light: #C2E4F2;
|
|
|
|
--social-dark: #0163A4;
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
--gallery-light: #FCF4B9;
|
|
|
|
--gallery-dark: #846A00;
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-05-25 12:20:53 +00:00
|
|
|
--kios-light: #F6D1BC;
|
|
|
|
--kios-dark: #E05732;
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-20 08:16:38 +00:00
|
|
|
--shouts-dark: #CB001D;
|
|
|
|
--shouts-light: #FFD9DD;
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-02-02 11:53:31 +00:00
|
|
|
--calendar-light: #B6EDFF;
|
|
|
|
--calendar-dark: #0E64C8;
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-04-07 17:32:42 +00:00
|
|
|
--sounds-light: #ECC5EC;
|
|
|
|
--sounds-dark: #CA14D4;
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-08-31 16:15:44 +00:00
|
|
|
--books-dark: #954d43;
|
|
|
|
--books-light: #edd7c4;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*Main Stuff*/
|
|
|
|
|
|
|
|
body {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-size: 21px;
|
2022-01-26 12:37:40 +00:00
|
|
|
font-family: Gudea, sans-serif;
|
2022-01-13 11:33:40 +00:00
|
|
|
margin: 0;
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-20 07:25:14 +00:00
|
|
|
/* pushes footer to bottom */
|
2022-01-20 08:16:38 +00:00
|
|
|
display: grid;
|
2022-01-20 07:25:14 +00:00
|
|
|
grid-template-rows: auto auto 1fr auto;
|
|
|
|
min-height: 100vh;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* pushes banner to bottom */
|
|
|
|
body > iframe {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin: auto 0 0;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
2022-01-13 11:33:40 +00:00
|
|
|
box-sizing: border-box;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
a {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
2022-12-19 08:23:44 +00:00
|
|
|
.container {
|
2022-01-13 11:33:40 +00:00
|
|
|
margin: 2em auto;
|
|
|
|
max-width: 80%;
|
2023-05-02 18:05:23 +00:00
|
|
|
width: 100%;
|
2022-01-13 11:33:40 +00:00
|
|
|
margin-bottom: 0;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.container .single {
|
2022-06-10 17:42:03 +00:00
|
|
|
max-width: 65ch;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
2022-01-13 11:33:40 +00:00
|
|
|
border: 2px solid var(--border-color);
|
|
|
|
background-color: #fff09d;
|
|
|
|
max-width: 600px;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
flex: auto;
|
|
|
|
margin: 0 3em 3em 0;
|
|
|
|
align-self: start;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
2022-01-13 11:33:40 +00:00
|
|
|
background-color: peachpuff;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.date-marker{
|
2022-08-31 16:15:44 +00:00
|
|
|
background-color: #333333;
|
|
|
|
color: white;
|
|
|
|
font-style: bold;
|
|
|
|
padding: 1em;
|
|
|
|
margin: 1em;
|
|
|
|
height: max-content;
|
|
|
|
flex: 0 0 15%;
|
|
|
|
font-family: Gudea;
|
|
|
|
font-weight: 700;
|
|
|
|
text-align: center;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
.date-marker:nth-child(odd){
|
2022-08-31 16:15:44 +00:00
|
|
|
transform: rotate(3deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
.date-marker:nth-child(even){
|
2022-08-31 16:15:44 +00:00
|
|
|
transform: rotate(-2deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.side-bar {
|
2022-01-13 11:33:40 +00:00
|
|
|
border: 2px solid var(--border-color);
|
|
|
|
max-width: 400px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.post:nth-child(even) {
|
2022-01-13 11:33:40 +00:00
|
|
|
transform: rotate(-1deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.post:nth-child(odd) {
|
2022-01-13 11:33:40 +00:00
|
|
|
transform: rotate(1deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.post:nth-child(5) {
|
2022-01-13 11:33:40 +00:00
|
|
|
transform: rotate(2deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.video.box {
|
2022-01-13 11:33:40 +00:00
|
|
|
margin-top: 3em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.bar {
|
2022-01-13 11:33:40 +00:00
|
|
|
border: 2px solid var(--border-color);
|
|
|
|
box-shadow: 0.6em 0.6em 0 #d2d1c8;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
margin-top: 3em;
|
|
|
|
display: inline-block;
|
|
|
|
background-color: #fff09d;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-feed {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
width: 100%;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-name {
|
2022-01-17 10:28:22 +00:00
|
|
|
padding-right: 1em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* base header & menu */
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.header-row {
|
|
|
|
margin: 1.5rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.home-link {
|
2023-05-02 18:05:23 +00:00
|
|
|
display: block;
|
|
|
|
max-width: 700px;
|
|
|
|
width: 70%;
|
|
|
|
padding: 0;
|
|
|
|
margin: auto;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
2023-05-02 18:05:23 +00:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#top-menu .login-link {
|
|
|
|
background: #009d9b;
|
|
|
|
padding: 5px 30px;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: 900;
|
|
|
|
position: absolute;
|
|
|
|
right: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row {
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 80%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: sticky;
|
|
|
|
top: 15px;
|
|
|
|
z-index: 99;
|
|
|
|
max-width: fit-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row .menu .filter-link {
|
|
|
|
background: #333;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0.5rem 1.5rem;
|
|
|
|
color: #fff;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-icon {
|
|
|
|
height: 14px;
|
|
|
|
width: auto;
|
|
|
|
display: block;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-icon path {
|
|
|
|
fill:#fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-button {
|
|
|
|
width: 30px;
|
|
|
|
height: 16px;
|
|
|
|
display: none;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
color: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-button--line {
|
|
|
|
width: 100%;
|
|
|
|
height: 2px;
|
|
|
|
background: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu {
|
|
|
|
border: 2px solid #333;
|
|
|
|
padding: 0 1rem;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
background: #fff;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-dot {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
margin-right: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu ul {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding-left: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
text-transform: lowercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu ul li {
|
|
|
|
margin-right: 1.5rem;
|
|
|
|
padding: 0.5rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu ul li:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-nav-item {
|
|
|
|
border-right: 2px solid var(--border-color);
|
|
|
|
padding: 0.5em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu a {
|
2022-01-13 11:33:40 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: #333;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu a:hover,
|
|
|
|
.menu a:focus {
|
2022-01-13 11:33:40 +00:00
|
|
|
color: black;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#top-menu div {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#top-menu div.mobile-menu,
|
|
|
|
.drawer {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu input {
|
2022-01-13 11:33:40 +00:00
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid #333;
|
|
|
|
margin-right: 2rem;
|
|
|
|
font-size: 13px;
|
|
|
|
margin-left: 5px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu input:focus,
|
|
|
|
.menu input:hover {
|
2022-01-13 11:33:40 +00:00
|
|
|
outline: none;
|
|
|
|
border-bottom: 1px solid #333;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu-dropdown summary {
|
2022-01-13 11:33:40 +00:00
|
|
|
list-style: none;
|
|
|
|
cursor: pointer;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu summary::-webkit-details-marker {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.login-menu {
|
|
|
|
display: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu-row .login {
|
|
|
|
height: 100%;
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
2023-05-02 18:05:23 +00:00
|
|
|
align-items: center;
|
|
|
|
border: 2px solid #333;
|
|
|
|
padding: 0 1.5rem;
|
|
|
|
background: #fff;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.login a {
|
|
|
|
text-decoration: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* styles for "tools" dropdown menu */
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu ul.submenu {
|
2022-03-18 13:18:00 +00:00
|
|
|
flex-direction: column;
|
|
|
|
margin-left: 0;
|
2022-04-06 07:45:10 +00:00
|
|
|
position: absolute;
|
|
|
|
background-color: white;
|
|
|
|
z-index: 2;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu .submenu {
|
2022-03-18 13:18:00 +00:00
|
|
|
visibility: hidden;
|
2022-04-13 06:30:18 +00:00
|
|
|
transition: all 0.1s ease-in-out;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu .submenu li {
|
2022-03-18 13:18:00 +00:00
|
|
|
margin: 2px 0;
|
2023-05-02 18:05:23 +00:00
|
|
|
padding: 0;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu .has-submenu {
|
2022-03-18 13:18:00 +00:00
|
|
|
cursor: pointer;
|
2022-04-06 07:22:10 +00:00
|
|
|
color: #333333;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu .has-submenu:hover {
|
2022-04-06 07:22:10 +00:00
|
|
|
color: black;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu .has-submenu:hover .submenu {
|
2022-03-18 13:18:00 +00:00
|
|
|
visibility: visible;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu ul.submenu {
|
|
|
|
margin-left: -0.5em;
|
|
|
|
margin-top: 8px;
|
|
|
|
border: 2px solid ;
|
2022-03-18 13:18:00 +00:00
|
|
|
gap: 0.25em;
|
|
|
|
padding: 0.5em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu .menu .submenu a {
|
2022-03-18 13:18:00 +00:00
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu .drawer .submenu {
|
2022-04-13 07:21:20 +00:00
|
|
|
position: initial;
|
|
|
|
display: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu .drawer .submenu.opened {
|
2022-04-13 07:21:20 +00:00
|
|
|
display: flex;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu .drawer .submenu li {
|
2022-03-19 09:52:05 +00:00
|
|
|
padding: 0;
|
|
|
|
padding-top: 1em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.menu .drawer .opened .submenu {
|
2022-03-19 09:52:05 +00:00
|
|
|
visibility: visible;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*Article Summary Cards*/
|
|
|
|
|
|
|
|
.h-entry header {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry header h2 {
|
2022-01-13 11:33:40 +00:00
|
|
|
padding: 0.2em;
|
|
|
|
margin: 0;
|
|
|
|
padding-right: 0.3em;
|
|
|
|
padding-left: 0.3em;
|
|
|
|
flex-grow: 1;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry header h2:hover {
|
2022-01-13 11:33:40 +00:00
|
|
|
cursor: pointer;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry header h2 a {
|
2022-01-13 11:33:40 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: var(--border-color);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry header .header-metadata {
|
2022-01-13 11:33:40 +00:00
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column wrap;
|
|
|
|
font-size: 0.8rem;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry img {
|
2022-01-13 11:46:07 +00:00
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* .portrait .h-entry img {
|
2022-04-12 21:04:23 +00:00
|
|
|
max-width: unset;
|
|
|
|
width: unset;
|
2022-12-19 08:23:44 +00:00
|
|
|
} */
|
|
|
|
|
|
|
|
.header-metadata .dt-published {
|
2022-01-13 11:33:40 +00:00
|
|
|
padding: 0.5em 1.2em 0.5em 1.2em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.author.p-author {
|
2022-01-13 11:33:40 +00:00
|
|
|
border-top: 2px solid var(--border-color);
|
|
|
|
padding: 0.5em 1.2em 0.5em 1.2em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-summary.truncated.image {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-summary.truncated {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.summary-text {
|
2022-01-13 11:33:40 +00:00
|
|
|
flex: 1;
|
|
|
|
padding: 1em;
|
|
|
|
min-width: 34ch;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.summary-image > a {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
footer.post-footer {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row-reverse;
|
2022-06-21 09:15:53 +00:00
|
|
|
padding: 0.5em 1em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-filler {
|
2022-01-13 11:33:40 +00:00
|
|
|
border-top: 2px solid var(--border-color);
|
|
|
|
flex-grow: 1;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.read-more {
|
2022-01-13 11:33:40 +00:00
|
|
|
align-content: flex-end;
|
|
|
|
font-size: 0.9rem;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
/* shout cards */
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.shout {
|
2022-01-20 08:16:38 +00:00
|
|
|
border: 2px solid var(--shouts-dark);
|
|
|
|
background-color: var(--shouts-light);
|
2022-01-13 11:33:40 +00:00
|
|
|
max-width: min-content;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
flex: auto;
|
|
|
|
margin: 0 3em 3em 0;
|
|
|
|
align-self: start;
|
2022-01-20 08:16:38 +00:00
|
|
|
color: var(--shouts-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.h-entry.shout header {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
2022-01-20 08:16:38 +00:00
|
|
|
flex-direction: column;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.h-entry.shout header h2 {
|
2022-01-20 08:16:38 +00:00
|
|
|
padding: 0.2em 0.5em 0.5em 0.5em;
|
2022-01-13 11:33:40 +00:00
|
|
|
margin: 0;
|
|
|
|
border: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.h-entry.shout header h2:hover {
|
2022-01-13 11:33:40 +00:00
|
|
|
cursor: pointer;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.h-entry.shout header h2 a {
|
2022-01-13 11:33:40 +00:00
|
|
|
text-decoration: none;
|
2022-01-20 08:16:38 +00:00
|
|
|
color: var(--shouts-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.h-entry.shout header time {
|
2022-01-20 08:16:38 +00:00
|
|
|
text-align: right;
|
|
|
|
padding: 0.6em 0.8em;
|
|
|
|
font-size: 1rem;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .header-metadata {
|
2022-01-13 11:33:40 +00:00
|
|
|
align-items: center;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .header-metadata .dt-published {
|
2022-01-20 08:16:38 +00:00
|
|
|
border-bottom: 2px solid var(--shouts-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .filler {
|
2022-01-13 11:33:40 +00:00
|
|
|
min-height: 1rem;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .author.p-author {
|
2022-01-20 08:16:38 +00:00
|
|
|
border-color: var(--shouts-dark);
|
2022-01-13 11:33:40 +00:00
|
|
|
padding: 0.5em 1.2em 0.5em 1.2em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .p-summary {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .p-summary.portrait {
|
2022-07-04 11:40:34 +00:00
|
|
|
/* flex-direction: row; */
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .p-summary.landscape {
|
2022-01-13 11:33:40 +00:00
|
|
|
flex-direction: column;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .summary-image > img {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: inherit;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .summary-text {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-size: 18px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
div.shout-source {
|
2022-01-20 08:16:38 +00:00
|
|
|
padding: 1em;
|
|
|
|
padding-right: 2em;
|
|
|
|
width: fit-content;
|
2022-01-13 11:33:40 +00:00
|
|
|
font-size: 14px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2022-01-20 08:16:38 +00:00
|
|
|
background-color: var(--shouts-dark);
|
|
|
|
color: white;
|
|
|
|
position: relative;
|
|
|
|
right: 1em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout-source .triangle {
|
2022-01-20 08:16:38 +00:00
|
|
|
position: absolute;
|
2023-05-02 18:05:23 +00:00
|
|
|
right: 0px;
|
2022-01-20 08:16:38 +00:00
|
|
|
bottom: 0;
|
2023-05-02 18:05:23 +00:00
|
|
|
width: auto;
|
|
|
|
height: calc(100% + 0.5px);
|
|
|
|
top: -0.5px;
|
|
|
|
transform: translateX(calc(100% - 0.5px));
|
|
|
|
fill: var(--shouts-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout-source a {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-weight: bold;
|
2022-01-20 08:16:38 +00:00
|
|
|
color: white;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .footer-filler {
|
2022-01-20 08:16:38 +00:00
|
|
|
border-left: 2px solid var(--shouts-dark);
|
2022-01-13 11:33:40 +00:00
|
|
|
border-top: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout footer.post-footer {
|
2022-01-20 08:16:38 +00:00
|
|
|
border-top: 2px solid var(--shouts-dark);
|
2022-01-13 11:33:40 +00:00
|
|
|
flex-flow: row;
|
|
|
|
font-size: 0.9rem;
|
2022-01-20 08:16:38 +00:00
|
|
|
background-color: var(--shouts-light);
|
2022-01-20 08:23:42 +00:00
|
|
|
color: var(--shouts-dark);
|
|
|
|
padding: 1em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout footer svg {
|
2022-01-20 08:23:42 +00:00
|
|
|
fill: var(--shouts-dark)
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .read-more {
|
2022-01-13 11:33:40 +00:00
|
|
|
border: none;
|
2022-01-20 08:16:38 +00:00
|
|
|
border-left: 2px solid var(--shouts-dark);
|
2022-01-13 11:33:40 +00:00
|
|
|
padding: 0.5em 1.2em 0.5em 1.2em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.shout .footer-metadata {
|
2022-01-13 11:33:40 +00:00
|
|
|
padding: 0.5em 1.2em 0.5em 1.2em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* pen cards */
|
|
|
|
.card.pen {
|
2022-04-20 09:54:37 +00:00
|
|
|
border: 2px solid var(--pen-dark);
|
|
|
|
background-color: var(--pen-light);
|
|
|
|
max-width: min-content;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
flex: auto;
|
|
|
|
margin: 0 3em 3em 0;
|
|
|
|
align-self: start;
|
|
|
|
color: var(--shouts-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry.pen header {
|
2022-04-20 09:54:37 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry.pen header h2 {
|
2022-04-20 09:54:37 +00:00
|
|
|
padding: 0.2em 0.5em 0.5em 0.5em;
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry.pen header h2:hover {
|
2022-04-20 09:54:37 +00:00
|
|
|
cursor: pointer;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry.pen header h2 a {
|
2022-04-20 09:54:37 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: var(--pen-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry.pen header time {
|
2022-04-20 09:54:37 +00:00
|
|
|
text-align: right;
|
|
|
|
padding: 0.6em 0.8em;
|
|
|
|
padding-top: 0;
|
|
|
|
font-size: 1rem;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .header-metadata {
|
2022-04-20 09:54:37 +00:00
|
|
|
align-items: center;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .header-metadata .dt-published {
|
2022-04-20 09:54:37 +00:00
|
|
|
border-bottom: 2px solid var(--pen-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .filler {
|
2022-04-20 09:54:37 +00:00
|
|
|
min-height: 1rem;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .author.p-author {
|
2022-04-20 09:54:37 +00:00
|
|
|
border-color: var(--pen-dark);
|
|
|
|
padding: 0.5em 1.2em 0.5em 1.2em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .p-summary {
|
2022-04-20 09:54:37 +00:00
|
|
|
display: flex;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .p-summary.portrait {
|
2022-07-04 11:40:34 +00:00
|
|
|
/* flex-direction: row; */
|
|
|
|
/*
|
|
|
|
* for some reason images on specific posts aren't appearing with the portrait class
|
|
|
|
*/
|
|
|
|
flex-direction: column;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .p-summary.landscape {
|
2022-04-20 09:54:37 +00:00
|
|
|
flex-direction: column;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .summary-image > img {
|
2022-04-20 09:54:37 +00:00
|
|
|
display: inherit;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .summary-text {
|
2022-04-20 09:54:37 +00:00
|
|
|
font-size: 18px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.pen-source {
|
2022-04-20 09:54:37 +00:00
|
|
|
padding: 1em;
|
|
|
|
font-size: 14px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
background-color: var(--pen-dark);
|
|
|
|
color: white;
|
|
|
|
margin: auto;
|
|
|
|
position: relative;
|
|
|
|
bottom: 21px;
|
|
|
|
transform: rotate(1deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.pen-source a {
|
2022-04-20 09:54:37 +00:00
|
|
|
font-weight: bold;
|
|
|
|
color: white;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .footer-filler {
|
2022-04-20 09:54:37 +00:00
|
|
|
border-left: 2px solid var(--pen-dark);
|
|
|
|
border-top: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen footer.post-footer {
|
2022-04-20 09:54:37 +00:00
|
|
|
border-top: 2px solid var(--pen-dark);
|
|
|
|
flex-flow: row;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
background-color: var(--pen-light);
|
|
|
|
color: var(--pen-dark);
|
|
|
|
padding: 0.25em 0.5em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen footer svg {
|
2022-04-20 09:54:37 +00:00
|
|
|
fill: var(--pen-dark)
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .read-more {
|
2022-04-20 09:54:37 +00:00
|
|
|
border: none;
|
|
|
|
border-left: 2px solid var(--pen-dark);
|
|
|
|
padding: 0.5em 1.2em 0.5em 1.2em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pen .footer-metadata {
|
2022-04-20 09:54:37 +00:00
|
|
|
padding: 0.5em 1.2em 0.5em 1.2em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
/* social / hashtag cards */
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social {
|
2022-01-13 11:33:40 +00:00
|
|
|
border-color: steelblue;
|
|
|
|
border: 2px solid;
|
|
|
|
background-color: aliceblue;
|
|
|
|
max-width: min-content;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
flex: auto;
|
|
|
|
margin: 0 3em 3em 0;
|
|
|
|
align-self: start;
|
|
|
|
color: steelblue;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social h2 a {
|
2022-01-13 11:33:40 +00:00
|
|
|
color: var(--social-dark);
|
|
|
|
cursor: pointer;
|
2022-01-13 11:36:38 +00:00
|
|
|
display: block;
|
2022-04-13 18:02:40 +00:00
|
|
|
word-wrap: anywhere;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card .card.social h2 a:hover {
|
2022-01-13 11:33:40 +00:00
|
|
|
border: none;
|
|
|
|
text-decoration: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social .post-footer {
|
2022-01-13 11:33:40 +00:00
|
|
|
background: var(--social-light);
|
|
|
|
color: var(--social-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social .post-footer a{
|
2022-06-01 04:06:20 +00:00
|
|
|
background: var(--social-light);
|
|
|
|
color: var(--social-dark);
|
|
|
|
text-decoration: underline;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* gallery cards */
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social.lumbunggallery, .card.social.lumbunggallery .post-footer a {
|
2022-05-25 12:20:53 +00:00
|
|
|
border-color: var(--gallery-dark);
|
|
|
|
background-color: var(--gallery-light);
|
|
|
|
color: var(--gallery-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social.lumbunggallery h2 a {
|
2022-05-25 12:20:53 +00:00
|
|
|
color: var(--gallery-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social.lumbunggallery .post-footer {
|
2022-05-25 12:20:53 +00:00
|
|
|
background: var(--gallery-light);
|
|
|
|
color: var(--gallery-dark);
|
|
|
|
border-top: 2px solid;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* kios cards */
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social.lumbungkios {
|
2022-05-25 12:20:53 +00:00
|
|
|
border-color: var(--kios-dark);
|
|
|
|
background-color: var(--kios-light);
|
|
|
|
color: var(--kios-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social.lumbungkios h2 a {
|
2022-05-25 12:20:53 +00:00
|
|
|
color: var(--kios-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social.lumbungkios .post-footer {
|
2022-05-25 12:20:53 +00:00
|
|
|
background: var(--kios-light);
|
|
|
|
color: var(--kios-dark);
|
|
|
|
border-top: 2px solid;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.card.social.lumbungkios .post-footer a {
|
2022-06-10 12:00:15 +00:00
|
|
|
background: none;
|
|
|
|
color: var(--kios-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* books cards */
|
|
|
|
|
|
|
|
.book.card {
|
2022-08-31 16:15:44 +00:00
|
|
|
background-color: var(--books-light);
|
|
|
|
color: var(--books-dark);
|
|
|
|
border-color: var(--books-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tape-label.book span{
|
2022-08-31 16:15:44 +00:00
|
|
|
background-color: var(--books-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* calendar cards */
|
|
|
|
|
|
|
|
.card.calendar {
|
2022-02-02 12:30:15 +00:00
|
|
|
border: 2px solid var(--calendar-dark);
|
|
|
|
background-color: var(--calendar-light);
|
2022-01-13 11:33:40 +00:00
|
|
|
max-width: 360px;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
flex: auto;
|
|
|
|
margin: 0 3em 3em 0;
|
|
|
|
align-self: start;
|
2022-02-02 12:30:15 +00:00
|
|
|
color: var(--calendar-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .tape-label {
|
2022-02-02 12:30:15 +00:00
|
|
|
background-color: var(--calendar-light);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .tape-label span {
|
2022-02-02 12:30:15 +00:00
|
|
|
background-color: var(--calendar-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-event.calendar header {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
|
|
|
border-bottom: 2px solid cornflowerblue;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-event.calendar header h2 {
|
2022-01-13 11:33:40 +00:00
|
|
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
|
|
|
margin: 0;
|
|
|
|
border-right: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-event.calendar header h2:hover {
|
2022-01-13 11:33:40 +00:00
|
|
|
cursor: pointer;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-event.calendar header h2 a {
|
2022-01-13 11:33:40 +00:00
|
|
|
text-decoration: none;
|
2022-02-02 12:30:15 +00:00
|
|
|
color: var(--calendar-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.h-event.calendar .calendar-location a {
|
2022-02-02 12:30:15 +00:00
|
|
|
color: var(--calendar-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-filler {
|
2022-01-13 11:33:40 +00:00
|
|
|
min-width: 10%;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar-location {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-size: 0.8rem;
|
|
|
|
min-width: 20%;
|
|
|
|
padding: 0.5em 0.9em 0.5em 0.9em;
|
|
|
|
border-left: 2px solid cornflowerblue;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar-duration {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-size: 0.8rem;
|
|
|
|
border-right: 2px solid cornflowerblue;
|
|
|
|
padding: 0.5em 0.9em 0.5em 0.9em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.start-scroller {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row-reverse;
|
|
|
|
border-bottom: 2px solid cornflowerblue;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.start-scroller marquee {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-size: 0.8rem;
|
|
|
|
padding-top: 0.2em;
|
|
|
|
padding-bottom: 0.2em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .description {
|
2022-01-13 11:33:40 +00:00
|
|
|
border-top: 2px solid cornflowerblue;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar-image-holder {
|
2022-01-13 11:33:40 +00:00
|
|
|
border-bottom: 2px solid cornflowerblue;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar-image-holder a {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: inherit;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar-image {
|
2022-03-04 12:01:04 +00:00
|
|
|
width: 100%;
|
2022-01-13 11:33:40 +00:00
|
|
|
max-width: 100%;
|
|
|
|
display: inherit;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Card metadata (video, calendar & books) */
|
|
|
|
|
|
|
|
.tape-label {
|
2022-02-02 12:30:15 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
border: none;
|
|
|
|
font-size: 1rem;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tape-label a,
|
|
|
|
.tape-label span {
|
2022-02-02 12:30:15 +00:00
|
|
|
width: max-content;
|
|
|
|
padding: 0.5em;
|
|
|
|
position: relative;
|
|
|
|
bottom: 19px;
|
|
|
|
z-index: 1;
|
|
|
|
transform: rotate(2deg);
|
|
|
|
color: white;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.metadata {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-wrap: wrap;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.description p:first-of-type {
|
2022-01-13 11:33:40 +00:00
|
|
|
margin: 0;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.description ul:first-of-type {
|
2022-01-13 11:33:40 +00:00
|
|
|
margin: 0;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input+label+.calendar-location+.description {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input:checked+label+.calendar-location+.description {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: block;
|
|
|
|
transition: ease .5s;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.metadata label {
|
2022-01-13 11:33:40 +00:00
|
|
|
vertical-align: sub;
|
|
|
|
flex-grow: 1;
|
|
|
|
font-weight: normal;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0.4em 0.9em 0.4em 0.9em;
|
|
|
|
font-size: 0.9em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
label:hover {
|
2022-04-13 06:23:19 +00:00
|
|
|
box-shadow: inset 2px 2px 0px var(--calendar-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
2022-01-13 11:33:40 +00:00
|
|
|
padding: 0.5em 0.7em 0.7em 0.5em;
|
|
|
|
overflow: hidden;
|
|
|
|
flex-basis: 100%;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.descr_button {
|
2022-01-13 11:33:40 +00:00
|
|
|
cursor: pointer;
|
|
|
|
flex-grow: 1;
|
|
|
|
text-align: center;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 10:27:19 +00:00
|
|
|
/* publishers card */
|
|
|
|
.publishers.card {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2024-01-31 10:00:58 +00:00
|
|
|
/* leaflet map */
|
2023-05-03 10:27:19 +00:00
|
|
|
#map {
|
2023-09-11 08:03:36 +00:00
|
|
|
margin-top: 2rem;
|
2024-01-31 10:00:58 +00:00
|
|
|
margin-bottom: 4rem !important;
|
2023-09-11 08:03:36 +00:00
|
|
|
|
|
|
|
/* makes map "break out of container" and take full-width */
|
|
|
|
width: 100vw !important;
|
|
|
|
transform: translateX(-10%);
|
2023-05-03 10:27:19 +00:00
|
|
|
}
|
|
|
|
|
2022-12-19 08:23:44 +00:00
|
|
|
|
|
|
|
/* Paginator */
|
|
|
|
|
|
|
|
.pagination-container {
|
2022-01-13 11:33:40 +00:00
|
|
|
width: 60%;
|
|
|
|
margin: auto;
|
|
|
|
margin-top: 2em;
|
|
|
|
margin-bottom: 2em;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.pagination {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
/* align horizontal */
|
|
|
|
align-items: center;
|
|
|
|
/* align vertical */
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-item {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 38px;
|
|
|
|
border-bottom: 2px solid black;
|
|
|
|
cursor: pointer;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.page-item {
|
2022-01-13 11:33:40 +00:00
|
|
|
padding: 0.4em;
|
|
|
|
position: relative;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.page-item a {
|
2022-01-13 11:33:40 +00:00
|
|
|
color: black;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.page-item.active a {
|
2022-01-13 11:33:40 +00:00
|
|
|
text-decoration: underline;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.page-item.disabled {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.page-item:first-child,
|
|
|
|
li.page-item:last-child,
|
|
|
|
li.page-item:nth-last-child(2),
|
|
|
|
.previous-page-link {
|
2022-01-13 11:33:40 +00:00
|
|
|
border: none;
|
|
|
|
text-decoration: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.page-item:first-child::before,
|
|
|
|
li.page-item:first-child::after,
|
|
|
|
li.page-item:last-child::before,
|
|
|
|
li.page-item:last-child::after,
|
|
|
|
li.page-item:nth-last-child(2)::before,
|
|
|
|
li.page-item:nth-last-child(2)::after,
|
|
|
|
.previous-page-link::before,
|
|
|
|
.previous-page-link::after {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.page-item a {
|
2022-01-13 11:33:40 +00:00
|
|
|
text-decoration: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.page-item:hover a {
|
2022-01-13 11:33:40 +00:00
|
|
|
text-decoration: underline;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.page-item:before {
|
2022-01-13 11:33:40 +00:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
border-left: 2px solid black;
|
2022-01-17 20:43:40 +00:00
|
|
|
z-index: -100;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.page-item:after {
|
2022-01-13 11:33:40 +00:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
border-right: 2px solid black;
|
2022-01-17 20:43:40 +00:00
|
|
|
z-index: -100;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
|
|
|
|
|
2022-12-19 08:23:44 +00:00
|
|
|
/* Landingpage */
|
|
|
|
.welcome-text {
|
2022-06-14 14:23:54 +00:00
|
|
|
text-align: center;
|
|
|
|
max-width: 1000px;
|
|
|
|
margin: 0 auto 50px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-columns {
|
2022-06-14 14:23:54 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto 50px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-column {
|
2022-06-14 14:23:54 +00:00
|
|
|
width: 33%;
|
|
|
|
text-align: center;
|
|
|
|
padding: 3.5%;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-column a {
|
2022-06-14 14:23:54 +00:00
|
|
|
text-decoration: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-icon {
|
2022-06-14 14:23:54 +00:00
|
|
|
display: block;
|
|
|
|
max-width: 90px;
|
|
|
|
width: 80%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
transition: transform 0.2s ease;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-icon:hover {
|
2022-06-14 14:23:54 +00:00
|
|
|
transform: rotate(-15deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-name {
|
2022-06-14 14:23:54 +00:00
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 0.2em;
|
|
|
|
color: #333;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-description {
|
2022-06-14 14:23:54 +00:00
|
|
|
font-size: 14px;
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
|
|
|
|
/* FILTER */
|
|
|
|
|
|
|
|
.filter-item, .card, .video-box {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.show-item {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-container {
|
|
|
|
display: none;
|
|
|
|
background: #fff;
|
|
|
|
padding: 1.5rem;
|
|
|
|
border: 2px solid #333;
|
|
|
|
border-top: 0;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
z-index: 99;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-information {
|
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#load-more {
|
|
|
|
font-size: 0.8rem;
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons-container {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
width: calc(85% - 30px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons-container-header {
|
|
|
|
display: flex;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-link {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
background: #333;
|
|
|
|
color: #fff;
|
|
|
|
padding: calc(0.5rem + 2px) 1rem;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-link:hover + .filter-container {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-container:hover {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons-dropdown {
|
|
|
|
position: absolute;
|
|
|
|
top: 41px;
|
|
|
|
width: calc(100% + 2px);
|
|
|
|
left: -1px;
|
|
|
|
background: #fff;
|
|
|
|
max-height: 35vh;
|
|
|
|
min-height: 100%;
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
|
|
|
border: 1px solid #333;
|
|
|
|
border-top: 0;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post.tv {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 980px) {
|
|
|
|
.filter-buttons:hover .filter-buttons-dropdown {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons:hover {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons {
|
|
|
|
width: fit-content;
|
|
|
|
display: flex;
|
|
|
|
white-space: nowrap;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid #333;
|
|
|
|
margin-right: 10px;
|
|
|
|
padding-right: 30px;
|
|
|
|
width: calc(25% - 7.5px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons:last-child {
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons > button {
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-by:after {
|
|
|
|
content:"";
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 5px 5px 0 5px;
|
|
|
|
border-color: #333333 transparent transparent transparent;
|
|
|
|
position: absolute;
|
|
|
|
right: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
border: 0;
|
|
|
|
background: unset;
|
|
|
|
border-radius: 0;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0.6rem;
|
|
|
|
cursor: pointer;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-transform: lowercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons-dropdown button {
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons .filter-button {
|
|
|
|
padding: 0.6rem 0.6rem 0.6rem 1.6rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-button svg {
|
|
|
|
width: 10px;
|
|
|
|
position: absolute;
|
|
|
|
left: 0.6rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-button svg path {
|
|
|
|
fill: #3330;
|
|
|
|
stroke: #333;
|
|
|
|
stroke-width: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-button.active svg path {
|
|
|
|
fill: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-title {
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons-dropdown button:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons .filter-button.active {
|
|
|
|
background: #c2c2ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disable-button {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-nav {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 20px auto 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nextpage {
|
|
|
|
padding: 15px;
|
|
|
|
position: relative;
|
|
|
|
color: #333;
|
|
|
|
text-decoration: none;
|
|
|
|
margin: 0px 20px;
|
|
|
|
font-size: 38px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nextpage:after {
|
|
|
|
content: "";
|
|
|
|
height: 50%;
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
border: 2px solid #333;
|
|
|
|
border-top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-12-19 08:23:44 +00:00
|
|
|
/* ### Timeline ### */
|
|
|
|
|
|
|
|
/* Timeline Tags */
|
|
|
|
.timeline-tags {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-bottom: 50px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 90vw;
|
|
|
|
font-size: 1.4vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-tags-headline {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-right: 10px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-tags ul {
|
2022-06-14 14:23:54 +00:00
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: scroll;
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
scrollbar-width: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-tags ul::-webkit-scrollbar {
|
2022-06-14 14:23:54 +00:00
|
|
|
display: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-tags ul li {
|
2022-06-14 14:23:54 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-tags ul li.timeline-tag {
|
2022-06-14 14:23:54 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
|
|
|
padding: 10px 35px;
|
|
|
|
background: #007f76;
|
|
|
|
border-radius: 50px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-tags ul li a {
|
2022-06-14 14:23:54 +00:00
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Timeline Container and Line */
|
|
|
|
.timeline-container {
|
2022-06-14 14:23:54 +00:00
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-start {
|
2022-06-14 14:23:54 +00:00
|
|
|
font-size: 3vw;
|
|
|
|
text-align: center;
|
|
|
|
padding: 1.5vw 0 4.5vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-end {
|
2022-06-14 14:23:54 +00:00
|
|
|
font-size: 3vw;
|
|
|
|
text-align: center;
|
|
|
|
padding: 10vw 0 10vw;
|
|
|
|
background: rgb(255,255,255);
|
|
|
|
background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
|
|
|
|
width: 100vw;
|
|
|
|
margin-left: -10vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-start span {
|
2022-06-14 14:23:54 +00:00
|
|
|
padding: 1.5vw 3vw;
|
|
|
|
border: 2px solid;
|
|
|
|
background: #fff;
|
|
|
|
transform: rotate(3deg);
|
|
|
|
display: block;
|
|
|
|
width: fit-content;
|
|
|
|
margin: auto;
|
|
|
|
font-weight: 700;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-line {
|
2022-06-14 14:23:54 +00:00
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
width: 35vw;
|
|
|
|
height: calc(100% - 12vw);
|
|
|
|
top: 12vw;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-line-head {
|
2022-06-14 14:23:54 +00:00
|
|
|
background-image: url(/img/timeline-head.svg);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 100%;
|
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
width: 100%;
|
|
|
|
height: 25.5vw;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-line-body {
|
2022-06-14 14:23:54 +00:00
|
|
|
background-image: url(/img/timeline-body.svg);
|
|
|
|
background-repeat: repeat-y;
|
|
|
|
background-size: 100%;
|
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
width: 100%;
|
|
|
|
height: calc(100% - 25.2vw);
|
|
|
|
top: 25.2vw;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Timeline Events and Position */
|
|
|
|
.timeline-events {
|
2022-06-14 14:23:54 +00:00
|
|
|
display: flex;
|
2022-12-19 08:23:44 +00:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event {
|
2022-06-14 14:23:54 +00:00
|
|
|
width: 20vw;
|
|
|
|
height: 12vw;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: -3.1vw !important;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 1.4s ease;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event.inView {
|
2022-06-14 14:23:54 +00:00
|
|
|
opacity: 1;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-url {
|
2022-06-14 14:23:54 +00:00
|
|
|
font-size: 1.8vw;
|
|
|
|
color: #333;
|
|
|
|
text-decoration: unset;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a.timeline-url {
|
2022-06-14 14:23:54 +00:00
|
|
|
text-decoration: underline;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.link-svg {
|
2022-06-14 14:23:54 +00:00
|
|
|
height: 1.2vw;
|
|
|
|
width: 1.2vw;
|
|
|
|
margin-left: 0.8vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Timeline Events - Left Side (sort margin)*/
|
|
|
|
.timeline-event:nth-child(36n + 7), .timeline-event:nth-child(36n + 9), .timeline-event:nth-child(36n + 33) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-left: 2vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(36n + 1) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-left: 8vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(36n + 25), .timeline-event:nth-child(36n + 35) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-left: 10vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(1), .timeline-event:nth-child(36n + 11), .timeline-event:nth-child(36n + 17), .timeline-event:nth-child(36n + 23), .timeline-event:nth-child(36n + 27) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-left: 12vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(36n + 3), .timeline-event:nth-child(36n + 15), .timeline-event:nth-child(36n + 21) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-left: 14vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(3), .timeline-event:nth-child(36n + 5), .timeline-event:nth-child(36n + 13), .timeline-event:nth-child(36n + 19), .timeline-event:nth-child(36n + 29) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-left: 16vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Timeline Events - Right Side */
|
|
|
|
.timeline-event:nth-child(2n) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-left: auto;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(36n + 2), .timeline-event:nth-child(36n + 6), .timeline-event:nth-child(36n + 20), .timeline-event:nth-child(36n + 32) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-right: 4vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(36n + 34) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-right: 6vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(36n + 36) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-right: 8vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(36n + 8), .timeline-event:nth-child(36n + 24) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-right: -3vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(36n + 14), .timeline-event:nth-child(36n + 16) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-right: -4vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(36n + 26) {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-right: -5vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Timeline Events - Rotate */
|
|
|
|
.timeline-event:nth-child(2n) {
|
2022-06-14 14:23:54 +00:00
|
|
|
transform: rotate(2deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(5n) {
|
2022-06-14 14:23:54 +00:00
|
|
|
transform: rotate(3deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(2n + 1) {
|
2022-06-14 14:23:54 +00:00
|
|
|
transform: rotate(-1.5deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(18n + 5), .timeline-event:nth-child(18n + 17) {
|
2022-06-14 14:23:54 +00:00
|
|
|
transform: rotate(5deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(18n + 13), .timeline-event:nth-child(18n + 36) {
|
2022-06-14 14:23:54 +00:00
|
|
|
transform: rotate(-3deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-event:nth-child(18n + 9), .timeline-event:nth-child(18n + 12), .timeline-event:nth-child(18n + 22) {
|
2022-06-14 14:23:54 +00:00
|
|
|
transform: rotate(-5deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Event Single */
|
|
|
|
.back-button {
|
2022-06-14 14:23:54 +00:00
|
|
|
width: fit-content;
|
|
|
|
padding: 10px 20px;
|
|
|
|
border: 0;
|
|
|
|
background: #007f76;
|
|
|
|
color: #fff;
|
|
|
|
cursor: pointer;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* PopUp */
|
|
|
|
.popup-container {
|
2022-06-14 14:23:54 +00:00
|
|
|
position: fixed;
|
2022-06-15 13:33:11 +00:00
|
|
|
z-index: 999;
|
2022-06-14 14:23:54 +00:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
opacity: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
transition: opacity 0.6s ease, visibility 0s ease 0.6s;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup-container.view {
|
2022-06-14 14:23:54 +00:00
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
transition: opacity 0.6s ease, visibility 0s ease 0s;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup {
|
2022-06-14 14:23:54 +00:00
|
|
|
background: #fff;
|
|
|
|
padding: 0 30px 30px;
|
|
|
|
border: 2px solid;
|
|
|
|
width: 80%;
|
|
|
|
max-width: 1000px;
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
max-height: 80%;
|
|
|
|
overflow-y: scroll;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup-header {
|
2022-06-14 14:23:54 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding-top: 30px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup-header h3 {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin: 0;
|
|
|
|
padding-right: 10px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup-close {
|
2022-06-14 14:23:54 +00:00
|
|
|
position: relative;
|
|
|
|
height: 30px;
|
|
|
|
width: 30px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
border: 0;
|
|
|
|
background: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup-close:after, .popup-close:before {
|
2022-06-14 14:23:54 +00:00
|
|
|
content: "";
|
|
|
|
height: 30px;
|
|
|
|
width: 2px;
|
|
|
|
display: block;
|
|
|
|
background: #333;
|
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup-close:before {
|
2022-06-14 14:23:54 +00:00
|
|
|
transform: rotate(-45deg);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup-bg {
|
2022-06-14 14:23:54 +00:00
|
|
|
position: absolute;
|
|
|
|
background: #00000059;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: -1;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
/* EVENT LIST */
|
|
|
|
|
|
|
|
.event-list {
|
|
|
|
border: 2px solid var(--calendar-dark);
|
|
|
|
background-color: var(--calendar-light);
|
|
|
|
color: var(--calendar-dark);
|
|
|
|
margin: 1rem 0 4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list .tape-label span {
|
|
|
|
background-color: var(--calendar-dark);
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item {
|
|
|
|
border-top: 1px solid;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item-head {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item a {
|
|
|
|
color: var(--calendar-dark);
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .date-start, .event-list-item .title, .event-list-item .time, .event-list-item .duration, .event-list-item .location {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border-right: 1px solid var(--calendar-dark);
|
|
|
|
padding: 0.8rem 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .date-start {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
width: 110px;
|
|
|
|
padding-left: 0.4rem;
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .title {
|
|
|
|
width: calc(45% - 110px);
|
|
|
|
padding-left: 0.4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .p-name {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .p-name a {
|
|
|
|
color: var(--calendar-dark);
|
|
|
|
text-decoration: none;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .time {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .time .start-scroller {
|
|
|
|
border-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .duration {
|
|
|
|
width: 12.5%;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
padding: 0.8rem 0.4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .duration b {
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .location {
|
|
|
|
min-width: unset;
|
|
|
|
width: 15%;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
padding: 0.8rem 0.4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .button {
|
|
|
|
width: 7.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .calendar {
|
|
|
|
width: 7.5%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0.8rem 0.4rem;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .description {
|
|
|
|
display: none;
|
|
|
|
border-top: 1px solid;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + label + .description {
|
|
|
|
display: block;
|
|
|
|
transition: ease .5s;
|
|
|
|
}
|
|
|
|
|
2022-12-19 08:23:44 +00:00
|
|
|
/* Page footer */
|
|
|
|
|
|
|
|
#footer {
|
2022-06-14 14:23:54 +00:00
|
|
|
position: relative;
|
|
|
|
margin-top: 10px;
|
|
|
|
font-size: 18px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#footer.blue .f-main {
|
2022-06-14 14:23:54 +00:00
|
|
|
background: var(--social-light);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#footer.blue .f-credits {
|
2022-06-14 14:23:54 +00:00
|
|
|
background: var(--social-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#footer.orange .f-main {
|
2022-06-14 14:23:54 +00:00
|
|
|
background: var(--kios-light);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#footer.orange .f-credits {
|
2022-06-14 14:23:54 +00:00
|
|
|
background: var(--kios-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#footer.green .f-main {
|
2022-06-14 14:23:54 +00:00
|
|
|
background: var(--tv-light);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#footer.green .f-credits {
|
2022-06-14 14:23:54 +00:00
|
|
|
background: var(--tv-dark);
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.f-main {
|
2022-06-14 14:23:54 +00:00
|
|
|
padding: 60px 2rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.f-column {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-right: 6vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.f-column:first-child {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-right: 8vw;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.f-column:last-child {
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-right: 0;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.f-main .logo {
|
2023-05-02 18:05:23 +00:00
|
|
|
width: 280px;
|
|
|
|
max-height: unset;
|
2022-06-14 14:23:54 +00:00
|
|
|
filter: brightness(0);
|
|
|
|
max-width: 20vw;
|
|
|
|
margin-top: 0;
|
|
|
|
opacity: 0.8;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.f-menu-headline {
|
2022-06-14 14:23:54 +00:00
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 5px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.f-main a {
|
2022-06-14 14:23:54 +00:00
|
|
|
color: #000;
|
|
|
|
display: block;
|
|
|
|
font-size: 18px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
text-decoration: none;
|
|
|
|
white-space: nowrap;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.f-main .login {
|
2022-06-14 14:23:54 +00:00
|
|
|
font-weight: bold;
|
|
|
|
padding: 8px 28px;
|
|
|
|
border: 1.5px solid;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.f-credits {
|
2022-06-14 14:23:54 +00:00
|
|
|
color: #fff;
|
2022-01-13 11:33:40 +00:00
|
|
|
font-size: 15px;
|
2022-06-14 14:23:54 +00:00
|
|
|
padding: 20px 2rem;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.f-credits a {
|
2022-06-14 14:23:54 +00:00
|
|
|
color: #fff;
|
2022-01-13 11:33:40 +00:00
|
|
|
text-decoration: none;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.f-credits a:hover {
|
2022-01-13 11:33:40 +00:00
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: underline;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* about styles */
|
|
|
|
|
|
|
|
#about-img {
|
2022-04-13 17:48:38 +00:00
|
|
|
width: 50%;
|
|
|
|
height: auto;
|
|
|
|
display:block;
|
|
|
|
margin:auto;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* single page styles */
|
|
|
|
.single header {
|
2022-04-13 17:48:38 +00:00
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 4rem;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.single .p-name a {
|
2022-06-10 17:50:45 +00:00
|
|
|
color: black;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 2.2rem;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.single .p-name a:hover {
|
2022-06-10 17:50:45 +00:00
|
|
|
text-decoration: underline;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.single .h-entry img {
|
2022-04-13 17:48:38 +00:00
|
|
|
object-fit: contain;
|
2022-06-15 13:33:11 +00:00
|
|
|
height: auto;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.single .h-entry figure{
|
2022-06-15 13:33:11 +00:00
|
|
|
margin: 0 0 20px;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.single .h-entry figure figure{
|
2022-06-15 13:33:11 +00:00
|
|
|
margin: 0;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* lumbung radio player widget */
|
|
|
|
.lumbung-radio-player {
|
2022-04-13 18:41:01 +00:00
|
|
|
display: flex;
|
|
|
|
color: var(--sounds-dark);
|
|
|
|
border: 1px solid var(--sounds-dark);
|
|
|
|
background: var(--sounds-light);
|
|
|
|
font-style: italic;
|
|
|
|
width: fit-content;
|
|
|
|
padding: 1rem;
|
|
|
|
gap: 1rem;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 2rem;
|
|
|
|
right: 2rem;
|
|
|
|
cursor: pointer;
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media all and (min-width: 980px) and (max-width: 1180px) {
|
|
|
|
#top-menu a, .menu .has-submenu {
|
2022-06-14 14:23:54 +00:00
|
|
|
font-size: 1.8vw;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2023-05-02 18:05:23 +00:00
|
|
|
|
|
|
|
.menu-row {
|
|
|
|
font-size: 1.78vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* tablet styles */
|
|
|
|
|
|
|
|
@media (max-width: 980px) {
|
2022-01-20 12:14:40 +00:00
|
|
|
body {
|
|
|
|
display: initial;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
#top-menu {
|
2023-05-02 18:05:23 +00:00
|
|
|
width: 100%;
|
2022-12-19 08:20:54 +00:00
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
.logo {
|
|
|
|
max-height: 50px;
|
2022-12-19 08:20:54 +00:00
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-10-18 05:35:42 +00:00
|
|
|
/* menu styles */
|
2023-05-02 18:05:23 +00:00
|
|
|
|
|
|
|
.menu-row, #top-menu {
|
|
|
|
position: fixed !important;
|
|
|
|
z-index: 97;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row {
|
|
|
|
z-index: 98;
|
|
|
|
width: fit-content;
|
|
|
|
margin-top: 3vw;
|
|
|
|
right: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
left: 20px;
|
|
|
|
top: 80px;
|
|
|
|
width: calc(100vw - 40px);
|
|
|
|
overflow: scroll;
|
|
|
|
height: calc(100% - 90px);
|
|
|
|
padding: 0.5rem 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu.active {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu ul {
|
|
|
|
margin: 0;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row .login {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-button {
|
|
|
|
display: flex;
|
|
|
|
position: fixed;
|
|
|
|
left: 20px;
|
|
|
|
top: clamp(25px, 7vw, 35px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu ul.submenu {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-top: 4px;
|
|
|
|
position: unset;
|
|
|
|
border: 0;
|
|
|
|
padding-left: 20px !important;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu .submenu li {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0.5rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu ul.submenu.active {
|
|
|
|
display: block;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-menu {
|
|
|
|
display: block;
|
|
|
|
padding: 0.5rem 2rem;
|
|
|
|
background: #333;
|
|
|
|
transform: rotate(-3deg);
|
|
|
|
width: fit-content;
|
|
|
|
margin: 0.5rem 0 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-menu a {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-button--line{
|
|
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-button.active {
|
|
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
|
|
-o-transition: all 0.3s ease-in-out;
|
|
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
transition-delay: 0s;
|
|
|
|
-webkit-transition-delay: 0.6s;
|
|
|
|
-o-transition-delay: 0.6s;
|
|
|
|
transition-delay: 0.6s;
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
-ms-transform: rotate(45deg);
|
|
|
|
-o-transform: rotate(45deg);
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-button.active .menu-button--line:nth-child(1) {
|
|
|
|
-webkit-transform: translateY(8px);
|
|
|
|
-ms-transform: translateY(8px);
|
|
|
|
-o-transform: translateY(8px);
|
|
|
|
transform: translateY(8px);
|
|
|
|
-webkit-transition-delay: 0.3s;
|
|
|
|
-o-transition-delay: 0.3s;
|
|
|
|
transition-delay: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-button.active .menu-button--line:nth-child(2) {
|
|
|
|
width: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-button.active .menu-button--line:nth-child(3) {
|
|
|
|
-webkit-transform: translateY(-6px) rotate(90deg);
|
|
|
|
-ms-transform: translateY(-6px) rotate(90deg);
|
|
|
|
-o-transform: translateY(-6px) rotate(90deg);
|
|
|
|
transform: translateY(-6px) rotate(90deg);
|
|
|
|
-webkit-transition-delay: 0.3s;
|
|
|
|
-o-transition-delay: 0.3s;
|
|
|
|
transition-delay: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter {
|
|
|
|
position: fixed;
|
|
|
|
right: 20px;
|
|
|
|
top: clamp(25px, 7vw, 35px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-container {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
border-top: 2px solid #333;
|
|
|
|
left: 20px;
|
|
|
|
width: calc(100vw - 40px);
|
|
|
|
position: fixed;
|
|
|
|
margin-top: 30px;
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filter.active .filter-container {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-information {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons-container {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons-container.open {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons-dropdown {
|
|
|
|
z-index: 99;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons {
|
|
|
|
margin-right: 0px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
padding-top: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-link {
|
|
|
|
background: unset;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-link span {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-icon {
|
|
|
|
height: 20px;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-icon path {
|
|
|
|
fill: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons-dropdown.active {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-by.active:after {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
#top-menu div.mobile-menu {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2023-05-02 18:05:23 +00:00
|
|
|
#top-menu .login-link {
|
|
|
|
display: none;
|
2022-01-13 11:33:40 +00:00
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
.hamburger {
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
position: relative;
|
|
|
|
z-index: 3;
|
2022-06-14 14:23:54 +00:00
|
|
|
cursor: pointer;
|
2022-01-13 11:33:40 +00:00
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-04-07 16:18:32 +00:00
|
|
|
.hamburger.opened {
|
|
|
|
position: fixed;
|
2022-06-14 14:23:54 +00:00
|
|
|
margin-top: 3px;
|
2022-04-07 16:18:32 +00:00
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
.drawer {
|
|
|
|
display: block;
|
|
|
|
position: fixed;
|
|
|
|
background: white;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2022-06-14 14:23:54 +00:00
|
|
|
height: 100%;
|
2022-01-13 11:33:40 +00:00
|
|
|
width: 0;
|
|
|
|
z-index: 2;
|
|
|
|
transition: 0.2s all ease-in-out;
|
|
|
|
padding-top: 120px;
|
2022-04-13 18:36:01 +00:00
|
|
|
border-right: 1px solid;
|
2022-06-14 14:23:54 +00:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: scroll;
|
2022-01-13 11:33:40 +00:00
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:04:33 +00:00
|
|
|
.drawer * {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: none;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:04:33 +00:00
|
|
|
#top-menu .drawer ul {
|
2022-01-13 11:33:40 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 14px;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-01-13 11:04:33 +00:00
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-04-13 07:21:20 +00:00
|
|
|
#top-menu ul.submenu {
|
|
|
|
position: initial;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
.drawer ul li {
|
2022-01-13 11:04:33 +00:00
|
|
|
padding: 1em 0;
|
2022-01-13 11:33:40 +00:00
|
|
|
/* border-bottom: 1px solid #333; */
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.drawer ul > li:last-child {
|
|
|
|
padding-bottom: 2em;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
.drawer ul li a {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: lowercase;
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:04:33 +00:00
|
|
|
.drawer.opened {
|
2022-01-13 11:33:40 +00:00
|
|
|
width: 80%;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
.drawer.opened * {
|
2022-01-13 11:04:33 +00:00
|
|
|
display: block;
|
2022-01-13 11:33:40 +00:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
/* Landingpage */
|
|
|
|
.app-column {
|
|
|
|
width: 33%;
|
|
|
|
padding: 2.5%;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
/* Landingpage */
|
|
|
|
.f-main {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.f-column {
|
|
|
|
margin-right: 0vw;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.f-column:nth-child(1), .f-column:nth-child(2){
|
|
|
|
margin-bottom: 45px;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.f-main .logo {
|
|
|
|
max-width: unset;
|
|
|
|
}
|
2023-05-02 18:05:23 +00:00
|
|
|
|
|
|
|
/* EVENT LIST */
|
|
|
|
|
|
|
|
.event-list .event-list-item:nth-child(2n) {
|
|
|
|
background: #c8efff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .date-start {
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .title {
|
|
|
|
width: calc(100% - 110px);
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .time {
|
|
|
|
width: 100%;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
border-right: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .duration, .event-list-item .location {
|
|
|
|
width: 42%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list-item .calendar {
|
|
|
|
width: 16%;
|
|
|
|
}
|
|
|
|
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* mobile styles */
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
2022-01-13 11:33:40 +00:00
|
|
|
/* card styles */
|
2022-01-20 12:14:40 +00:00
|
|
|
.card,
|
|
|
|
.card.network {
|
|
|
|
max-width: 83vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-20 12:14:40 +00:00
|
|
|
.card .summary-text {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-size: 17px;
|
2022-01-20 12:14:40 +00:00
|
|
|
min-width: 30ch;
|
2022-01-13 11:33:40 +00:00
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-01-20 12:14:40 +00:00
|
|
|
.card h2 a {
|
2022-01-13 11:33:40 +00:00
|
|
|
font-size: 26px;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
/* Landingpage */
|
|
|
|
.app-column {
|
|
|
|
width: 50%;
|
|
|
|
padding: 2.5%;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
/* Timeline Tags */
|
|
|
|
.timeline-tags {
|
|
|
|
font-size: 3vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
/* Timeline Container and Line */
|
|
|
|
.timeline-start {
|
|
|
|
font-size: 5vw;
|
|
|
|
padding: 1.5vw 0 9vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.timeline-line {
|
|
|
|
height: calc(100% - 18vw);
|
|
|
|
top: 18vw;
|
|
|
|
width: 25vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.timeline-line-head {
|
|
|
|
height: 18.5vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.timeline-line-body {
|
|
|
|
height: calc(100% - 18.2vw);
|
|
|
|
top: 18.2vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
/* Timeline Events and Position */
|
|
|
|
.timeline-events {
|
|
|
|
padding-top: 15vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.timeline-event {
|
|
|
|
width: 30vw;
|
|
|
|
height: 35vw;
|
|
|
|
margin-top: -12vw !important;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.timeline-url {
|
|
|
|
font-size: 3.4vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.link-svg {
|
|
|
|
height: 2.4vw;
|
|
|
|
width: 2.4vw;
|
|
|
|
margin-left: 1.6vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
/* Timeline Events - Left Side (sort margin)*/
|
|
|
|
.timeline-event:nth-child(36n + 7), .timeline-event:nth-child(36n + 9), .timeline-event:nth-child(36n + 33) {
|
|
|
|
margin-left: 1vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.timeline-event:nth-child(36n + 1), .timeline-event:nth-child(36n + 3), .timeline-event:nth-child(36n + 15), .timeline-event:nth-child(36n + 21), .timeline-event:nth-child(36n + 11), .timeline-event:nth-child(36n + 17), .timeline-event:nth-child(36n + 23), .timeline-event:nth-child(36n + 27) {
|
|
|
|
margin-left: 2vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.timeline-event:nth-child(3), .timeline-event:nth-child(36n + 5), .timeline-event:nth-child(36n + 13), .timeline-event:nth-child(36n + 19), .timeline-event:nth-child(36n + 29), .timeline-event:nth-child(36n + 25), .timeline-event:nth-child(36n + 35) {
|
|
|
|
margin-left: -3vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
/* Timeline Events - Right Side */
|
|
|
|
.timeline-event:nth-child(2n) {
|
|
|
|
margin-right: -5vw;
|
2022-12-19 08:20:54 +00:00
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.timeline-event:nth-child(36n + 8), .timeline-event:nth-child(36n + 24) {
|
|
|
|
margin-right: -6vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-06-14 14:23:54 +00:00
|
|
|
.timeline-event:nth-child(36n + 26) {
|
|
|
|
margin-right: -8vw;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
2022-04-13 18:33:09 +00:00
|
|
|
.pagination-container {
|
|
|
|
width: 71vw;
|
|
|
|
margin: 2em 0;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
|
2022-04-13 18:33:09 +00:00
|
|
|
.pagination .page-item {
|
|
|
|
font-size: 26px;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 960px) {
|
2022-04-13 06:32:52 +00:00
|
|
|
.menu ul:first-child {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2022-12-19 08:23:44 +00:00
|
|
|
}
|