-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaster.css
114 lines (93 loc) · 2 KB
/
Master.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body {
/* background: #333333; */
/* background: url(datafiles/sprites/bg5FullHd.png); */
background: url(datafiles/backgrounds/background2-g1.png);
background-size: cover;
margin: 0px;
padding: 0px;
overflow: hidden;
font-family: fnt_Comforta_Bold;
}
/* TODO rename */
canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
/* transition-timing-function: ease-in-out; */
/* transition: width 0.3s, height 0.3s, margin 0.3s, top 0.3s; */
/* box-shadow: #000033 0px 0px 90px; */
/* border: none; */
/* position: fixed; */
/* top: 2%; */
/* display: block; */
/* left: 50%; */
/* transform: translateX(-50%); */
}
/* #myCanvas.fullscreen { */
/* top: 0; */
/* } */
.overlay {
z-index: 999;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
/* background: rgba(30, 30, 100, 0.7); */
/* background: #236; */
background: rgba(40, 40, 130, 0.3);
backdrop-filter: blur(20px);
color: rgba(210, 230, 255, 0.8);
font-size: 1.2em;
user-select: none;
}
.overlayContent {
/* background: red; */
display: grid;
width: 80%;
height: 100%;
max-width: 512px;
margin: 0 auto;
overflow-x: hidden;
overflow-y: auto;
scrollbar-color: #5566ee transparent;
scrollbar-width: thin;
}
.overlayContent input {
background: #236;
color: rgba(210, 230, 255, 0.8);
border: 1px solid rgba(210, 230, 255, 0.8);
font-size: 1.4em;
border-radius: 5px;
padding: 4px;
}
.overlayContent input[type="button"] {
background: #236;
color: rgba(210, 230, 255, 0.8);
border: 2px solid rgba(210, 230, 255, 0.8);
font-size: 1.4em;
width: 45%;
border-radius: 5px;
}
.overlayContent input[type="checkbox"] {
width: 1.4em;
height: 1.4em;
border-radius: 10px;
}
.hidden {
display: none;
}
@font-face {
font-family: fnt_Comforta_Regular;
src: url(datafiles/fonts/Comfortaa-Regular.ttf);
}
@font-face {
font-family: fnt_Comforta_Bold;
src: url(datafiles/fonts/Comfortaa-Bold.ttf);
}
@font-face {
font-family: fnt_Comforta_Light;
src: url(datafiles/fonts/Comfortaa-Light.ttf);
}