website/_src/assets/css/default/index.css

35 lines
627 B
CSS
Raw Normal View History

@import url("./variables.css");
@import url("./theme-light.css");
@import url("./theme-dark.css");
2025-06-11 09:36:54 +03:00
#index {
width: 100%;
margin: 0;
padding: 0;
& main {
2025-06-11 09:36:54 +03:00
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: inherit;
flex-direction: column;
2025-06-25 14:01:36 +03:00
background-image: var(--sunny);
background-color: rgb(255, 190, 0);
background-repeat: no-repeat;
background-position: center;
background-size: contain;
& a {
2025-06-25 14:01:36 +03:00
position: absolute;
top: 2rem;
background-color: unset;
}
2025-06-11 09:36:54 +03:00
}
& footer {
position: absolute;
bottom: var(--pad-l);
& p {
text-align: center;
}
}
2025-06-11 09:36:54 +03:00
}