文件
halo-theme/src/styles/footer.scss
T
2026-01-20 17:06:13 +08:00

84 行
1.4 KiB
SCSS

@import "variables";
.footer {
padding: 40px 0 0 0;
flex-grow: 0;
opacity: .5;
&__inner {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
margin: 0;
width: 760px;
max-width: 100%;
@media (max-width: $tablet-max-width) {
flex-direction: column;
}
}
a {
color: inherit;
}
.copyright {
display: flex;
flex-direction: row;
align-items: center;
font-size: 1rem;
color: var(--light-color-secondary);
&--user {
margin: auto;
text-align: center;
}
& > *:first-child:not(:only-child) {
margin-right: 10px;
@media (max-width: $tablet-max-width) {
border: none;
padding: 0;
margin: 0;
}
}
@media (max-width: $tablet-max-width) {
flex-direction: column;
margin-top: 10px;
}
}
.copyright-theme-sep {
@media (max-width: $tablet-max-width) {
display: none;
}
}
.copyright-theme {
@media (max-width: $tablet-max-width) {
font-size: 0.75rem;
}
}
.beian {
display: flex;
flex-direction: row;
justify-content: center;
flex-basis: 100%;
align-items: center;
font-size: 1rem;
color: var(--light-color-secondary);
margin-top: 8px;
span {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 0 8px;
}
}
}