Skip to content

Commit

Permalink
refactor(bold): reduce boldness
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorgerhardt committed May 2, 2018
1 parent 3e71870 commit bbe40db
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
@import url(src/components/transitive-map-layer/style.css);

:root {
--bold: 500;
--rad: 4px;
}

Expand Down Expand Up @@ -47,7 +48,7 @@ html, body {
.Taui-Dock-content .heading {
color: rgba(255, 255, 255);
margin: 1rem 0 0.5rem;
font-weight: 700;
font-weight: var(--bold);
}

.Taui-Dock-content .heading a {
Expand All @@ -59,7 +60,7 @@ html, body {
color: rgba(255, 255, 255);
font-size: 1.5rem;
margin: 1rem 0;
font-weight: 700;
font-weight: var(--bold);
}

.Taui-ActionLog {
Expand Down Expand Up @@ -122,7 +123,7 @@ html, body {
}

.TimeCutoff .Time {
font-weight: 700;
font-weight: var(--bold);
color: rgba(255, 255, 255);
}

Expand Down Expand Up @@ -161,7 +162,7 @@ html, body {
background-color: #4269a4;
color: rgba(255, 255, 255);
padding: 0.5rem 1rem;
font-weight: 700;
font-weight: var(--bold);
cursor: pointer;
display: block;
}
Expand Down

0 comments on commit bbe40db

Please sign in to comment.