-
Notifications
You must be signed in to change notification settings - Fork 0
/
fade.css
64 lines (63 loc) · 1.03 KB
/
fade.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
@import url('http://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
*
.fontt
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.container
{
position: relative;
width: 58%;
min-height: 44%;
display: flex;
justify-content: center;
align-items: center;
transition: 0.8s;
padding: 20px;
}
.container#blur.active
{
filter: blur(20px);
pointer-events: none;
user-select: none;
}
.container .content
{
position: relative;
max-width: 800px;
}
hmemes
{
font-weight: 600;
margin-bottom: 10px;
color: #333;
}
.container .content img
{
max-width: 100%;
display: block;
}
#popup
{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width:600px;
padding: 50px;
pointer-events: none;
user-select: none;
visibility: hidden;
opacity: 0;
transition: 0.8s;
}
#popup.active
{
top: 50%;
visibility: visible;
opacity: 1;
transition: 0.8s;
}