We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Images posted on the website are tiny on mobile devices, please refer to the screenshot below:
Here is the link to this page: https://cs107e.github.io/assignments/assign2/extension/
Targeting image blocks of this kind:
![5-way unsoldered](../images/rotary_wheel.jpg){: .w-25 .zoom}
change image styling class from .w-25 to .h-25 and remove .zoom (looks a bit different than original styling)
.w-25
.h-25
.zoom
write in your own style sheet.css a class that has adaptive sizing for phones using something like:
@media screen and (max-aspect-ratio: 4/4) { }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Images posted on the website are tiny on mobile devices, please refer to the screenshot below:
Here is the link to this page:
https://cs107e.github.io/assignments/assign2/extension/
potential solutions:
Targeting image blocks of this kind:
cheap and dirty:
change image styling class from
.w-25
to.h-25
and remove.zoom
(looks a bit different than original styling)
reasonable solution:
write in your own style sheet.css a class that has adaptive sizing for phones using something like:
The text was updated successfully, but these errors were encountered: