diff --git a/dom-playground-master/js/fix-the-page.js b/dom-playground-master/js/fix-the-page.js index 0e94672..e55a678 100755 --- a/dom-playground-master/js/fix-the-page.js +++ b/dom-playground-master/js/fix-the-page.js @@ -66,6 +66,12 @@ resources.forEach(resource => { resourceList.appendChild(listItem); }); +let body = document.querySelector('body') +body.style.font = '10pt/14pt "Trebuchet MS", sans-serif' +body.style.color = '#000033' +body.style.background = '#69f' +body.style.margin = '0' + let pageWrapper = document.querySelector('body>div') pageWrapper.className = 'page-wrapper'