Move files to the new location requested by Ananke
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Luca Beltrame 2021-08-01 10:30:34 +02:00
parent cf5d4f6d7f
commit f174cc9be1
Signed by: einar
GPG key ID: 4707F46E9EC72DEC
5 changed files with 560 additions and 0 deletions

View file

@ -0,0 +1,198 @@
/*!
* baguetteBox.js
* @author feimosi
* @version 1.11.1
* @url https://github.com/feimosi/baguetteBox.js
*/
#baguetteBox-overlay {
display: none;
opacity: 0;
position: fixed;
overflow: hidden;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000000;
background-color: #222;
background-color: rgba(0, 0, 0, 0.8);
-webkit-transition: opacity .5s ease;
transition: opacity .5s ease; }
#baguetteBox-overlay.visible {
opacity: 1; }
#baguetteBox-overlay .full-image {
display: inline-block;
position: relative;
width: 100%;
height: 100%;
text-align: center; }
#baguetteBox-overlay .full-image figure {
display: inline;
margin: 0;
height: 100%; }
#baguetteBox-overlay .full-image img {
display: inline-block;
width: auto;
height: auto;
max-height: 100%;
max-width: 100%;
vertical-align: middle;
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }
#baguetteBox-overlay .full-image figcaption {
display: block;
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
line-height: 1.8;
white-space: normal;
color: #ccc;
background-color: #000;
background-color: rgba(0, 0, 0, 0.6);
font-family: sans-serif; }
#baguetteBox-overlay .full-image:before {
content: "";
display: inline-block;
height: 50%;
width: 1px;
margin-right: -1px; }
#baguetteBox-slider {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
white-space: nowrap;
-webkit-transition: left .4s ease, -webkit-transform .4s ease;
transition: left .4s ease, -webkit-transform .4s ease;
transition: left .4s ease, transform .4s ease;
transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease; }
#baguetteBox-slider.bounce-from-right {
-webkit-animation: bounceFromRight .4s ease-out;
animation: bounceFromRight .4s ease-out; }
#baguetteBox-slider.bounce-from-left {
-webkit-animation: bounceFromLeft .4s ease-out;
animation: bounceFromLeft .4s ease-out; }
@-webkit-keyframes bounceFromRight {
0% {
margin-left: 0; }
50% {
margin-left: -30px; }
100% {
margin-left: 0; } }
@keyframes bounceFromRight {
0% {
margin-left: 0; }
50% {
margin-left: -30px; }
100% {
margin-left: 0; } }
@-webkit-keyframes bounceFromLeft {
0% {
margin-left: 0; }
50% {
margin-left: 30px; }
100% {
margin-left: 0; } }
@keyframes bounceFromLeft {
0% {
margin-left: 0; }
50% {
margin-left: 30px; }
100% {
margin-left: 0; } }
.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
top: 50%;
top: calc(50% - 30px);
width: 44px;
height: 60px; }
.baguetteBox-button {
position: absolute;
cursor: pointer;
outline: none;
padding: 0;
margin: 0;
border: 0;
-moz-border-radius: 15%;
border-radius: 15%;
background-color: #323232;
background-color: rgba(50, 50, 50, 0.5);
color: #ddd;
font: 1.6em sans-serif;
-webkit-transition: background-color .4s ease;
transition: background-color .4s ease; }
.baguetteBox-button:focus, .baguetteBox-button:hover {
background-color: rgba(50, 50, 50, 0.9); }
.baguetteBox-button#next-button {
right: 2%; }
.baguetteBox-button#previous-button {
left: 2%; }
.baguetteBox-button#close-button {
top: 20px;
right: 2%;
right: calc(2% + 6px);
width: 30px;
height: 30px; }
.baguetteBox-button svg {
position: absolute;
left: 0;
top: 0; }
/*
Preloader
Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
width: 40px;
height: 40px;
display: inline-block;
position: absolute;
top: 50%;
left: 50%;
margin-top: -20px;
margin-left: -20px; }
.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
width: 100%;
height: 100%;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: #fff;
opacity: .6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: bounce 2s infinite ease-in-out;
animation: bounce 2s infinite ease-in-out; }
.baguetteBox-double-bounce2 {
-webkit-animation-delay: -1s;
animation-delay: -1s; }
@-webkit-keyframes bounce {
0%, 100% {
-webkit-transform: scale(0);
transform: scale(0); }
50% {
-webkit-transform: scale(1);
transform: scale(1); } }
@keyframes bounce {
0%, 100% {
-webkit-transform: scale(0);
-moz-transform: scale(0);
transform: scale(0); }
50% {
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1); } }

View file

@ -0,0 +1,94 @@
.main-menu-button {
display: none;
}
@media (max-width: 768px) {
/* hide social media links in mobile view */
.top-social-container {
display: none
}
/* menu */
.main-menu-list {
clear: both;
max-height: 0;
transition: max-height 0.2s ease-out;
}
/* menu icon: middle bar */
.main-menu-icon,
.main-menu-icon:before,
.main-menu-icon:after {
background: white;
display: block;
width: 30px;
content: '';
transition-duration: 0.2s;
transition-timing-function: ease-out;
}
.main-menu-icon {
height: 3px;
position: relative;
transition-property: background;
}
/* menu icon: add one bar below and one above -> hamburger style */
.main-menu-icon:before,
.main-menu-icon:after {
height: 100%;
position: absolute;
transition-property: all;
}
.main-menu-icon:before { top: 10px; }
.main-menu-icon:after { top: -10px; }
/* limit the length of the menu item list */
.main-menu-button:checked ~ .main-menu-list {
max-height: 100%;
}
/* parallel -> crossing transition of hamburger menu icon */
.main-menu-button:checked ~ .main-menu-label .main-menu-icon { background: transparent; }
.main-menu-button:checked ~ .main-menu-label .main-menu-icon:before { transform: rotate(-45deg); }
.main-menu-button:checked ~ .main-menu-label .main-menu-icon:after { transform: rotate(45deg); }
.main-menu-button:checked ~ .main-menu-label:not(.steps) .main-menu-icon:before,
.main-menu-button:checked ~ .main-menu-label:not(.steps) .main-menu-icon:after {
top: 0;
}
.main-menu-label {
display: inline-block;
cursor: pointer;
float: right;
padding: 28px 20px;
position: relative;
user-select: none;
}
.main-menu-list {
overflow: hidden;
}
.main-menu-list li {
display: block;
text-align: right;
padding: 0.5rem;
}
/* reduce width of logo and place logo and hamburger menu on one line */
.site-logo { display: inline; }
.site-logo img { max-width: 70%; }
.main-menu-container { display: inline; }
}

