Do you want moooooooooore ?

I can't hear youuuuu !

Ok, more stuph.
This commit is contained in:
2026-01-21 15:50:22 +01:00
parent d332744f5f
commit 5e90213d61
8 changed files with 1805 additions and 80 deletions

View File

@ -107,6 +107,49 @@ video{
.tournament-block:hover{
transform: scale(0.9);
}
.custom-grid{
display:grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap:0;
border:1px solid hsla(0,0%,6%,0.1);
}
.custom-grid .custom-cell{
position: relative;
aspect-ratio: 1 / 1;
display: grid;
place-items: center;
/*border:1px solid var(--bulma-black);*/
}
.custom-grid .custom-cell+.custom-cell{
border-left:1px solid hsla(0,0%,6%,0.1);
}
.custom-cell .bg{
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
background-size: cover;
background-position: center;
mix-blend-mode: soft-light; /* overlay? */
transition: opacity 0.5s ease-out;
}
.custom-cell .bg.active {
opacity: 0;
mix-blend-mode: normal;
}
.custom-cell:hover .bg.active {
opacity: 0.6;
}
.custom-cell img{
position:relative;
transition: transform 0.5s ease-out;
transform: scale(1);
}
.custom-cell:hover img {
transform: scale(1.1);
}
/*------------------------------------------------------------------*/
/*Twist animation*/
.twist{