40 lines
884 B
SCSS
40 lines
884 B
SCSS
@use "sass:color" as c;
|
|
|
|
@use "general" as *;
|
|
@use "fonts" as *;
|
|
@use "main-palette" as mp;
|
|
|
|
footer {
|
|
marquee {
|
|
margin: 8px 0px;
|
|
}
|
|
p {
|
|
margin: 2px;
|
|
font-size: 0.7em;
|
|
text-align: right;
|
|
}
|
|
.footer-flex {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
.footer-left {
|
|
margin: auto 0px 0px 0px;
|
|
}
|
|
.footer-middle .nekojiru-angel {
|
|
background-image: url("/img/nekojiru.png");
|
|
width: 64px;
|
|
height: 64px;
|
|
margin: auto 0px 0px 0px;
|
|
vertical-align: bottom;
|
|
&:hover {
|
|
background-image: url("/img/nekojiruhalo.png");
|
|
}
|
|
}
|
|
|
|
.footer-right {
|
|
margin: auto 0px 0px 0px;
|
|
}
|
|
}
|
|
}
|