src/index.css 741 B raw
1
@font-face {
2
  font-family: "Commit Mono";
3
  src: url("/CommitMono-400-Regular.otf") format("opentype");
4
  font-weight: 400;
5
  font-style: normal;
6
}
7
8
@font-face {
9
  font-family: "Commit Mono";
10
  src: url("/CommitMono-700-Regular.otf") format("opentype");
11
  font-weight: 700;
12
  font-style: normal;
13
}
14
15
* {
16
  padding: 0;
17
  margin: 0;
18
  box-sizing: border-box;
19
  font-family: "Commit Mono", monospace, sans-serif;
20
  scrollbar-width: none;
21
  -ms-overflow-style: none;
22
}
23
24
html {
25
  background: #121113;
26
  color: #ffffff;
27
  font-size: 14px;
28
  line-height: 1.6;
29
}
30
31
html::-webkit-scrollbar {
32
  display: none;
33
}
34
35
body {
36
  margin: 0;
37
  overflow: hidden;
38
  width: 100vw;
39
  height: 100vh;
40
}
41
42
#root {
43
  width: 100%;
44
  height: 100%;
45
  position: relative;
46
}