-
Notifications
You must be signed in to change notification settings - Fork 2
/
blur.css
61 lines (57 loc) · 963 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
#blur-image{
display: block;
width: 800px;
height: 600px;
margin: 0 auto;
filter:blur(10px);
-ms-filter:blur(10px);
-webkit-filter:blur(10px);
-moz-filter:blur(10px);
position: absolute;
left: 0;
top: 0;
z-index: 0;
}
#blur-div{
width:800px;
height: 600px;
margin: 0 auto;
position: relative;
}
#canvas{
display:block;
margin: 0 auto;
position: absolute;
left: 0;
top: 0;
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: 200px;
bottom: 20px;
background: #058;
}
#reset-button:hover{
background: #136c77;
}
#show-button{
right: 200px;
bottom: 20px;
background: #085;
width:200px;
}
#show-button:hover{
background: #0d775e;
}