Add example images; media queries

This commit is contained in:
kfrn
2017-03-05 08:34:16 +13:00
parent c85d6c5874
commit cdd65fd765
4 changed files with 19 additions and 0 deletions

View File

@ -18,6 +18,7 @@ img {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
}
.sample-image {
@ -88,3 +89,15 @@ div {
.footnote {
font-size: 90%;
}
@media only screen and (min-width: 576px) {
img {
max-width: 60%;
}
}
@media only screen and (min-width: 992px) {
img {
width: 100%;
}
}