mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-14 00:43:42 +02:00
32 lines
No EOL
480 B
CSS
32 lines
No EOL
480 B
CSS
vv-shell {
|
|
padding: 0 var(--padding);
|
|
}
|
|
|
|
/* # Section */
|
|
|
|
/* ## This stays */
|
|
|
|
section#this-stays {
|
|
display: flex;
|
|
align-items: center;
|
|
text-align: center;
|
|
fill: var(--color-accent);
|
|
justify-content: space-evenly;
|
|
height: var(--running-size);
|
|
}
|
|
|
|
section#this-stays svg {
|
|
height: 70%;
|
|
}
|
|
|
|
section#this-stays svg:last-child {
|
|
transform: rotateY(180deg);
|
|
}
|
|
|
|
/* # Size queries */
|
|
|
|
@media (max-width: 950px) {
|
|
section#this-stays {
|
|
height: calc(var(--running-size) * 2);
|
|
}
|
|
} |