-
Notifications
You must be signed in to change notification settings - Fork 0
/
global_style.css
58 lines (45 loc) · 1.21 KB
/
global_style.css
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
:root {
--workspacewidth: 19200px;
--workspaceheight: 10800px;
--workspacecenterx: calc(var(--workspacewidth)/-2 + 50vw); /* = width/2 */
--workspacecentery: calc(var(--workspaceheight)/-2 + 50vh); /* = height/2 */
}
* {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #222;
}
::-webkit-scrollbar-thumb {
background: #444;
}
::-webkit-scrollbar-thumb:hover {
background: #666;
}
html, body {
margin: 0;
height: 100%;
width: 100%;
/*overflow: hidden;*/
}
p, span, h3, h2, h1, a, li{
color: #ffffff;
}
h1 {
font-size: 26px;
}
a {
font-size: 20px;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}