Fix close btn in video.html; add brutal slideshow...
This commit is contained in:
39
css/main.css
39
css/main.css
@@ -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}
|
||||
}
|
||||
Reference in New Issue
Block a user