-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (87 loc) · 1.74 KB
/
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
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
* {
/*Top Right Bottom Left*/
margin: 0;
user-select: none;
-webkit-user-select: none;
}
@font-face {
font-family: Arcology;
src: url("fonts/Arcology.ttf");
}
@font-face {
font-family: VCR_OSD;
src: url("fonts/VCR_OSD_MONO_1.001.ttf");
}
@font-face {
font-family: D_D;
src: url("fonts/DisposableDroidBB.ttf");
}
@font-face {
font-family: D_D_I;
src: url("fonts/DisposableDroidBB_ital.ttf");
}
body {
background-color: black;
--modeValue: 255;
--x: 1;
--y: 1;
--g1: #f0ec2e;
--g2: #b5a926;
--g3: #f7fac8;
--s1: #b6baba;
--s2: #8c8d8f;
--s3: #e6e8e7;
--b1: #f07026;
--b2: #96461e;
--b3: #f5d7b3;
--u1: #000000;
--u2: #000000; /* for a slight gradient on the unsolved levels */
overflow: hidden;
font-family: D_D;
color: rgb(45, 45, 45);
}
canvas {
position: absolute;
left: calc((100% - var(--unit) * var(--width)) / 2);
top: calc((100% - var(--unit) * var(--height)) / 2);
background-color: rgba(0, 0, 0, 0);
/* filter: grayscale(100%); */
}
p {
color: black;
font-size: calc(var(--unit) * 1);
}
.centeredContent {
position: absolute;
left: 50%;
top: calc((100% - var(--unit) * var(--height)) / 2);
transform: translateX(-50%);
}
.centeredText {
padding-top: 10px;
text-align: center;
}
button {
font-family: Arcology;
font-size: calc(var(--unit) * 0.3);
background-color: rgba(0, 0, 0, 0);
color: black;
border: 1px solid black;
border-radius: 5px;
padding: 5px 20px;
cursor: pointer;
float: center;
margin: 5px 10px;
}
*::-webkit-scrollbar {
width: calc(var(--unit) * 0.15);
}
*::-webkit-scrollbar-track {
background-color: rgba(0, 0, 0, 0.1);
}
*::-webkit-scrollbar-thumb {
background: black;
}
*::-webkit-scrollbar-thumb:hover {
background: rgb(50, 50, 50);
}