Make images look better in iframe

This commit is contained in:
Matthew Grove
2018-12-11 19:23:12 +00:00
parent 5df924af7c
commit 832aacddbc

View File

@@ -5,7 +5,7 @@ html, body {
img { img {
width: 50%; width: 50%;
box-shadow: 3px 3px 6px 2px rgba(10,10,10,0.5); box-shadow: 3px 3px 6px 2px rgba(10,10,10,0.5);
margin: 10px; margin: 10px 0;
border-radius: 6px; border-radius: 6px;
} }
@media screen and (max-width: 1000px) { @media screen and (max-width: 1000px) {
@@ -30,7 +30,7 @@ img {
} }
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
img { img {
width: calc(100% - 15px); width: 100%;
} }
} }