Apply new "primary and secondary action" styles to the index page

This commit is contained in:
2025-09-13 16:08:41 -07:00
parent e4aa7a2a43
commit 3b7bc6c2f6
3 changed files with 38 additions and 12 deletions

24
assets/css/content.css Normal file
View File

@@ -0,0 +1,24 @@
/* Custom classes for styling elements on a page, such as links */
.horizontal-wrapper {
display: flex;
flex-direction: row;
gap: 8px;
}
.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;
}