-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle_overlay.css
117 lines (101 loc) · 1.74 KB
/
style_overlay.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
115
116
117
.grayScreen {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
}
#overlayContainer{
position:absolute;
top:0;
width:100%;
}
.overlayText, .setupText {
width: 90%;
background:#567e7e;
display:inline-block;
border-radius: 6px;
border: 3px solid #3f5f5f;
padding: 10px;
text-align: left;
}
.overlayText {
max-width: 600px;
margin-top:30px;
margin-bottom:30px;
}
.setupText {
max-width: 600px;
margin-top:10px;
margin-bottom:10px;
}
div.fadeInOut {
animation: fadeInOut 2s;
-webkit-animation: fadeInOut 2s;
-moz-animation: fadeInOut 2s;
-o-animation: fadeInOut 2s;
-ms-animation: fadeInOut 2s;
}
@keyframes fadeInOut {
0% {opacity:0;}
15% {opacity:1;}
65% {opacity:1;}
80% {opacity:0;}
100% {opacity:0;}
}
@-moz-keyframes fadeInOut {
0% {opacity:0;}
15% {opacity:1;}
65% {opacity:1;}
80% {opacity:0;}
100% {opacity:0;}
}
@-webkit-keyframes fadeInOut {
0% {opacity:0;}
15% {opacity:1;}
65% {opacity:1;}
80% {opacity:0;}
100% {opacity:0;}
}
@-o-keyframes fadeInOut {
0% {opacity:0;}
15% {opacity:1;}
65% {opacity:1;}
80% {opacity:0;}
100% {opacity:0;}
}
@-ms-keyframes fadeInOut {
0% {opacity:0;}
15% {opacity:1;}
65% {opacity:1;}
80% {opacity:0;}
100% {opacity:0;}
}
div.fadeIn, div.overlayText, div.grayScreen {
animation: fadeIn 0.3s;
-webkit-animation: fadeIn 0.3s;
-moz-animation: fadeIn 0.3s;
-o-animation: fadeIn 0.3s;
-ms-animation: fadeIn 0.3s;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-moz-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-webkit-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-o-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-ms-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}