-
Notifications
You must be signed in to change notification settings - Fork 0
/
blur.css
71 lines (57 loc) · 857 Bytes
/
blur.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
#blur-image{
display:block;
width:600px;
height:800px;
margin:0 auto;
filter:blur(8px);
-webkit-filter:blur(8px);
-moz-filter:blur(8px);
-ms-filter:blur(8px);
-o-filter:blur(8px);
}
#blur-div{
width:600px;
height:800px;
margin:0 auto;
position:relative;
position:absolute;
left:0px;
top:0px;
z-index:0;
}
#canvas{
display:block;
margin:0 auto;
position:absolute;
left:0px;
top:0px;
z-index:100;
}
.button{
display:block;
position:absolute;
z-index:200;
width:100px;
height:30px;
color:white;
text-decoration:none;
text-align:center;
line-height:30px;
border-radius:5px;
}
#reset-button{
left:100px;
bottom:20px;
background:#085;
}
#reset-button:hover{
background-color:#047;
}
#show-button{
right:100px;
bottom:20px;
background-color:#085;
}
#show-button:hover{
background-color:#074;
}