-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (46 loc) · 1.06 KB
/
Copy pathstyle.css
File metadata and controls
59 lines (46 loc) · 1.06 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
window {
background: rgba(10,10,15,0.78);
border-radius: 16px;
box-shadow:
0 0 25px rgba(0,255,200,0.25),
0 0 60px rgba(0,255,200,0.15);
}
.card {
background: rgba(20,20,30,0.65);
border-radius: 14px;
padding: 10px;
border: 1px solid rgba(255,0,60,0.35);
box-shadow:
inset 0 0 12px rgba(255,255,255,0.04),
0 0 18px rgba(255,0,60,0.25);
}
label {
color: #e6e6e6;
font-family: "JetBrains Mono", monospace;
font-size: 12px;
}
.climate {
font-size: 13px;
font-weight: bold;
color: #00ffc8;
text-shadow:
0 0 6px rgba(0,255,200,0.6),
0 0 12px rgba(0,255,200,0.3);
}
button {
background: rgba(20,20,30,0.7);
color: #ffffff;
border-radius: 10px;
border: 1px solid rgba(255,0,60,0.5);
padding: 6px;
box-shadow:
inset 0 0 6px rgba(255,255,255,0.05),
0 0 12px rgba(255,0,60,0.25);
}
button:hover {
background: #ff003c;
color: black;
box-shadow:
0 0 18px rgba(255,0,60,0.9),
0 0 40px rgba(255,0,60,0.6);
}