View file

@ -0,0 +1,76 @@
.isso-postbox {
width: 100%;
font-family: -apple-system, BlinkMacSystemFont,
'avenir next', avenir,
'helvetica neue', helvetica,
ubuntu,
roboto, noto,
'segoe ui', arial,
sans-serif;
}
#isso-thread {
font-family: -apple-system, BlinkMacSystemFont,
'avenir next', avenir,
'helvetica neue', helvetica,
ubuntu,
roboto, noto,
'segoe ui', arial,
sans-serif;
}
#isso-thread > .isso-feedlink > a {
text-decoration: none;
vertical-align: middle !important;
}
.isso-postbox > .form-wrapper .textarea, .isso-postbox > .form-wrapper .preview {
font-size: 1rem;
width: 100%;
padding-top: 1rem;
padding-bottom: 1rem;
padding-left: 1rem;
padding-right: 1rem;
height: 8rem;
}
.isso-postbox > .form-wrapper > .auth-section .input-wrapper {
margin-right: 0.3rem !important;
}
.isso-postbox > .form-wrapper > .auth-section .input-wrapper input {
font-size:0.9rem;
padding-top: 1rem;
padding-bottom: 1rem;
padding-left: 1rem;
padding-right: 1rem;
}
.isso-postbox > .form-wrapper > .auth-section .post-action input {
font-size: 0.9rem;
background-color: #000000 !important;
color: #FFFFFF !important;
}
.isso-postbox > .form-wrapper .notification-section > label{
font-size: 0.9rem;
}
.isso-postbox > .form-wrapper input[type="checkbox"] {
font-size: 0.9rem;
padding-right: 0.2rem;
margin-right: 0.5rem !important;
}
.isso-comment > div.text-wrapper > .isso-comment-header {
font-size: 0.9rem !important;
}
.isso-comment > div.text-wrapper > div.text p {
font-size: 0.9rem !important;
}
.responsive-header {
background-repeat:no-repeat;
background-size:contain !important;
}

View file

