4
0
mirror of https://git.coop/cotech/website.git synced 2025-06-26 08:30:47 +00:00

Extract some colour variables

This commit is contained in:
Chris Lowis
2025-06-20 14:59:11 +01:00
parent 78f236203c
commit c320a15887

View File

@ -21,11 +21,15 @@
--space-lg: calc(2 * var(--space-unit));
--space-xl: calc(3.25 * var(--space-unit));
--space-xxl: calc(5.25 * var(--space-unit));
--cotech-white: white;
--cotech-grey: #1e2637;
--cotech-blue: #38aad5;
}
p, li, a {
font-family: "open_sansregular", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
color: #1e2637;
color: var(--cotech-grey);
}
h1, h2, h3, h4, h5, h6 {
@ -45,7 +49,7 @@ h1, h2, h3, h4, h5, h6 {
.header a:hover {
text-decoration: underline;
color: #38aad5;
color: var(--cotech-blue);
}
.header_logo-link {
@ -81,7 +85,7 @@ h1, h2, h3, h4, h5, h6 {
font-size: 1.5em;
font-weight: bold;
line-height: 1.6;
color: #ffffff;
color: var(--cotech-white);
max-width: 50ch;
}
@ -92,10 +96,10 @@ h1, h2, h3, h4, h5, h6 {
.hero_button {
cursor: pointer;
padding: var(--space-sm);
border: 1px solid white;
border: 1px solid var(--cotech-white);
border-radius: 4px;
}
.hero_button a {
color: white;
color: var(--cotech-white);
}