e3a0289ea2
* fix: remove user stories * fix: remove assets + add sample.env, dotenv, gitignore * fix: update package-lock * fix: add dotenv + update package-lock * feat: remove error handling * fix: remove mlab env var * fix: remove bashrc * remove express body parser + organize code * fix: remove gitconfig
60 lines
830 B
CSS
Vendored
60 lines
830 B
CSS
Vendored
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family:sans-serif;
|
|
margin: 25px;
|
|
color: #222;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
h1 {
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
p {
|
|
max-width: 900px;
|
|
}
|
|
|
|
form {
|
|
margin-bottom: 25px;
|
|
padding: 15px;
|
|
background-color: #87D37C;
|
|
display: inline-block;
|
|
width: 100%;
|
|
max-width: 340px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
input {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
padding: 5px;
|
|
width: 100%;
|
|
border: 1px solid lightgrey;
|
|
border-radius: 3px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
input[type=submit] {
|
|
font-size: 16px;
|
|
border-radius: 3px;
|
|
background-color: #E4F1FE;
|
|
border: 1px solid grey;
|
|
box-shadow: 2px 2px #999;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type=submit]:hover {
|
|
background-color: #FFFEC4;
|
|
}
|
|
|
|
code {
|
|
font-family: monospace;
|
|
font-size: 1.2em;
|
|
background-color: #FFFEC4;
|
|
padding: 2px;
|
|
}
|