2023-01-08 15:14:35 +00:00
|
|
|
main {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
background-color: $black100;
|
|
|
|
color: $white100;
|
|
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
header {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
width: 100%;
|
2023-01-10 22:17:41 +00:00
|
|
|
height: 69vh;
|
2023-01-08 15:14:35 +00:00
|
|
|
|
2023-01-10 22:17:41 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2023-01-08 15:14:35 +00:00
|
|
|
|
|
|
|
background-color: $black200;
|
|
|
|
border-radius: $rad;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
img {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
object-position: center 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
background-image: linear-gradient(to bottom, #00000000, rgba($black100, 1));
|
2023-01-11 15:25:35 +00:00
|
|
|
backdrop-filter: blur(1rem);
|
2023-01-08 15:14:35 +00:00
|
|
|
|
|
|
|
z-index: +1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|