Takubeh/assets/styles/footer.scss

48 lines
845 B
SCSS
Raw Normal View History

2024-02-28 23:07:49 +01:00
.footer {
2024-02-02 13:49:39 +01:00
min-height: inherit;
width: inherit;
2024-02-28 23:07:49 +01:00
.container {
align-items: center;
justify-content: space-between;
width: 100%;
margin: 1rem;
font-family: 'Tox Typewriter';
font-weight: normal;
font-style: normal;
2024-05-14 23:53:20 +02:00
div {
text-align: center;
a {
margin-left: .5rem;
white-space: nowrap;
}
2024-02-28 23:07:49 +01:00
}
}
img {
display: inline;
vertical-align: middle;
}
p {
padding: 0;
}
2024-02-02 13:49:39 +01:00
}
2024-02-28 23:07:49 +01:00
@media screen and (max-width: 1024px) {
.footer .container {
2024-05-14 23:53:20 +02:00
margin: 1rem .2rem;
2024-02-28 23:07:49 +01:00
flex-direction: column-reverse;
2024-05-14 23:53:20 +02:00
div a {
margin-left: .2rem;
}
2024-02-28 23:07:49 +01:00
p {
margin-top: .5rem;
2024-05-14 23:53:20 +02:00
text-align: center;
2024-02-28 23:07:49 +01:00
}
}
2024-02-02 13:49:39 +01:00
}