14 lines
211 B
CSS
14 lines
211 B
CSS
img {
|
|
float: right;
|
|
margin: 1em;
|
|
max-width: 20%;
|
|
height: auto;
|
|
}
|
|
|
|
/* Responsive: remove float on small screens */
|
|
@media screen and (max-width: 768px) {
|
|
img {
|
|
max-width: 50%;
|
|
}
|
|
}
|