diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index d66e5e9c..d984f112 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -50,3 +50,16 @@ body { margin: 2em 0; } } + +/* Increase font size on screens smaller than 768px */ +@media (max-width: 768px) { + body { + font-size: 1.1em; /* Adjust as needed */ + } + /* Adjust other elements as needed */ + h1, h2, h3, h4, h5, h6 { + font-size: 1.2em; /* Adjust heading font sizes */ + } + /* Additional adjustments */ +} +