26 lines
454 B
CSS
26 lines
454 B
CSS
@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);
|
|
}
|
|
}
|