41 lines
533 B
CSS
41 lines
533 B
CSS
* {
|
|
box-sizing:border-box;
|
|
}
|
|
|
|
html, body {
|
|
padding:0;
|
|
margin:0;
|
|
height:100%;
|
|
width:100%;
|
|
color:#dedede;
|
|
background-color: #849091;
|
|
font-family: 'Helvetica Neue', Helvetica, sans-serif;
|
|
}
|
|
|
|
header {
|
|
width:100%;
|
|
position:absolute;
|
|
text-align:center;
|
|
bottom:20px;
|
|
}
|
|
|
|
header a, header a:visited {
|
|
font-size:18px;
|
|
color:#dedede;
|
|
text-decoration:none;
|
|
}
|
|
|
|
header a:hover {
|
|
text-decoration:underline;
|
|
}
|
|
|
|
section {
|
|
background-color:#2B2B2A;
|
|
text-align:center;
|
|
padding:16px;
|
|
}
|
|
|
|
#message {
|
|
padding:6px;
|
|
}
|