Skip to content

Commit

Permalink
edit css file
Browse files Browse the repository at this point in the history
  • Loading branch information
cldougl committed Nov 3, 2017
1 parent 67ff671 commit 628f261
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _data/cache_bust_css.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
42b96db83d55a432e71a33e25367e48f ../all_static/css/main.css
edb1a72afc7585ae52264577f428422f ../all_static/css/main.css
a5765df8bc2358dd61c19edcc0cbef7d ../all_static/css/normalize.css
13 changes: 9 additions & 4 deletions all_static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ body {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; }
body p, body section.section div.content-box, section.section body div.content-box, body tr, body th, body td {
body p, body section.section div.content-box, section.section body div.content-box {
line-height: 1.85;
font-weight: 400 !important; }
body p a, body section.section div.content-box a, section.section body div.content-box a, body tr a, body th a, body td a {
body p a, body section.section div.content-box a, section.section body div.content-box a {
font-weight: 400 !important;
color: #447bdc !important; }
body p a:hover, body section.section div.content-box a:hover, section.section body div.content-box a:hover, body tr a:hover, body th a:hover, body td a:hover {
body p a:hover, body section.section div.content-box a:hover, section.section body div.content-box a:hover {
color: #2391fe !important; }
body p *, body section.section div.content-box *, section.section body div.content-box *, body tr *, body th *, body td * {
body p *, body section.section div.content-box *, section.section body div.content-box * {
font-weight: 400 !important; }
body main.\--page {
-webkit-box-flex: 1;
Expand Down Expand Up @@ -69,6 +69,11 @@ ul {
padding: 0;
list-style-type: none; }

table {
margin: 0;
padding: 0;
list-style-type: none; }

a:link, a:visited, a:active {
color: currentColor; }

Expand Down
8 changes: 7 additions & 1 deletion scss/_components/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ body:not(:-moz-handler-blocked) {
body {
display: flex;
flex-direction: column;
p, tr, th, td {
p {
line-height: 1.85;
font-weight: 400 !important;
a {
Expand Down Expand Up @@ -62,6 +62,12 @@ ul {
list-style-type: none;
}

table {
margin: 0;
padding: 0;
list-style-type: none;
}

a:link, a:visited, a:active {
color: currentColor;

Expand Down

0 comments on commit 628f261

Please sign in to comment.