summaryrefslogtreecommitdiffstats
path: root/style.css
blob: dfc84b63274c2bc6dea5fd3fdfca44d5fedc9562 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  font-family: 'VT323', monospace;
  font-size: 20px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  background-color: #111;
  color: #11c28a;
}

#text {
  user-select: auto;
  resize: none;
  margin: 20px;
  font-family: 'VT323', monospace;
  color: #11c28a;
  text-shadow: 0 0 5px #11c28a;
  line-height: 1.2;
  font-size: 1.5rem;
  caret-color: white;
  padding: 20px;
  width: 80vw;
  height: 60vh;
  background: #111;
  border: inset 4px;
  border-color: #11c28a;
}

a {
  font-family: 'VT323', monospace;
  color: #11c28a;
  text-decoration: none;
}

button {
  height: 30px;
  font-family: 'VT323', monospace;
  background-color: #111;
  color: #11c28a;
  border: 2px solid rgb(17, 194, 138);
}

.hov {
  cursor: pointer;
}

.hov:hover,
::selection {
  background-color: #11c28a;
  color: #111;
  font-family: 'VT323', monospace;
}


::-webkit-scrollbar {
  width: 8px;
  background: rgba(100, 100, 100, 0.1);
}

::-webkit-scrollbar:horizontal {
  height: 8px;
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-piece {
  background: rgba(100, 100, 100, 0.1);
}

::-webkit-scrollbar-piece:start {
  background: rgba(100, 100, 100, 0.1);
}

::-webkit-scrollbar-thumb {
  background: #11c28a;
}

::-webkit-scrollbar-corner {
  background: rgba(100, 100, 100, 0.3);
}