Ooooooook good !
This commit is contained in:
@ -12,6 +12,9 @@
|
||||
--bulma-black-s: 0%;
|
||||
--bulma-black-l: 6%;
|
||||
--bulma-body-background-color: hsl(0, 0%, 6%);
|
||||
--bulma-danger-h: 360deg;
|
||||
--bulma-danger-s: 69%;
|
||||
--bulma-danger-l: 50%;
|
||||
}
|
||||
.card{
|
||||
--bulma-card-shadow: none !important;
|
||||
@ -52,6 +55,9 @@ h1{
|
||||
.section.is-fullheight{
|
||||
min-height:100lvh;
|
||||
}
|
||||
.modal{
|
||||
--bulma-modal-content-width: 90vw;
|
||||
}
|
||||
/* -----------------------------------------------*/
|
||||
|
||||
/*Custom classes*/
|
||||
@ -75,7 +81,7 @@ h1{
|
||||
}
|
||||
#reel{
|
||||
width:100%;
|
||||
height:100vh;
|
||||
height:100lvh;
|
||||
position: relative;
|
||||
background: none;
|
||||
}
|
||||
@ -85,7 +91,7 @@ video{
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
height:100vh;
|
||||
height:100lvh;
|
||||
width:100%;
|
||||
object-fit: cover;
|
||||
z-index:-20;
|
||||
@ -305,6 +311,39 @@ video{
|
||||
/*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);*/
|
||||
aspect-ratio: 1;
|
||||
}
|
||||
a.partner-link, a.partner-link img{
|
||||
transition: transform 0.2s ease-in-out;
|
||||
}
|
||||
a.partner-link:hover{
|
||||
transform: scale(1.1);
|
||||
}
|
||||
a.partner-link:hover img{
|
||||
transform: scale(0.8);
|
||||
}
|
||||
|
||||
/*POOP*/
|
||||
/*Tooltip made specially for the link to X, a.k.a. the Nazi Dumpster Fire thing.*/
|
||||
.poop:after{
|
||||
content: '💩';
|
||||
position: absolute;
|
||||
top:-100%;
|
||||
background: var(--bulma-black);
|
||||
color: var(--bulma-white);
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid var(--bulma-primary);
|
||||
font-size: 2rem;
|
||||
white-space: nowrap;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transform: translateY(-10px);
|
||||
transition: opacity 0.2s ease, transform 0.2s ease;
|
||||
}
|
||||
.poop:hover:after {
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
|
||||
/*FOOTER*/
|
||||
.footer-logo{
|
||||
|
||||
Reference in New Issue
Block a user