33 lines
376 B
CSS
33 lines
376 B
CSS
body {
|
|
font-family: 'Open Sans';
|
|
}
|
|
|
|
#content {
|
|
margin-top: 1.5em;
|
|
}
|
|
|
|
#site-logo {
|
|
position: fixed;
|
|
left: 3em;
|
|
top: 3em;
|
|
}
|
|
|
|
h1 {
|
|
padding: 1em 3.5em 0;
|
|
font-size: 250%;
|
|
font-weight: 400;
|
|
}
|
|
|
|
#warning {
|
|
padding: .2em 0;
|
|
background: #8a1c1c;
|
|
color: white;
|
|
font-style: italic;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
z-index: 1000000;
|
|
}
|