Files
FixIt/assets/scss/core/layouts/_footer.scss
T
Cell dd6d320654 refactor!: build with Dart Sass and update Vercel deployment scripts (#746)
* BREAKING CHANGE: refactor with Dart Sass (supplement to #741)

* chore: update .gitignore to include .vercel and .env*.local

* CI: add build script for Hugo site deployment on Vercel

* CI: update build script for Hugo site deployment on Vercel

* refactor: update SCSS layout styles and introduce page-style mixin

* refactor: reorganize SCSS files and improve layout structure

* refactor: rename copy button classes and update related styles
2026-05-10 23:02:54 +08:00

71 lines
1.1 KiB
SCSS

@use "core/mixins" as *;
footer {
height: auto;
width: 100%;
text-align: center;
line-height: 1.25rem;
padding: 1rem 0;
.footer-container {
display: flex;
flex-direction: column;
font-size: 0.875rem;
.footer-line {
width: 100%;
.footer-divider:not(:first-child)::before {
content: '|';
margin-left: 0.25rem;
margin-right: 0.25rem;
}
.hugo-icon,
.fixit-icon,
.animate-icon {
@include dark-mode {
filter: invert(1) hue-rotate(0.5turn) opacity(0.6);
}
}
.animate-icon {
color: light-dark(#e01846, #ff5f7a);
animation: icon-animate 1.33s ease-in-out infinite;
}
}
@include media('xs') {
font-size: 0.618rem;
}
}
@include media('print') {
display: none !important;
}
}
@keyframes icon-animate {
0%,
100% {
transform: scale(1);
}
10%,
30% {
transform: scale(0.9);
}
20%,
40%,
60%,
80% {
transform: scale(1.1);
}
50%,
70% {
transform: scale(1.1);
}
}