3
0
mirror of https://git.coop/cotech/website.git synced 2025-12-17 23:07:33 +00:00

Style the buttons

This commit is contained in:
Chris Lowis
2025-12-15 12:32:26 +00:00
parent 7b8f5c9870
commit 2ac1bd8bd7
2 changed files with 24 additions and 2 deletions

View File

@ -186,6 +186,28 @@ section {
margin-block-start: var(--space, 1.4rem);
}
.btn {
padding: var(--space-sm) var(--space-lg);
background: var(--cotech-white);
color: var(--cotech-black);
text-decoration: none;
font-family: "open_sansbold", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
border-radius: var(--space-sm);
width: fit-content;
display: flex;
align-items: center;
gap: var(--space-sm);
}
.btn::after {
content: " →";
}
.btn:hover {
background: var(--cotech-black);
color: var(--cotech-white);
}
.header {
display: flex;
padding: var(--space-lg) var(--space-md);