Fix close btn in video.html; add brutal slideshow...

This commit is contained in:
2021-09-17 15:55:43 +02:00
parent a4ecbd037c
commit c28e854e7f
7 changed files with 129 additions and 68 deletions

View File

@@ -2,6 +2,7 @@
@import url(fonts.css);
:root {
--white: #fff;
--ochre: #ccac68;
--ochre-light : #f7f4ee;
--ochre-dark: rgba(116,102,77,1);
@@ -62,9 +63,6 @@ div#preload img {
.text-14pt {
font-size: 14pt;
}
video {
cursor: pointer;
}
#mod-cont {
overflow: hidden;
}
@@ -424,6 +422,37 @@ section.poi h3 {
}
/*****/
canvas {
width: 100%;
height: 100%;
width: 100vw;
height: 100vh;
}
/** Videos **/
video, .open-vid {
cursor: pointer;
}
.icon-close#close-nav {
color: var(--white);
margin-top: 0.9rem;
}
/** Slideshow... **/
.hide, .slide {
display: none;
}
.show {
display: block;
}
/* Fading animation */
.fadein {
-webkit-animation-name: fadein;
-webkit-animation-duration: 1.5s;
animation-name: fadein;
animation-duration: 1.5s;
}
@-webkit-keyframes fadein {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fadein {
from {opacity: .4}
to {opacity: 1}
}