4457ffe0b1
* feat: remove .gitconfig * feat: remove hyperdev assets * feat: add .gitignore * feat: add sample.env * feat: remove user stories from readme * feat: update packages and add dotenv * fix: update server.js * fix: port variable * fix: remove user stories from index + add favicon * fix: replace tabs with spaces * fix: css spacing + remove unused css
43 lines
522 B
CSS
Vendored
43 lines
522 B
CSS
Vendored
/****** Main Styling ******/
|
|
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
font-size: 16px;
|
|
color: #222;
|
|
background-color: #ECF0F1;
|
|
text-align: center;
|
|
}
|
|
|
|
.container {
|
|
padding: 0;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 60px;
|
|
}
|
|
|
|
a {
|
|
color: #2574A9;
|
|
}
|
|
|
|
input {
|
|
display: block;
|
|
position: relative;
|
|
margin: 10px auto;
|
|
}
|
|
|
|
input#button {
|
|
width: 230px;
|
|
}
|
|
|
|
.view {
|
|
position:relative;
|
|
margin: auto;
|
|
margin-top: 40px;
|
|
border: 1px solid #aaa;
|
|
padding: 20px;
|
|
width: 60%;
|
|
min-width: 400px;
|
|
}
|