Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
65 Zeilen
840 B
CSS
65 Zeilen
840 B
CSS
body {
|
|
background: #003b6f;
|
|
font-family: Roboto, sans-serif;
|
|
color: white;
|
|
font-size: small;
|
|
text-align: center;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 0;
|
|
}
|
|
|
|
ul li {
|
|
list-style:none;
|
|
display: inline-block;
|
|
margin: 1em;
|
|
vertical-align: text-top;
|
|
}
|
|
|
|
ul li img {
|
|
height: 5em;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
font-size: small;
|
|
}
|
|
|
|
a[download] {
|
|
padding: 0.2em 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
span {
|
|
width: 100%;
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 0;
|
|
background: #003b6f;
|
|
padding: 1em 0;
|
|
border-top: 2px dotted white;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
article {
|
|
margin: 2em 5em;
|
|
text-align: justify;
|
|
max-width: 1000px;
|
|
display: inline-block;
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
article {
|
|
margin: 1em 3em;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 350px) {
|
|
article {
|
|
margin: 0 1em;
|
|
}
|
|
}
|