863 lines
No EOL
20 KiB
CSS
863 lines
No EOL
20 KiB
CSS
@charset "UTF-8";
|
|
body,
|
|
html,
|
|
dl,
|
|
dt,
|
|
dd {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
button {
|
|
border: none;
|
|
background-color: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
p,
|
|
a,
|
|
figcaption {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-weight: normal;
|
|
font-size: inherit;
|
|
}
|
|
|
|
ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
li {
|
|
list-style-type: none;
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
-o-object-fit: contain;
|
|
object-fit: contain;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
blockquote {
|
|
margin: 0;
|
|
}
|
|
|
|
main {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Bartok";
|
|
src: url("../fonts/BartokTrial-Regular.otf") format("opentype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "Bartok";
|
|
src: url("../fonts/BartokTrial-Poster.otf") format("opentype");
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "Bartok";
|
|
src: url("../fonts/BartokTrial-Highlight.otf") format("opentype");
|
|
font-weight: 900;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "SancySlab";
|
|
src: url("../fonts/SancySlabUnlicensedTrial-Regular.otf") format("opentype");
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "SancySlab";
|
|
src: url("../fonts/SancySlabUnlicensedTrial-Medium.otf") format("opentype");
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "SancySlab";
|
|
src: url("/assets/fonts/for-sancyslabunlicensedtrial-italic.otf") format("opentype");
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: "SancySlab";
|
|
src: url("/assets/fonts/for-sancyslabunlicensedtrial-light.otf") format("opentype");
|
|
font-weight: 200;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "SancySlab";
|
|
src: url("/assets/fonts/for-sancyslabunlicensedtrial-lightitalic.otf") format("opentype");
|
|
font-weight: 200;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: "SancySlab";
|
|
src: url("/assets/fonts/for-sancyslabunlicensedtrial-thin.otf") format("opentype");
|
|
font-weight: 100;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "SancySlab";
|
|
src: url("/assets/fonts/for-sancyslabunlicensedtrial-thinitalic.otf") format("opentype");
|
|
font-weight: 100;
|
|
font-style: italic;
|
|
}
|
|
:root {
|
|
--color-green: #04c793;
|
|
--color-beige: #f3f0e7;
|
|
--color-grey: #a1a1bb;
|
|
--glow-green: var(--color-green) 0px 0px 30px;
|
|
--radius: 1.1rem;
|
|
--border-width: 2px;
|
|
--border: var(--border-width) solid #000;
|
|
--space-body: 1rem;
|
|
--main-block-width: 80rem;
|
|
--curve: cubic-bezier(0.65, 0, 0.35, 1);
|
|
--font-sans-serif: "Bartok", sans-serif;
|
|
--font-serif: "SancySlab", serif;
|
|
--font-size-S: 1rem;
|
|
--letter-space-large: 0.1em;
|
|
--font-size-M: 1.8rem;
|
|
--font-size-L: 3rem;
|
|
--font-size-XL: 8rem;
|
|
--line-height-M: calc(var(--font-size-M) * 1.2);
|
|
--line-height-XL: 8rem;
|
|
--transition-duration: 0.5s;
|
|
}
|
|
|
|
article p {
|
|
font-size: var(--font-size-M);
|
|
line-height: var(--line-height-M);
|
|
}
|
|
article p:not(:last-child) {
|
|
margin-bottom: var(--line-height-M);
|
|
}
|
|
|
|
html {
|
|
scrollbar-width: thin; /* Options: auto, thin, none */
|
|
scrollbar-color: #c5c5c5 var(--color-beige); /* thumb color and track color */
|
|
}
|
|
html::-webkit-scrollbar {
|
|
width: 5px; /* Width of the scrollbar for WebKit browsers */
|
|
}
|
|
html::-webkit-scrollbar-track {
|
|
background: var(--color-beige); /* Track background color */
|
|
}
|
|
html::-webkit-scrollbar-thumb {
|
|
background-color: #c5c5c5; /* Thumb color */
|
|
border-radius: 2px; /* Rounded corners for the thumb */
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-serif);
|
|
background-color: var(--color-green);
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
picture {
|
|
display: block;
|
|
}
|
|
|
|
summary {
|
|
cursor: pointer;
|
|
}
|
|
|
|
main {
|
|
margin-bottom: 25rem;
|
|
}
|
|
|
|
.label-tab {
|
|
font-size: 1rem;
|
|
width: -moz-fit-content;
|
|
width: fit-content;
|
|
padding: 1.5rem 0.9rem 0.5rem 0.9rem;
|
|
margin-top: -1rem;
|
|
border-radius: 0 0 0.5rem 0.5rem;
|
|
font-family: "SancySlab", serif;
|
|
}
|
|
|
|
.label-tab--active {
|
|
background-color: var(--color-beige);
|
|
color: #000;
|
|
border: var(--border);
|
|
}
|
|
|
|
.label-tab:not(.label-tab--active) {
|
|
background-color: #000;
|
|
color: #fff;
|
|
}
|
|
|
|
.background-white {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.background-grey {
|
|
background-color: var(--color-beige);
|
|
}
|
|
|
|
.view-buttons {
|
|
display: flex;
|
|
gap: 4rem;
|
|
box-sizing: border-box;
|
|
margin: 3rem 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
}
|
|
.view-buttons li button {
|
|
font-family: var(--font-sans-serif);
|
|
font-size: 1.2rem;
|
|
font-weight: 800;
|
|
padding: 0.3rem 0.7rem;
|
|
border-radius: 0.5rem;
|
|
border: var(--border);
|
|
box-shadow: inset 0 0 0px 0 0 var(--color-green);
|
|
transition: box-shadow 0.2s ease-in-out;
|
|
}
|
|
.view-buttons li button.active {
|
|
box-shadow: inset 0 0 3px 1px var(--color-green);
|
|
}
|
|
|
|
.main-header {
|
|
position: sticky;
|
|
top: 0;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
z-index: 4;
|
|
background-color: var(--color-beige);
|
|
padding: 0 2rem;
|
|
border-right: var(--border);
|
|
border-left: var(--border);
|
|
border-bottom: var(--border);
|
|
border-radius: 0 0 var(--radius) var(--radius);
|
|
font-family: var(--font-sans-serif);
|
|
font-size: var(--font-size-L);
|
|
font-weight: 900;
|
|
text-align: center;
|
|
}
|
|
.main-header .logo-menu {
|
|
font-family: var(--font-sans-serif);
|
|
font-weight: 700;
|
|
line-height: 0.8em;
|
|
text-transform: uppercase;
|
|
display: none;
|
|
}
|
|
.main-header nav ul {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.main-header nav ul li {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.main-header nav ul li a {
|
|
font-weight: 900;
|
|
}
|
|
.main-header nav ul li.characters {
|
|
flex: 0 0 200px;
|
|
justify-content: center;
|
|
}
|
|
.main-header nav ul li.characters svg {
|
|
width: var(--char-size);
|
|
height: auto;
|
|
}
|
|
.main-header .top {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: 0 var(--space-body);
|
|
z-index: 2;
|
|
position: relative;
|
|
}
|
|
.main-header .logo {
|
|
width: calc(100% - 2 * var(--space-body));
|
|
display: none;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
position: absolute;
|
|
font-family: var(--font-sans-serif);
|
|
font-size: 6rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
line-height: 0.8;
|
|
z-index: -1;
|
|
transform: translateY(var(--logo-offset));
|
|
}
|
|
.main-header.menu-transitioning .logo {
|
|
transition: transform 0.5s var(--curve);
|
|
}
|
|
.main-header .header-menu not * {
|
|
font-weight: 600;
|
|
text-align: center;
|
|
}
|
|
.main-header .header-menu h1 {
|
|
font-size: 4rem;
|
|
}
|
|
.main-header .header-menu nav ul {
|
|
position: absolute;
|
|
width: 100%;
|
|
margin-top: 2rem;
|
|
font-size: 2rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.main-header .header-menu nav ul li:not(:last-child) {
|
|
width: -moz-fit-content;
|
|
width: fit-content;
|
|
position: relative;
|
|
}
|
|
.main-header .header-menu nav ul li:not(:last-child) hr {
|
|
width: 5rem;
|
|
height: 1px;
|
|
background-color: #fff;
|
|
}
|
|
.main-header .header-menu nav ul li:last-child hr {
|
|
display: none;
|
|
}
|
|
|
|
@media (max-width: 700px) {
|
|
.main-header nav {
|
|
display: none;
|
|
opacity: 0;
|
|
}
|
|
.main-header.open {
|
|
height: 100%;
|
|
transition-duration: 1s;
|
|
border-bottom: 0;
|
|
border-radius: 0;
|
|
}
|
|
.main-header.open .logo {
|
|
padding-top: 5vh;
|
|
margin-top: inherit;
|
|
display: block;
|
|
}
|
|
.main-header.open .card {
|
|
height: 100%;
|
|
}
|
|
.main-header.open nav {
|
|
display: block;
|
|
opacity: 1;
|
|
transition-duration: 0.1s;
|
|
position: absolute;
|
|
width: 100%;
|
|
z-index: 1;
|
|
bottom: 0;
|
|
top: 50vh;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
font-size: 1.5em;
|
|
}
|
|
.main-header.open nav ul {
|
|
display: block;
|
|
}
|
|
.main-header button.toggle-nav {
|
|
display: block;
|
|
}
|
|
}
|
|
@keyframes flip {
|
|
0% {
|
|
transform: rotateX(0deg);
|
|
}
|
|
100% {
|
|
transform: rotateX(1800deg);
|
|
}
|
|
}
|
|
[data-template=home] {
|
|
background-color: var(--color-beige);
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
[data-template=home] nav {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
[data-template=home] nav ul {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
height: 100vh;
|
|
box-sizing: border-box;
|
|
padding: 1rem;
|
|
}
|
|
[data-template=home] nav ul li:nth-child(2) {
|
|
justify-self: flex-end;
|
|
}
|
|
[data-template=home] nav ul li:nth-child(3) {
|
|
align-self: flex-end;
|
|
}
|
|
[data-template=home] nav ul li:nth-child(4) {
|
|
justify-self: flex-end;
|
|
align-self: flex-end;
|
|
}
|
|
[data-template=home] nav ul li a {
|
|
font-size: 3rem;
|
|
font-family: var(--font-sans-serif);
|
|
font-weight: 800;
|
|
}
|
|
[data-template=home] .mention {
|
|
position: absolute;
|
|
bottom: 1.7rem;
|
|
width: 100%;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
}
|
|
[data-template=home] .identity {
|
|
position: relative;
|
|
height: 100vh;
|
|
width: 100%;
|
|
transform-style: preserve-3d;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 2;
|
|
pointer-events: none;
|
|
}
|
|
[data-template=home] .identity svg {
|
|
pointer-events: all;
|
|
}
|
|
[data-template=home] .identity .outfit {
|
|
position: absolute;
|
|
width: 85%;
|
|
height: 85%;
|
|
-o-object-fit: contain;
|
|
object-fit: contain;
|
|
transform-origin: center center;
|
|
transform-style: preserve-3d;
|
|
opacity: 0;
|
|
transform: translateY(0);
|
|
}
|
|
[data-template=home] .identity .outfit.active {
|
|
opacity: 1;
|
|
}
|
|
[data-template=home] .identity[data-mode=flip] .outfit {
|
|
transition: opacity 0.01s ease-in-out, width 0.7s var(--curve), transform 0.7s var(--curve) 0.2s;
|
|
animation: flip 3s var(--curve);
|
|
}
|
|
[data-template=home] .identity[data-mode=fade] .outfit {
|
|
transition: width 0.7s var(--curve), transform 0.7s var(--curve) 0.2s;
|
|
}
|
|
[data-template=home] #log-angle {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
padding: 1rem;
|
|
background-color: #fff;
|
|
}
|
|
[data-template=home] .logo {
|
|
position: absolute;
|
|
transform: translateY(-100vh);
|
|
transition: transform 1s var(--curve);
|
|
font-family: var(--font-sans-serif);
|
|
font-weight: 700;
|
|
letter-spacing: -0.03em;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
font-size: 15rem;
|
|
line-height: 0.8;
|
|
}
|
|
[data-template=home][data-animation-state=finished] .identity .logo {
|
|
transform: translateY(-18vh);
|
|
}
|
|
[data-template=home][data-animation-state=finished] .identity .outfit {
|
|
width: 36rem;
|
|
transform: translateY(18vh);
|
|
}
|
|
|
|
[data-template=events] main {
|
|
margin-top: -2px;
|
|
}
|
|
[data-template=events] main .events-grid-container {
|
|
box-sizing: border-box;
|
|
padding: 0 2rem 4rem 2rem;
|
|
width: 100%;
|
|
background-color: var(--color-beige);
|
|
border-radius: var(--radius);
|
|
border: var(--border);
|
|
}
|
|
[data-template=events] main .events-grid-container .events-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
align-items: flex-end;
|
|
-moz-column-gap: 2rem;
|
|
column-gap: 2rem;
|
|
row-gap: 4rem;
|
|
}
|
|
[data-template=events] main .events-grid-container .events-grid .event-card h2 {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
padding: 0 2rem;
|
|
text-align: center;
|
|
font-family: "SancySlab", serif;
|
|
font-size: 3rem;
|
|
font-weight: 400;
|
|
line-height: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: flex-end;
|
|
}
|
|
[data-template=events] main .events-grid-container .events-grid .event-card .cover-wrapper {
|
|
position: relative;
|
|
overflow: hidden;
|
|
margin-top: 1rem;
|
|
aspect-ratio: 3/2;
|
|
}
|
|
[data-template=events] main .events-grid-container .events-grid .event-card .cover-wrapper .playing-now {
|
|
position: absolute;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 70px;
|
|
text-align: center;
|
|
background-color: var(--color-green);
|
|
border-radius: 100px;
|
|
border: var(--border);
|
|
height: 70px;
|
|
transform: rotate(-28deg);
|
|
margin: 0.5rem;
|
|
/* padding: -0.1rem 0 0.1rem 0; */
|
|
padding: 0 0.15rem 0.3rem 0.15rem;
|
|
line-height: 1;
|
|
}
|
|
[data-template=events] main .events-grid-container .events-grid .event-card .cover-wrapper .playing-now p {
|
|
width: -moz-max-content;
|
|
width: max-content;
|
|
padding: 0.2rem 0.5rem;
|
|
font-family: var(--font-serif);
|
|
}
|
|
[data-template=events] main .events-grid-container .events-grid .event-card .cover-wrapper .hover-glow {
|
|
position: absolute;
|
|
inset: 0;
|
|
box-shadow: inset 0 0 0px 0 0 var(--color-green);
|
|
border-radius: 0.8rem;
|
|
transition: box-shadow 0.2s ease-in-out;
|
|
}
|
|
[data-template=events] main .events-grid-container .events-grid .event-card .cover-wrapper picture img {
|
|
border-radius: 0.8rem;
|
|
}
|
|
[data-template=events] main .events-grid-container .events-grid .event-card:hover .hover-glow {
|
|
box-shadow: inset 0 0 7px 5px var(--color-green);
|
|
}
|
|
|
|
[data-template=event] main h1 {
|
|
width: var(--main-block-width);
|
|
max-width: 100%;
|
|
padding-top: 4rem;
|
|
padding-bottom: var(--line-height-M);
|
|
margin: auto;
|
|
font-size: var(--font-size-XL);
|
|
text-align: center;
|
|
line-height: var(--line-height-XL);
|
|
}
|
|
[data-template=event] main .main-credits {
|
|
text-align: center;
|
|
margin: 2rem auto;
|
|
display: flex;
|
|
width: var(--main-block-width);
|
|
max-width: 100%;
|
|
justify-content: center;
|
|
gap: 4vw;
|
|
flex-wrap: wrap;
|
|
}
|
|
[data-template=event] main .main-credits dl {
|
|
width: 25vw;
|
|
padding-bottom: 0.5em;
|
|
}
|
|
[data-template=event] main .main-credits dl dt {
|
|
text-transform: uppercase;
|
|
font-size: var(--font-size-S);
|
|
letter-spacing: var(--letter-space-large);
|
|
}
|
|
[data-template=event] main .main-credits dl dd {
|
|
font-size: var(--font-size-L);
|
|
}
|
|
[data-template=event] main article {
|
|
box-sizing: border-box;
|
|
width: var(--main-block-width);
|
|
max-width: 100%;
|
|
margin: 0 auto;
|
|
padding: var(--line-height-M);
|
|
}
|
|
[data-template=event] main article p {
|
|
font-size: 1.8rem;
|
|
font-weight: 200;
|
|
line-height: 1.2;
|
|
}
|
|
[data-template=event] main details {
|
|
font-size: var(--font-size-M);
|
|
border: var(--border);
|
|
border-radius: var(--radius);
|
|
padding: 1.5rem 2rem;
|
|
margin-bottom: calc(-1 * var(--radius) * 2);
|
|
}
|
|
[data-template=event] main details summary {
|
|
list-style: none;
|
|
padding: 0 2rem 1rem 2rem;
|
|
text-align: center;
|
|
font-family: var(--font-sans-serif);
|
|
font-weight: 800;
|
|
font-size: var(--font-size-L);
|
|
scroll-margin-top: 8rem;
|
|
}
|
|
[data-template=event] main details summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
[data-template=event] main details::before {
|
|
content: "→";
|
|
position: absolute;
|
|
font-size: var(--font-size-L);
|
|
pointer-events: none;
|
|
}
|
|
[data-template=event] main details::marker {
|
|
list-style: none;
|
|
}
|
|
[data-template=event] main details:open::before {
|
|
content: "↓";
|
|
position: absolute;
|
|
font-size: var(--font-size-L);
|
|
pointer-events: none;
|
|
}
|
|
[data-template=event] main details:open {
|
|
padding-bottom: 4rem;
|
|
}
|
|
[data-template=event] main details:open summary {
|
|
padding-bottom: 2.5rem;
|
|
}
|
|
[data-template=event] main details.secondary-credits {
|
|
background-color: var(--color-green);
|
|
}
|
|
[data-template=event] main details.secondary-credits .wrapper {
|
|
text-align: center;
|
|
}
|
|
[data-template=event] main details.secondary-credits .wrapper p:not(:last-child) {
|
|
margin-bottom: 2rem;
|
|
}
|
|
[data-template=event] main details.dates {
|
|
background-color: var(--color-beige);
|
|
}
|
|
[data-template=event] main details.dates ul {
|
|
width: 40rem;
|
|
margin: auto;
|
|
text-align: center;
|
|
}
|
|
[data-template=event] main details.dates ul li {
|
|
padding-bottom: 2rem;
|
|
}
|
|
[data-template=event] main details.dates a.button-link {
|
|
border-radius: var(--radius);
|
|
border: var(--border);
|
|
padding: 0.5rem 1rem;
|
|
margin-top: var(--line-height-M);
|
|
display: block;
|
|
width: -moz-fit-content;
|
|
width: fit-content;
|
|
margin: auto;
|
|
}
|
|
[data-template=event] main details.presse {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
[data-template=event] main details.presse .quotes {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 4rem;
|
|
}
|
|
[data-template=event] main details.presse .quotes .quote {
|
|
text-align: center;
|
|
}
|
|
[data-template=event] main details.presse .quotes .quote blockquote {
|
|
margin-bottom: 2rem;
|
|
font-size: 2rem;
|
|
}
|
|
[data-template=event] main details.presse .quotes .quote blockquote::before {
|
|
content: "«";
|
|
}
|
|
[data-template=event] main details.presse .quotes .quote blockquote::after {
|
|
content: "»";
|
|
}
|
|
[data-template=event] main details.presse .quotes .quote cite {
|
|
font-style: normal;
|
|
font-size: var(--font-size-S);
|
|
text-transform: uppercase;
|
|
letter-spacing: var(--letter-space-large);
|
|
}
|
|
|
|
[data-template=agenda] main {
|
|
background-color: transparent;
|
|
}
|
|
[data-template=agenda] main .dates-container [data-view=events] ul li {
|
|
padding-bottom: 2rem;
|
|
}
|
|
[data-template=agenda] main .dates-container .month-switcher {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
font-size: var(--font-size-L);
|
|
border: var(--border);
|
|
padding-bottom: 2rem;
|
|
border-radius: var(--radius);
|
|
background-color: var(--color-beige);
|
|
}
|
|
[data-template=agenda] main .dates-container .month-switcher .month-label {
|
|
margin: 2rem;
|
|
}
|
|
[data-template=agenda] main .dates-container .month-switcher button {
|
|
font-size: inherit;
|
|
font-family: var(--font-serif);
|
|
}
|
|
[data-template=agenda] main .dates-container .month {
|
|
text-align: center;
|
|
margin: 4rem auto;
|
|
}
|
|
[data-template=agenda] main .dates-container .month .event {
|
|
margin: -6.3rem 0;
|
|
padding-bottom: 8rem;
|
|
border: var(--border);
|
|
border-radius: var(--radius);
|
|
background-color: var(--color-beige);
|
|
}
|
|
[data-template=agenda] main .dates-container .month .event h4 {
|
|
font-size: var(--font-size-XL);
|
|
line-height: var(--line-height-XL);
|
|
font-weight: normal;
|
|
padding: 4rem;
|
|
margin: auto;
|
|
box-sizing: border-box;
|
|
width: var(--main-block-width);
|
|
max-width: 100%;
|
|
}
|
|
[data-template=agenda] main .dates-container .month .event .dates {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
[data-template=agenda] main .dates-container .month .event .dates .date {
|
|
margin: 2rem;
|
|
margin-bottom: 4rem;
|
|
font-size: var(--font-size-L);
|
|
}
|
|
[data-template=agenda] main .dates-container .month .event .dates .date .date-range {
|
|
font-size: var(--font-size-XL);
|
|
line-height: var(--line-height-XL);
|
|
margin-bottom: var(--line-height-M);
|
|
}
|
|
[data-template=agenda] main .dates-container .month .event .dates .date .date-place {
|
|
text-wrap: balance;
|
|
}
|
|
[data-template=agenda] main .dates-container .month .event .dates .date a {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.gallery {
|
|
position: relative;
|
|
width: 100%;
|
|
height: calc(100vh - 6rem);
|
|
overflow: hidden;
|
|
background-color: #000;
|
|
}
|
|
.gallery .slides .slide {
|
|
width: 100vw;
|
|
height: 100%;
|
|
position: absolute;
|
|
transition: all 1s cubic-bezier(0.22, 1.15, 0.36, 1);
|
|
}
|
|
.gallery .slides .slide.active, .gallery .slides .slide.previous {
|
|
left: 0vw;
|
|
top: 0vw;
|
|
}
|
|
.gallery .slides .slide.next.right {
|
|
left: 100vw;
|
|
}
|
|
.gallery .slides .slide.next.top {
|
|
top: -100vh;
|
|
}
|
|
.gallery .slides .slide.next.bottom {
|
|
top: 100vh;
|
|
}
|
|
.gallery .slides .slide picture {
|
|
height: 100%;
|
|
}
|
|
.gallery .slides .slide picture img {
|
|
border-radius: 0;
|
|
height: 100%;
|
|
-o-object-fit: cover;
|
|
object-fit: cover;
|
|
}
|
|
.gallery .slides .slide[data-orientation=portrait] {
|
|
width: 50%;
|
|
}
|
|
.gallery .slides .slide[data-orientation=portrait] + .slide[data-orientation=portrait].active, .gallery .slides .slide[data-orientation=portrait] + .slide[data-orientation=portrait].previous {
|
|
left: 50%;
|
|
}
|
|
@media (max-width: 799px) {
|
|
.gallery .slides .slide[data-orientation=landscape] {
|
|
width: 50%;
|
|
}
|
|
.gallery .slides .slide[data-orientation=landscape] + .slide[data-orientation=landscape].active, .gallery .slides .slide[data-orientation=landscape] + .slide[data-orientation=landscape].previous {
|
|
left: 50%;
|
|
}
|
|
}
|
|
|
|
.main-footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 0;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 3rem var(--space-body);
|
|
padding-top: 8rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 2.5rem;
|
|
}
|
|
.main-footer .logo {
|
|
font-family: var(--font-sans-serif);
|
|
font-size: var(--font-size-XL);
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
line-height: 0.85;
|
|
text-align: center;
|
|
}
|
|
.main-footer nav ul {
|
|
display: flex;
|
|
gap: 3rem;
|
|
font-family: var(--font-sans-serif);
|
|
font-size: var(--font-size-S);
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
}
|
|
.main-footer .legal {
|
|
font-size: 0.7rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: var(--letter-space-large);
|
|
}/*# sourceMappingURL=style.css.map */ |