41 lines
470 B
CSS
41 lines
470 B
CSS
body {
|
|
width: inherit;
|
|
margin: 0 22.5%;
|
|
font-family: Sans-Serif;
|
|
background-color: #D0D0D0;
|
|
font-size: 14pt;
|
|
color: #111111;
|
|
}
|
|
|
|
/*
|
|
@media screen and (max-width: 900px) {
|
|
body {
|
|
width: 90%;
|
|
}
|
|
}
|
|
*/
|
|
|
|
footer {
|
|
padding: 0 4em;
|
|
font-size: 10pt;
|
|
text-align: center;
|
|
}
|
|
|
|
.block {
|
|
overflow: auto;
|
|
}
|
|
|
|
figure {
|
|
float: right;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
h1, h2 {
|
|
text-align: center;
|
|
}
|