set monospace font for the whole page

This commit is contained in:
filifa 2025-12-15 20:45:47 -05:00
parent f9c2b63476
commit 7e18fe15b0
1 changed files with 4 additions and 2 deletions

View File

@ -14,12 +14,15 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
html {
font-family: monospace;
}
#calculator { #calculator {
display: grid; display: grid;
grid-template-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr);
gap: 0.3rem; gap: 0.3rem;
font-size: xx-large; font-size: xx-large;
font-family: monospace;
} }
input { input {
@ -117,6 +120,5 @@ footer {
display: flex; display: flex;
justify-content: center; justify-content: center;
font-size: small; font-size: small;
font-family: monospace;
margin: 5%; margin: 5%;
} }