-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (97 loc) · 1.86 KB
/
style.css
File metadata and controls
117 lines (97 loc) · 1.86 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
html {
position: fixed;
height: 100%;
overflow: hidden;
font-family: sans-serif;
color: #ddd;
}
body {
margin: 0;
width: 100vw;
height: 100vh;
overflow-y: scroll;
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
background-color: #694269;
}
#size {
/*background-color: #420420;*/
overflow: scroll;
}
#screen {
position: fixed;
width: 100vw;
height: 100vh;
}
#scorediv {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 15vh;
display: grid;
place-items: center;
grid-auto-rows: max-content;
margin-top: 5vh;
pointer-events: none;
}
#scorediv > h1 {
margin: 0;
}
#halfway {
pointer-events: none;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
}
/* force scroll bars to be shown on macos */
/* NEVER MIND
* YOU GET NO BOUNCING OR ALWAYS VISIBLE SCROLL BARS
* YOU DON'T GET BOTH
* IT'S ONE OR THE OTHER, BECAUSE FUCK YOU
* FUCK FRONTEND WEB DEV
* THIS IS WHY I STOPPED DOING THIS SHIT
* AAAAAAAAAAAAAAAAAAAAAAAAAAAHHH */
/* nvm figured it out */
::-webkit-scrollbar {
-webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
width: 7px;
}
::-webkit-scrollbar:horizontal {
height: 7px;
}
/*
::-webkit-scrollbar-thumb {
border-radius: 8px;
border: #694269;
background-color: rgba(0, 0, 0, .5);
}
*/
::-webkit-scrollbar-track {
background-color: #694269;
border-radius: 8px;
}
/* our lord and savior */
::-webkit-scrollbar-corner {
background: rgba(0, 0, 0, 0);
}
/*::-webkit-scrollbar:vertical {
width: 7px;
}
::-webkit-scrollbar:horizontal {
height: 7px;
}
::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}
*/
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(255, 255, 255, .5);
box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}