You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
797 B
43 lines
797 B
.section {
|
|
text-align: center;
|
|
}
|
|
|
|
.section * {
|
|
margin-top: unset;
|
|
}
|
|
|
|
.section a {
|
|
justify-content: center;
|
|
text-align: center;
|
|
font-family: "Red Hat Display";
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 0.4em 1em;
|
|
font-family: "Red Hat Display";
|
|
font-weight: 500;
|
|
font-size: 1.1em;
|
|
border-radius: 8px;
|
|
background-color: var(--background-color-dark);
|
|
border: unset;
|
|
}
|
|
|
|
.section div {
|
|
display: flex;
|
|
gap: 10px;
|
|
justify-content: center;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.section a:hover {
|
|
background-color: var(--theme-color-500);
|
|
text-decoration: none;
|
|
border: unset;
|
|
}
|
|
|
|
|
|
/* mobile */
|
|
@media(max-aspect-ratio: 7/6) {
|
|
.section div {
|
|
flex-direction: column;
|
|
}
|
|
} |