-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathdemo-events.css
98 lines (98 loc) · 1.89 KB
/
demo-events.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
#pagecontent.scanning {
-webkit-filter: blur(1px) grayscale(50%);
}
.data {
font-family: "Lucida Console", Monaco, monospace;
font-size: 80%;
}
form ul {
list-style: none;
}
.dialog {
position: absolute;
top: 25%;
left: 25%;
margin: auto;
padding: 20px;
border: 3px solid black;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
font-family: 'Trebuchet MS', sans-serif;
font-size: 150%;
font-weight: bold;
width: auto;
}
#overlay {
position: fixed;
display: none;
background-color: rgba(0, 0, 0, 0.25);
left: 0;
right: 0;
top: 0;
bottom: 0;
text-align: center;
z-index: 999;
}
#scanning {
position: absolute;
top: 25%;
left: 25%;
margin: auto;
padding: 20px;
border: 3px solid black;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
font-family: 'Trebuchet MS', sans-serif;
font-size: 150%;
font-weight: bold;
width: auto;
z-index: 1000;
color: black;
background-color: #6495ed;
}
#success {
position: absolute;
top: 25%;
left: 25%;
margin: auto;
padding: 20px;
border: 3px solid black;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
font-family: 'Trebuchet MS', sans-serif;
font-size: 150%;
font-weight: bold;
width: auto;
display: none;
color: black;
background-color: #5be298;
}
#failure {
position: absolute;
top: 25%;
left: 25%;
margin: auto;
padding: 20px;
border: 3px solid black;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
font-family: 'Trebuchet MS', sans-serif;
font-size: 150%;
font-weight: bold;
width: auto;
display: none;
color: black;
background-color: #cd5c5c;
}
#pagecontent,
#background {
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
}
/*# sourceMappingURL=demo-events.css.map */