hugo-theme-terminal/assets/css/footer.scss

44 lines
625 B
SCSS
Raw Normal View History

2022-06-21 13:50:51 +00:00
.footer {
padding: 40px 0;
flex-grow: 0;
opacity: .5;
&__inner {
display: flex;
align-items: center;
justify-content: space-between;
margin: 0;
max-width: 100%;
2022-06-21 15:14:59 +00:00
@media ($tablet) {
2022-06-21 13:50:51 +00:00
flex-direction: column;
}
}
a {
color: inherit;
}
.copyright {
display: flex;
2022-11-13 21:45:10 +00:00
flex-flow: row wrap;
flex: 1;
2022-06-21 13:50:51 +00:00
align-items: center;
font-size: 1rem;
2022-11-13 21:45:10 +00:00
justify-content: center;
2022-06-21 13:50:51 +00:00
&--user {
margin: auto;
text-align: center;
}
& > *:first-child:not(:only-child) {
margin-right: 10px;
}
2022-11-13 21:45:10 +00:00
span {
white-space: nowrap;
2022-06-21 13:50:51 +00:00
}
}
}