This commit is contained in:
parent
d7ee041dae
commit
df0f385179
5 changed files with 763 additions and 16 deletions
|
|
@ -29,7 +29,7 @@ jobs:
|
|||
cat > /tmp/lftp-script.txt <<SCRIPT
|
||||
set ftp:ssl-allow no
|
||||
open -u $USERNAME,$PASSWORD $HOST
|
||||
mirror --reverse --verbose --ignore-time --parallel=10 -x local/ assets assets
|
||||
mirror --reverse --verbose --ignore-time --parallel=10 -x local/ -x *.scss -x src/ assets assets
|
||||
mirror --reverse --verbose --ignore-time --parallel=10 -x accounts/ -x cache/ -x sessions/ site site
|
||||
mirror --reverse --verbose --ignore-time --parallel=10 kirby kirby
|
||||
mirror --reverse --verbose --ignore-time --parallel=10 content content
|
||||
|
|
|
|||
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -61,11 +61,6 @@ CLAUDE.md
|
|||
content
|
||||
content/*
|
||||
|
||||
# CSS
|
||||
# ---------------
|
||||
assets/css/style.css
|
||||
assets/css/style.css.map
|
||||
|
||||
# Dependencies
|
||||
# ---------------
|
||||
kirby
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
[data-template="events"] {
|
||||
main {
|
||||
.events-grid {
|
||||
box-sizing: border-box;
|
||||
padding: 0 2rem;
|
||||
padding-top: 9rem;
|
||||
width: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
align-items: flex-end;
|
||||
gap: 2rem;
|
||||
|
||||
box-sizing: border-box;
|
||||
padding: 0 2rem;
|
||||
padding-top: 9rem;
|
||||
width: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
align-items: flex-end;
|
||||
gap: 2rem;
|
||||
|
||||
.event-card {
|
||||
h2 {
|
||||
|
|
@ -45,7 +44,6 @@
|
|||
border-top-left-radius: var(--border-radius);
|
||||
border-top-right-radius: var(--border-radius);
|
||||
|
||||
|
||||
p {
|
||||
width: max-content;
|
||||
padding: 0.2rem 0.5rem;
|
||||
|
|
|
|||
753
assets/css/style.css
Normal file
753
assets/css/style.css
Normal file
|
|
@ -0,0 +1,753 @@
|
|||
@charset "UTF-8";
|
||||
* {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Bartok";
|
||||
src: url("../fonts/BartokTrial-Regular.otf") format("opentype");
|
||||
font-weight: 400;
|
||||
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;
|
||||
}
|
||||
:root {
|
||||
--color-green: #0bb786;
|
||||
--color-beige: #f3f0e7;
|
||||
--color-grey: #a1a1bb;
|
||||
--glow-green: var(--color-green) 0px 0px 30px;
|
||||
--radius: 1.1rem;
|
||||
--border: 2px solid #000;
|
||||
--border-radius: 10px;
|
||||
--space-body: 1rem;
|
||||
--curve: cubic-bezier(0.65, 0, 0.35, 1);
|
||||
--font-sans-serif: "Bartok", sans-serif;
|
||||
--font-serif: "SancySlab", serif;
|
||||
--font-size-S: 0.8rem;
|
||||
--font-size-M: 1.6rem;
|
||||
--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);
|
||||
}
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
img {
|
||||
display: block;
|
||||
border-radius: var(--border-radius);
|
||||
}
|
||||
|
||||
picture {
|
||||
display: block;
|
||||
}
|
||||
|
||||
summary {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.bottom-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;
|
||||
}
|
||||
|
||||
.bottom-tab--invert {
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.bottom-tab:not(.bottom-tab--invert) {
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.main-header {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
z-index: 4;
|
||||
font-size: var(--font-size-L);
|
||||
font-family: var(--font-serif);
|
||||
}
|
||||
.main-header .logo-menu {
|
||||
font-family: var(--font-sans-serif);
|
||||
font-weight: 700;
|
||||
line-height: 0.8em;
|
||||
text-transform: uppercase;
|
||||
display: none;
|
||||
}
|
||||
.main-header.small .characters {
|
||||
margin-top: -6.3em;
|
||||
padding-bottom: 1em;
|
||||
transition-duration: var(--transition-duration);
|
||||
}
|
||||
.main-header nav ul {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.main-header .top {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding: 0 var(--space-body);
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
}
|
||||
.main-header .top button {
|
||||
display: none;
|
||||
font-family: var(--font-serif);
|
||||
font-size: var(--font-size-L);
|
||||
}
|
||||
.main-header .characters {
|
||||
scale: var(--scale);
|
||||
margin-top: 1em;
|
||||
transition-duration: var(--transition-duration);
|
||||
}
|
||||
.main-header .characters svg {
|
||||
overflow: visible;
|
||||
height: 5em;
|
||||
}
|
||||
.main-header .characters svg #left-character-background,
|
||||
.main-header .characters svg #right-character-background path,
|
||||
.main-header .characters svg [id*=pupil] circle {
|
||||
fill: var(--color-beige) !important;
|
||||
}
|
||||
.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 .card {
|
||||
background-color: var(--color-beige);
|
||||
position: relative;
|
||||
inset: 0;
|
||||
z-index: 1;
|
||||
padding: 2rem;
|
||||
border-right: var(--border);
|
||||
border-left: var(--border);
|
||||
border-bottom: var(--border);
|
||||
border-radius: 0 0 var(--border-radius) var(--border-radius);
|
||||
}
|
||||
.main-header.menu-transitioning .logo {
|
||||
transition: transform 0.5s var(--curve);
|
||||
}
|
||||
.main-header.menu-transitioning .characters {
|
||||
transition: margin-top 0.5s var(--curve);
|
||||
}
|
||||
.main-header.menu-transitioning .characters svg {
|
||||
transition: width 0.5s var(--curve), height 0.5s var(--curve);
|
||||
}
|
||||
.main-header .filters {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 0.7rem;
|
||||
bottom: -2.5rem;
|
||||
}
|
||||
.main-header .filters button {
|
||||
transform: translateY(0rem);
|
||||
transition: background-color 0.2s var(--curve), transform 0.3s var(--curve);
|
||||
}
|
||||
.main-header .filters button:hover {
|
||||
transform: translateY(0.5rem) !important;
|
||||
}
|
||||
.main-header .filters button.active {
|
||||
transform: translateY(0rem);
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
outline: 2px solid var(--color-beige);
|
||||
}
|
||||
.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,
|
||||
.main-header.open .characters {
|
||||
padding-top: 5vh;
|
||||
margin-top: inherit;
|
||||
display: block;
|
||||
}
|
||||
.main-header.open .characters svg {
|
||||
height: auto;
|
||||
margin-top: 3.5em;
|
||||
}
|
||||
.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;
|
||||
z-index: 2;
|
||||
}
|
||||
[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: 4rem;
|
||||
}
|
||||
[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;
|
||||
}
|
||||
[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: opacity 0.08s ease-in-out, 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 .events-grid {
|
||||
box-sizing: border-box;
|
||||
padding: 0 2rem;
|
||||
padding-top: 9rem;
|
||||
width: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
align-items: flex-end;
|
||||
gap: 2rem;
|
||||
}
|
||||
[data-template=events] main .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;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: flex-end;
|
||||
}
|
||||
[data-template=events] main .events-grid .event-card .cover-wrapper {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
[data-template=events] main .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: auto;
|
||||
text-align: center;
|
||||
background-color: black;
|
||||
color: white;
|
||||
border-top-left-radius: var(--border-radius);
|
||||
border-top-right-radius: var(--border-radius);
|
||||
}
|
||||
[data-template=events] main .events-grid .event-card .cover-wrapper .playing-now p {
|
||||
width: -moz-max-content;
|
||||
width: max-content;
|
||||
padding: 0.2rem 0.5rem;
|
||||
font-family: "Bartok", sans-serif;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
[data-template=event] main .main-infos {
|
||||
display: none;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
margin-top: -0.2rem;
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
border-radius: 0 0 var(--radius) var(--radius);
|
||||
padding: 1rem;
|
||||
}
|
||||
[data-template=event] main .main-infos ul {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
[data-template=event] main .main-infos ul li {
|
||||
font-size: 1rem;
|
||||
}
|
||||
[data-template=event] main article {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
padding: 2rem;
|
||||
}
|
||||
[data-template=event] main .main-credits {
|
||||
text-align: center;
|
||||
padding-top: var(--space-body);
|
||||
}
|
||||
[data-template=event] main .main-credits dl {
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
[data-template=event] main .main-credits dt {
|
||||
text-transform: uppercase;
|
||||
font-size: var(--font-size-S);
|
||||
}
|
||||
[data-template=event] main .main-credits dd {
|
||||
font-size: var(--font-size-L);
|
||||
}
|
||||
[data-template=event] main h1 {
|
||||
font-size: var(--font-size-XL);
|
||||
text-align: center;
|
||||
line-height: var(--line-height-XL);
|
||||
padding: var(--space-body) 0;
|
||||
}
|
||||
[data-template=event] main details {
|
||||
font-size: var(--font-size-M);
|
||||
border: var(--border);
|
||||
border-radius: var(--border-radius);
|
||||
padding: 2rem;
|
||||
margin-bottom: calc(-1 * var(--border-radius) * 2);
|
||||
}
|
||||
[data-template=event] main details summary {
|
||||
list-style: none;
|
||||
padding: 0 2rem 1rem 2rem;
|
||||
text-align: center;
|
||||
font-size: var(--font-size-L);
|
||||
}
|
||||
[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-grey);
|
||||
}
|
||||
[data-template=event] main details.dates {
|
||||
background-color: var(--color-beige);
|
||||
}
|
||||
[data-template=event] main details.dates ul li {
|
||||
list-style-type: "— ";
|
||||
}
|
||||
[data-template=event] main details.dates a.button-link {
|
||||
border-radius: var(--border-radius);
|
||||
border: var(--border);
|
||||
padding: 0.5rem 1rem;
|
||||
margin-top: var(--line-height-M);
|
||||
}
|
||||
[data-template=event] main details.presse {
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
[data-template=agenda] main {
|
||||
background-color: transparent;
|
||||
}
|
||||
[data-template=agenda] main ul.sort-buttons {
|
||||
background-color: transparent;
|
||||
display: flex;
|
||||
gap: 4rem;
|
||||
box-sizing: border-box;
|
||||
padding: 2rem;
|
||||
}
|
||||
[data-template=agenda] main ul.sort-buttons li button {
|
||||
font-family: var(--font-sans);
|
||||
font-size: var(--font-size-L);
|
||||
font-weight: 600;
|
||||
}
|
||||
[data-template=agenda] main ul.sort-buttons li button.active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
[data-template=agenda] main .dates-container {
|
||||
box-sizing: border-box;
|
||||
background-color: var(--color-beige);
|
||||
padding: 2rem;
|
||||
border: var(--border);
|
||||
border-radius: var(--radius);
|
||||
}
|
||||
[data-template=agenda] main .dates-container .month-switcher {
|
||||
box-sizing: border-box;
|
||||
margin: 2rem auto;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 50vw;
|
||||
font-size: 4rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
[data-template=agenda] main .dates-container .month-switcher button {
|
||||
font-size: 2rem;
|
||||
}
|
||||
[data-template=agenda] main .dates-container .month {
|
||||
width: 40rem;
|
||||
text-align: center;
|
||||
margin: 4rem auto;
|
||||
}
|
||||
[data-template=agenda] main .dates-container .month .event {
|
||||
margin: 2rem 0;
|
||||
}
|
||||
[data-template=agenda] main .dates-container .month .event:not(:last-child) {
|
||||
border-bottom: var(--border);
|
||||
padding-bottom: 2rem;
|
||||
}
|
||||
[data-template=agenda] main .dates-container .month .event h4 {
|
||||
font-size: 3rem;
|
||||
font-weight: normal;
|
||||
}
|
||||
[data-template=agenda] main .dates-container .month .event .date {
|
||||
margin: 1rem 0;
|
||||
}
|
||||
[data-template=agenda] main .dates-container .month .event .date a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.gallery {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: calc(100vh - 9.75rem);
|
||||
overflow: hidden;
|
||||
}
|
||||
.gallery .slides .slide {
|
||||
width: 100vw;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
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[data-type=insert] {
|
||||
left: 100vw;
|
||||
}
|
||||
.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-type=title] {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.gallery .slides .slide[data-type=title]:not(.active) {
|
||||
left: 100vw;
|
||||
}
|
||||
.gallery .slides .slide[data-type=title] h1 {
|
||||
font-size: 7vw;
|
||||
}
|
||||
.gallery .slides .slide[data-type=image][data-orientation=portrait] {
|
||||
width: 50%;
|
||||
}
|
||||
.gallery .slides .slide[data-type=insert] {
|
||||
width: 100vw;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-left: 10vw;
|
||||
}
|
||||
.gallery .slides .slide[data-type=insert] dl {
|
||||
color: #fff;
|
||||
}
|
||||
.gallery .slides .slide[data-type=insert] dl dt {
|
||||
font-size: 2vw;
|
||||
}
|
||||
.gallery .slides .slide[data-type=insert] dl dd {
|
||||
font-size: 5vw;
|
||||
}
|
||||
.gallery .slides .slide[data-orientation=portrait] + .slide[data-orientation=portrait].active, .gallery .slides .slide[data-orientation=portrait] + .slide[data-orientation=portrait].previous {
|
||||
left: 50%;
|
||||
}
|
||||
.gallery .slides .slide[data-type=insert] + .slide[data-type=insert] {
|
||||
justify-content: flex-end;
|
||||
transform: translateY(0);
|
||||
margin-left: -10vw;
|
||||
}
|
||||
.gallery .slides .slide[data-type=insert] + .slide[data-type=insert] + .slide[data-type=insert] {
|
||||
justify-content: center;
|
||||
transform: translateY(-10rem);
|
||||
margin-left: 0;
|
||||
}/*# sourceMappingURL=style.css.map */
|
||||
1
assets/css/style.css.map
Normal file
1
assets/css/style.css.map
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue