mirror of
https://git.coop/cotech/website.git
synced 2025-06-26 16:40:52 +00:00
Extract some colour variables
This commit is contained in:
@ -21,11 +21,15 @@
|
|||||||
--space-lg: calc(2 * var(--space-unit));
|
--space-lg: calc(2 * var(--space-unit));
|
||||||
--space-xl: calc(3.25 * var(--space-unit));
|
--space-xl: calc(3.25 * var(--space-unit));
|
||||||
--space-xxl: calc(5.25 * var(--space-unit));
|
--space-xxl: calc(5.25 * var(--space-unit));
|
||||||
|
|
||||||
|
--cotech-white: white;
|
||||||
|
--cotech-grey: #1e2637;
|
||||||
|
--cotech-blue: #38aad5;
|
||||||
}
|
}
|
||||||
|
|
||||||
p, li, a {
|
p, li, a {
|
||||||
font-family: "open_sansregular", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
font-family: "open_sansregular", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
||||||
color: #1e2637;
|
color: var(--cotech-grey);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
@ -45,7 +49,7 @@ h1, h2, h3, h4, h5, h6 {
|
|||||||
|
|
||||||
.header a:hover {
|
.header a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
color: #38aad5;
|
color: var(--cotech-blue);
|
||||||
}
|
}
|
||||||
|
|
||||||
.header_logo-link {
|
.header_logo-link {
|
||||||
@ -81,7 +85,7 @@ h1, h2, h3, h4, h5, h6 {
|
|||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
color: #ffffff;
|
color: var(--cotech-white);
|
||||||
max-width: 50ch;
|
max-width: 50ch;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -92,10 +96,10 @@ h1, h2, h3, h4, h5, h6 {
|
|||||||
.hero_button {
|
.hero_button {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: var(--space-sm);
|
padding: var(--space-sm);
|
||||||
border: 1px solid white;
|
border: 1px solid var(--cotech-white);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero_button a {
|
.hero_button a {
|
||||||
color: white;
|
color: var(--cotech-white);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user