mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-14 00:43:42 +02:00
42 lines
No EOL
564 B
CSS
42 lines
No EOL
564 B
CSS
vv-shell {
|
|
gap: var(--padding);
|
|
}
|
|
|
|
/* # Sections */
|
|
|
|
/* ## Heading */
|
|
|
|
section.heading {
|
|
text-align: center;
|
|
margin: var(--padding) 0;
|
|
}
|
|
|
|
/* ## Grid */
|
|
|
|
section.grid {
|
|
gap: var(--padding);
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
section.grid button {
|
|
width: 100%;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
section.grid button img {
|
|
width: 100%;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
section.grid button > div {
|
|
display: flex;
|
|
text-align: right;
|
|
gap: var(--padding);
|
|
align-items: center;
|
|
}
|
|
|
|
section.grid button p {
|
|
color: black;
|
|
} |