33 lines
446 B
CSS
33 lines
446 B
CSS
|
body {
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
text-align: center;
|
||
|
max-width: 500px;
|
||
|
position: relative;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
body h1 {
|
||
|
font-weight: lighter;
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
body h3 {
|
||
|
margin-top: 0;
|
||
|
font-weight: lighter;
|
||
|
}
|
||
|
|
||
|
body input {
|
||
|
margin: 5px;
|
||
|
}
|
||
|
|
||
|
body footer {
|
||
|
position: fixed;
|
||
|
width: 220px;
|
||
|
left: calc(50% - 110px);
|
||
|
bottom: 10px;
|
||
|
}
|
||
|
|
||
|
body footer a {
|
||
|
color: black;
|
||
|
}
|
||
|
/*# sourceMappingURL=styles.css.map */
|