Changed Settings to use 2vh as font-size instead of 3vh

This commit is contained in:
Felix Homa 2022-08-10 18:29:09 +02:00
parent 7c67a848c7
commit 4c5288d4c5
Signed by: felix.homa
GPG Key ID: 43610F311720D3DA
1 changed files with 5 additions and 1 deletions

View File

@ -403,7 +403,7 @@
document.body.requestFullscreen().then(function() { document.body.requestFullscreen().then(function() {
var b = document.getElementById("fullscreen_btn").style; var b = document.getElementById("fullscreen_btn").style;
b.transform="scale(1)"; b.transform="scale(1)";
b.right=0; b.right="25vw";
b.bottom=0; b.bottom=0;
b.display="block"; b.display="block";
}).catch(function(rej){}); }).catch(function(rej){});
@ -520,6 +520,10 @@
font-size: 3vh; font-size: 3vh;
} }
#inputs {
font-size: 2vh;
}
#inExam table { #inExam table {
padding-top: 15vh; padding-top: 15vh;
font-size: 4vh; font-size: 4vh;