Do you want moooooooooore ?
I can't hear youuuuu ! Ok, more stuph.
This commit is contained in:
@ -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{
|
||||
|
||||
Reference in New Issue
Block a user