color tweak, modularizing css, redone index, rewritten stuff

This commit is contained in:
sundae 2025-06-17 17:42:43 +03:00
parent c6bac45ecf
commit ee8bce1bd3
No known key found for this signature in database
18 changed files with 614 additions and 664 deletions

View file

@ -1,26 +1,29 @@
@import url("/assets/css/variables.css");
@import url("/assets/css/theme-light.css");
@import url("/assets/css/theme-dark.css");
#index {
width: 100%;
background-color: rgb(255, 190, 0);
background-image: url("/assets/img/theme/citrus/sundae.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
margin: 0;
padding: 0;
main {
& main {
display: flex;
}
a img {
width: 100%;
transition: var(--trans);
transform: scale(0.9);
}
a img:hover {
transform: scale(0.95) translateY(-1rem);
justify-content: center;
align-items: center;
height: 100vh;
width: inherit;
& p {
font-family: "Urbanist", sans-serif;
font-size: 500%;
margin: 0;
&::after {
content: "";
mask-image: url("/assets/img/theme/paw.svg");
background-color: red;
height: 100%;
position: absolute;
pointer-events: none;
}
}
}
}