66 lines
918 B
CSS
66 lines
918 B
CSS
html {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
section {
|
|
margin-bottom: 4em;
|
|
}
|
|
|
|
.full-picture {
|
|
height: 100%;
|
|
width: 100%;
|
|
min-height: 250px;
|
|
}
|
|
|
|
.bordered-picture img {
|
|
height: 80%;
|
|
width: 80%;
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
margin-top: 3em;
|
|
}
|
|
|
|
.pictures-line {
|
|
width: 80%;
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.pictures-line img {
|
|
position: relative;
|
|
display: inline;
|
|
width: 33%;
|
|
height: auto;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 7em;
|
|
text-align: center;
|
|
position: relative;
|
|
font-family: serif;
|
|
font-size: 11px;
|
|
color: #555;
|
|
background-color: #EEE;
|
|
border-top: solid 2px #DDD;
|
|
padding-bottom: 10px;
|
|
padding-top: 14px;
|
|
}
|
|
|
|
footer p {
|
|
margin: 0;
|
|
}
|
|
|
|
footer a {
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-family: sans-serif;
|
|
color: #111;
|
|
}
|