mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-13 16:33:42 +02:00
Brand new design for the website following the new design language I used for [version 2.0 of my personal website](https://codeberg.org/vlw/vlw.se/releases/tag/2.0.0). Reviewed-on: https://codeberg.org/vegvisir/website/pulls/2 Co-authored-by: vlw <victor@vlw.se> Co-committed-by: vlw <victor@vlw.se>
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);
|
|
}
|
|
} |