-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylePopups.css
76 lines (71 loc) · 1.13 KB
/
stylePopups.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
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.container
{
position: relative;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #fff173;
transition: 0.5s;
padding: 20px;
}
.container#blur.active
{
filter: blur(20px);
pointer-events: none;
user-select: none;
}
.container .content
{
position: relative;
max-width: 800px;
}
h2{
font-weight: 600;
margin-bottom: 10px;
color: #333;
}
.container .content img
{
max-width: 100%;
display: block;
}
a
{
position: relative;
padding: 5px 20px;
display: inline-block;
margin-top: 20px;
text-decoration: none;
color: #fff;
background: #111;
}
#popup
{
position: fixed;
top: 40%;
Left: 50%;
transform: translate(-50%, -50%);
width: 600px;
padding: 50px;
box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
background: #fff;
visibility: hidden;
opacity: 0;
transition: 0.5s;
}
#popup.active
{
top: 50%;
visibility: visible;
opacity: 1;
transition: 0.5s;
}