This commit is contained in:
S Stewart 2018-11-18 18:23:46 -06:00
parent 43069cec88
commit b18188cdeb
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
html, body {
background-color: #23272a;
color: white;
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-flow: column nowrap;
margin: 0;
}
@media (max-width: 500px) {
html,
body {
display: inherit !important;
padding: 1em;
}
main {
width: 100%;
}
}
* { box-sizing: border-box; }
.rounded-thing {
border-radius: 5px;
background-color: #2c2f33;
padding: 10px;
}
input { padding: 5px; }
input[type=submit] { padding: 5px; }
input[type=submit]:hover { background-color: #7298da; padding: 5px; }