This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web/styles/Index.module.scss

46 lines
886 B
SCSS

.hero {
display: block;
width: 100%;
height: 28rem;
overflow: hidden;
position: relative;
border-left: none;
border-right: none;
@media screen and (max-width: 800px) {
height: 14rem;
}
}
.hero::before {
position: absolute;
content: "";
// we do a little heisenberg
background: url(https://media1.tenor.com/images/9e70091410c7b3dd14ecfa09e14aaed2/tenor.gif?itemid=11390952);
filter: blur(0.25rem) brightness(50%);
transform: scale(1.1);
background-size: cover;
background-position: 0 -14rem;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.heroinside {
position: relative;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
@media screen and (max-width: 800px) {
transform: scale(0.85);
}
}
.h1clicktorefreshsplash {
user-select: none;
&:hover {
cursor: pointer;
}
}