mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-14 08:53:42 +02:00
First (rushed 😦) release of the Vegvisir website. Reviewed-on: https://codeberg.org/vegvisir/website/pulls/1 Co-authored-by: vlw <victor@vlw.se> Co-committed-by: vlw <victor@vlw.se>
29 lines
No EOL
465 B
CSS
29 lines
No EOL
465 B
CSS
section.contribute {
|
|
grid-area: contribute;
|
|
width: 100%;
|
|
background-color: rgba(var(--primer-color-deep), .1);
|
|
}
|
|
|
|
section.contribute container {
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
section.contribute ul {
|
|
display: flex;
|
|
padding: var(--padding);
|
|
list-style: none;
|
|
gap: var(--padding);
|
|
}
|
|
|
|
/* # Size queries */
|
|
|
|
@media (max-width: 950px) {
|
|
section.contribute ul {
|
|
flex-direction: column;
|
|
}
|
|
|
|
section.contribute button {
|
|
width: 100%;
|
|
}
|
|
} |