@ -0,0 +1,164 @@
/*! leafbox 1.00 | Daniel Abel - http://zkreations.com | Free to use under terms of MIT license */
/*Para empezar, lbox necesita una posicion fija y ocupar todo su contenedor*/
.lbox {
position: fixed;
display: block;
overflow: hidden;
background: rgba(0,0,0,0.8);
z-index: 9999;
-webkit-font-smoothing: antialiased;
visibility: hidden;
}
/*todas las transiciones (si tuviera más)*/
.lbox.fade:target > img {
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-o-transition: opacity 1s;
transition: opacity 1s;
}
/*Para no repetir codigo, lo agrupamos aquí*/
.lbox, .lbox > img, .lbox > div {top: 0;left: 0;right: 0;bottom: 0;}
/*Al dar clic, el contenedor lbox que se encuentre "target" se mostrará*/
.lbox {top: -100%;}
.lbox:target {top: 0;visibility: visible;}
/*y creamos un boton para cerrarlo*/
.lbox > a {
display: block;
position: absolute;
top: 0;
right: 0;
width: 75px;
height: 75px;
background: url(/images/close1x-bw.png) no-repeat center center rgba(0, 0, 0, 0.7);
}
/*tanto los videos como las imágenes necesitan una posicion absoluta*/
.lbox > img, .lbox > div {
position: absolute;
margin: auto;
box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.3), 0 1px 0px 0px rgba(0, 0, 0, 0.05);
}
/*Perto solo las imágenes tienen un maximo en alto y ancho*/
.lbox > img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}
.lbox > figcaption {
bottom: 0;
position:absolute;
color:white;
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 100%;
text-align: center;
}
/*mientras que los videos tienen su propio ancho y alto*/
.lbox > .vid {
max-width: 800px;
height: 450px;
width:100%;
}
/*y los textos tambien*/
.lbox > .text {
max-width: 800px;
max-height: 90%;
top: 20%;
bottom: auto;
padding: 2em;
background: #fff;
color: #757575;
width:100%;
}
.lbox > .vid iframe, .lbox > .vid object, .lbox > .vid embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/*Pero aparecen según el efecto*/
/*fade*/
.lbox.fade > img, .lbox.fade > div {
opacity: 0;
}
.lbox.fade:target > img, .lbox.fade:target > div {
opacity: 1;
}
/*bounce*/
@-webkit-keyframes bounce {
0% {-webkit-transform: scale(0)}
50% {-webkit-transform: scale(1.1)}
100% {-webkit-transform: scale(1)}
}
@-moz-keyframes bounce {
0% {-moz-transform: scale(0)}
50% {-moz-transform: scale(1.1)}
100% {-moz-transform: scale(1)}
}
@keyframes bounce {
0% {transform: scale(0)}
50% {transform: scale(1.1)}
100% {transform: scale(1)}
}
.lbox.bounce:target > img, .lbox.bounce:target > div {
-webkit-animation: bounce 1s none;
-moz-animation: bounce 1s none;
-o-animation: bounce 1s none;
animation: bounce 1s none;
}
/*flip*/
@-webkit-keyframes flip {
0% {-webkit-transform: perspective(600px) rotate3d(1, 0, 0, 20deg);opacity: 0;}
50% {-webkit-transform: perspective(600px) rotate3d(1, 0, 0, -5deg);opacity: 1;}
100% {-webkit-transform: perspective(600px) rotate3d(1, 0, 0, 0);opacity: 1;}
}
@-moz-keyframes flip {
0% {-moz-transform: perspective(600px) rotate3d(1, 0, 0, 20deg);opacity: 0;}
50% {-moz-transform: perspective(600px) rotate3d(1, 0, 0, -5deg);opacity: 1;}
100% {-moz-transform: perspective(600px) rotate3d(1, 0, 0, 0);opacity: 1;}
}
@keyframes flip {
0% {transform: perspective(600px) rotate3d(1, 0, 0, 20deg);opacity: 0;}
50% {transform: perspective(600px) rotate3d(1, 0, 0, -5deg);opacity: 1;}
100% {transform: perspective(600px) rotate3d(1, 0, 0, 0);opacity: 1;}
}
.lbox.flip:target > img, .lbox.flip:target > div {
-webkit-animation: flip 1s none;
-moz-animation: flip 1s none;
-o-animation: flip 1s none;
animation: flip 1s none;
}
/*Algunos estilos para videos según la resolución*/
@media only screen and (max-width: 840px) {
.lbox > .vid {height: 400px;}
}
@media only screen and (max-width: 730px) {
.lbox > .vid {height: 350px;}
}
@media only screen and (max-width: 620px) {
.cream-slider li.tab > div {display: none;}
.lbox > .vid {height: 300px;}
}
.lbox:target > img, .lbox:target > div {
border: 12px solid rgba(0,0,0,0.8);
}

View file

@ -0,0 +1,28 @@
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.8);
}
.lightbox img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.lightbox:target {
outline: none;
display: block; }