footer.css (521B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
.footer {
margin: 1rem;
flex-grow: 0;
color: var(--greyed-out);
@media (var(--tablet-width)) {
flex-direction: column;
}
a {
color: inherit;
}
.copyright {
display: flex;
flex-flow: row wrap;
flex: 1;
align-items: center;
font-size: 0.85rem;
justify-content: center;
& > *:first-child:not(:only-child) {
margin-right: 10px;
}
span {
white-space: normal;
}
}
}
|