42 lines
700 B
CSS
Executable File
42 lines
700 B
CSS
Executable File
.background_holder {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
overflow: hidden;
|
|
z-index: 0;
|
|
}
|
|
|
|
.slogan {
|
|
width: 100%;
|
|
z-index: 100;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding-top: 5vh;
|
|
padding-bottom: 10vh;
|
|
z-index: 1;
|
|
}
|
|
.slogan > * {
|
|
font-family: "Quicking";
|
|
text-align: center;
|
|
color: var(--mantine-color-contrast-filled);
|
|
z-index: 1;
|
|
}
|
|
|
|
.tiles {
|
|
width: 100%;
|
|
align-items: stretch;
|
|
gap: 40px 0px;
|
|
}
|
|
|
|
#documentationButton {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 10vh;
|
|
text-decoration: underline;
|
|
}
|