-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
60 lines (50 loc) · 1.24 KB
/
styles.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
/* styles.css */
/* Add styles here to customize the appearance of your app */
@import url(https://fonts.googleapis.com/css?family=Orbitron:700);
:root {
--text_color: #ff2522;
--background_color: #000;
--shadow1_color: #000;
--shadow2_color: #ff2522;
}
html, body {
font-family: 'Orbitron', sans-serif;
background: var(--background_color);
-webkit-app-region: drag;
}
.money {
/* -webkit-app-region: drag; */
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 50px;
}
.timer {
/* -webkit-app-region: drag; */
position: fixed;
top: 95%;
left: 95%;
transform: translate(-95%, -95%);
font-size: 12px;
}
.pph {
position: fixed;
display: inline;
top: 5%;
left: 5%;
transform: translate(-5%, -5%);
font-size: 10px;
}
.inline {
display: inline;
}
.shadow {
color: var(--text_color);
text-shadow: 0 0 2px var(--shadow1_color), 0 0 3px var(--shadow1_color), 0 0 5px var(--shadow1_color), 0 0 7px var(--shadow2_color), 0 0 7px var(--shadow2_color), 0 0 7px var(--shadow2_color), 0 0 12px var(--shadow2_color), 0 0 15px var(--shadow2_color);
}
.draggable {
height: 20px;
width: 260px;
-webkit-app-region: drag;
}