Roughing out the demo app

This commit is contained in:
Nate Taylor
2019-10-23 07:41:03 -05:00
parent 5bc58a2d40
commit 94be06d3c4
2841 changed files with 274065 additions and 2 deletions

60
src/site.css Normal file
View File

@@ -0,0 +1,60 @@
body {
background-color: #404040;
font-family: GothamSSm, Helvetica, Arial, sans-serif;
color: white;
}
a {
text-decoration: none;
color: #F05A28
}
h1 {
text-transform: uppercase;
}
button {
border: none;
color: white;
padding: 2rem;
background: transparent;
font-size: 1rem;
cursor: pointer;
}
div.results {
border: 1px solid gray;
}
.bg-orange {
background: #F05A28
}
.bg-blue {
background: #2A9FBC
}
.bg-green {
background: #9BC850
}
.bg-purple {
background: #675BA7
}
.orange {
color: #F05A28
}
.blue {
color: #2A9FBC
}
.green {
color: #9BC850
}
.purple {
color: #675BA7
}