website/styles/partials/_footer.scss

39 lines
570 B
SCSS
Raw Normal View History

2023-11-19 00:11:43 +01:00
.footer {
2024-04-13 17:29:26 +02:00
display: grid;
grid-template-columns: 1fr auto 1fr;
grid-column-gap: 0.25em;
justify-items: center;
2024-04-14 20:43:08 +02:00
align-items: center;
2024-04-13 17:29:26 +02:00
2023-11-19 00:11:43 +01:00
max-height: min-content;
2023-04-07 01:11:08 +02:00
padding: 0.5em;
2023-11-19 00:11:43 +01:00
font-size: var(--fs-sm);
2023-04-07 01:11:08 +02:00
background-color: var(--c-footer-bg);
2023-11-19 00:11:43 +01:00
color: var(--c-footer-text);
2023-04-07 01:11:08 +02:00
2023-11-19 00:11:43 +01:00
a {
color: var(--c-primary);
2023-06-06 23:37:58 +02:00
}
2024-04-13 17:29:26 +02:00
.left {
margin-right: auto;
}
2024-04-14 20:43:08 +02:00
.repo {
display: flex;
flex-direction: column;
align-items: center;
}
2024-04-13 17:29:26 +02:00
.right {
margin-left: auto;
}
2023-11-19 00:11:43 +01:00
&__cc-wrap {
2023-06-06 23:37:58 +02:00
display: block;
2023-04-07 01:11:08 +02:00
}
2023-11-19 00:11:43 +01:00
&__cc-stamp {
height: 100%;
}
2023-04-07 01:11:08 +02:00
}