Skip to content

Commit

Permalink
Consolidated styles
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly committed May 17, 2021
1 parent cd838c6 commit d18a655
Showing 1 changed file with 26 additions and 8 deletions.
34 changes: 26 additions & 8 deletions src/style/style.scss
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
@import 'globalvars';
@import 'container';

$textcolor: #000;

body,
html,
body,
button {
color: $textcolor;
font-family: 'Varela Round', sans-serif !important;
color: rgb(60, 66, 87);
font-family: -apple-system , BlinkMacSystemFont , "Segoe UI" , "Roboto" , "Helvetica Neue" , "Ubuntu" , sans-serif;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}

h1, h2, h3, nav {
font-family: 'Varela Round', sans-serif;
}

body {
background-color: #eee;
background-color: rgb(247, 250, 252);
}

// To make icons a little less crowded
Expand All @@ -21,3 +23,19 @@ body {
margin-right: 4px;
vertical-align: middle;
}

.aw-container {
background-color: #fff;
border: 1px solid rgb(235, 237, 243);
border-radius: 5px;
}

// TODO pretty sure we can replace these styles with something bootstrap native
.footer {
float: right;
text-align: right
}

.footer a {
margin-left: 13px;
}

0 comments on commit d18a655

Please sign in to comment.