-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathApp.css
More file actions
45 lines (39 loc) · 714 Bytes
/
App.css
File metadata and controls
45 lines (39 loc) · 714 Bytes
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
.App {
text-align: center;
}
.text{
color: #fff !important;
-webkit-text-stroke: 0.04em #EA1203;
text-shadow:
0 0 3px #EA1203,
0 0 5px #EA1203,
0 0 8px #EA1203,
0 0 12px #EA1203,
0 0 20px #EA1203,
0 0 25px #EA1203,
0 0 30px #EA1203,
0 0 40px #EA1203 !important;
}
.button{
border: 2px solid #fff !important;
box-shadow:
0 0 5px #1CD34D,
0 0 10px #1CD34D,
0 0 15px #1CD34D,
0 0 20px #1CD34D,
0 0 30px #1CD34D,
inset 0 0 5px rgba(28, 211, 77, 0.3) !important;
}
.appLayout {
height: 100vh;
display: flex;
flex-direction: column;
}
.pageArea {
flex: 1;
overflow: auto;
}
body {
margin: 0;
background: black;
}