yay website

This commit is contained in:
sundae 2025-06-11 09:36:54 +03:00
parent 623e26a808
commit 4d44fd94a2
No known key found for this signature in database
585 changed files with 5066 additions and 0 deletions

26
_src/assets/css/index.css Normal file
View file

@ -0,0 +1,26 @@
@import url("/assets/css/variables.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 {
display: flex;
}
a img {
width: 100%;
transition: var(--trans);
transform: scale(0.9);
}
a img:hover {
transform: scale(0.95) translateY(-1rem);
}
}