responsive video/image sizing

This commit is contained in:
Neale Pickett 2022-08-09 19:03:01 -06:00
parent af47868004
commit 7b382d470c
1 changed files with 12 additions and 4 deletions

View File

@ -54,10 +54,6 @@ a:hover {
color: #f83;
}
img {
max-width: 60%;
}
img.face {
margin: 1em;
width: 10em;
@ -144,3 +140,15 @@ button.big {
.tags {
font-size: small;
}
@media (max-width: 768px) {
img, video {
max-width: 100%;
}
}
@media (min-width: 768px) {
img, video {
max-width: 60%;
}
}