Make CSS responsive ready

This commit is contained in:
Igor
2025-04-28 08:06:23 +02:00
parent d2c7c4efab
commit f43aa33be6

View File

@@ -10,3 +10,15 @@
pre.custom-bash-block, code.custom-bash-block {
font-size: 24pt;
}
@media (max-width: 768px) {
pre.custom-bash-block, code.custom-bash-block {
font-size: 14pt; /* smaller size for tablets/phones */
}
}
@media (max-width: 480px) {
pre.custom-bash-block, code.custom-bash-block {
font-size: 12pt; /* even smaller for small phones */
}
}