-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (43 loc) · 797 Bytes
/
style.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
html, body {
margin: 0;
padding: 0;
width:100%;
height:100%;
}
#player{
display:none;
}
#canvas {
display: block;
float:left;
width:100%;
height:100%;
padding:0px;
margin:0px;
-webkit-filter: blur(10px);
-moz-filter: blur(10px);
-o-filter: blur(10px);
-ms-filter: blur(10px);
filter: blur(10px);
}
#canvas canvas{
display:block;
}
#canvas.reveal{
-webkit-filter: blur(0px);
-moz-filter: blur(0px);
-o-filter: blur(0px);
-ms-filter: blur(0px);
filter: blur(0px);
-webkit-transition: 0.5s -webkit-filter linear;
-o-transition: 0.5s -o-filter linear;
}
#swal2-title{
color: #98ff98;
}
#swal2-content, #swal2-title{
font-family: sans-serif;
}
.swal2-popup{
background:#122539;
}