jquery.terminal
jquery.terminal copied to clipboard
Document responsive font size
I have idea for a new feature for jQuery Terminal
In Figlet Pipe demo I've added responsive font size with media queries and --size
. It should be documented.
https://codepen.io/jcubic/pen/vYLvvXx?editors=0110
This is important for big screens, default font is way to small for big screens
Alternative is:
@media (min-width: 800px) {
:root {
--size: 1.2;
}
}
@media (min-width: 1200px) {
:root {
--size: 1.5;
}
}