Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

modified shared.css - used plain css variables #238

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 9 additions & 5 deletions assets/shared.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
:root {
--light-gray: #605e5c;
--sea-blue: #0078d4;
}
html {
box-sizing: border-box;
}
Expand All @@ -12,7 +16,7 @@ body {
}

a {
color: #0078d4;
color: var(--sea-blue);
text-decoration: none;
}

Expand Down Expand Up @@ -100,17 +104,17 @@ a.Tile-link:hover {
.Tile-link i {
font-size: 32px;
margin-bottom: 12px;
color: #605e5c;
color: var(--light-gray);
}

.Tile-links {
font-size: 16px;
color: #605e5c;
color: var(--light-gray);
}

.Tile-links a {
text-decoration: none;
color: #0078d4;
color: var(--sea-blue);
}

.Tile-links a:hover {
Expand All @@ -136,5 +140,5 @@ a.Tile-link:hover {

.Tile--intro a,
.Tile--intro a:visited {
color: #0078d4;
color: var(--sea-blue);
}