uke 5 start

This commit is contained in:
Geir Okkenhaug Jerstad 2024-09-02 09:06:12 +02:00
parent 3460b9ca70
commit 4c29c3222d
2 changed files with 18 additions and 19 deletions

View file

@ -19,16 +19,9 @@
let fontSize;
let isDarkMode = false;
// view
updateView()
function updateView() {
// let extraWord = '';
// if (number < 10){
// extraWord = 'ikke';
// } else {
// extraWord = '';
// }
document.getElementById('app').innerHTML = /*HTML*/ `
<p>Hei ${aName ?? 'på deg!'}</p>
Navn:<br>
@ -82,7 +75,7 @@
><br>
`;
let bodyStyle = document.body.style;
bodyStyle.fontFamily = fontFamily ?? serif;
bodyStyle.fontFamily = fontFamily ?? 'serif';
if (isDarkMode){
bodyStyle.background = 'black';
bodyStyle.color = 'white';
@ -90,7 +83,7 @@
bodyStyle.background = 'white';
bodyStyle.color = 'black';
};
bodyStyle.fontSize = fontSize;
}