My goal is to reduce the size of my entire Bootstrap project without adjusting the font size. I am currently using the StarAdmin template.
Despite my attempts to alter the font size in my style.css, any changes made to the "font-size" property do not reflect on the website.
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
display: block;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 0.8rem; // <===== changed value but nothing happend
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
I simply want to adjust the base font size to resize my entire webpage.