summaryrefslogtreecommitdiff
path: root/src/utility/index.js
blob: 80b7cb2eef182c1749690808abb47893705132c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Stars from "./stars";

// Initialize the DOM
export function initializeDOM() {
  document.body.style.color = "#fff";
  document.body.style.margin = 0;
  document.body.style.padding = 0;
  document.body.style.height = "100%";
  document.body.style.width = "100%";
  document.body.style.fontFamily = "Helvetica, Arial";
  document.body.style.overflow = "hidden";
  document.body.parentNode.style.margin = 0;
  document.body.parentNode.style.padding = 0;
  document.body.parentNode.style.height = "100%";
  document.body.parentNode.style.width = "100%";
  document.body.parentNode.style.backgroundColor = "#111";
  Stars();
}