32 lines
597 B
CSS
32 lines
597 B
CSS
/* Custom classes for styling elements on a page, such as links */
|
|
|
|
.horizontal-wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 8px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.primary-action {
|
|
background: black;
|
|
padding: 0.8em;
|
|
color: white;
|
|
text-decoration-line: unset;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.secondary-action {
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: black;
|
|
padding: 0.8em;
|
|
text-decoration-line: unset;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.horizontal-wrapper {
|
|
flex-direction: column;
|
|
}
|
|
}
|