-
Notifications
You must be signed in to change notification settings - Fork 23
/
popup-form.css
91 lines (78 loc) · 1.4 KB
/
popup-form.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* pop-up form */
.popup{
background-color: #cad3db;
width: 65%;
position: fixed;
transform: translate(-50%,-50%);
left: 50%;
top: 50%;
border-radius: 8px;
font-family: "Poppins",sans-serif;
display: none;
text-align: center;
box-shadow: 5px 5px 30px rgba(0,0,0,.2);
z-index: 900;
}
.subscribe-popup-middle{
padding: 10px 20%;
z-index: 1000;
background-color: #ffffff;
text-align: center;
border-radius: 8px;
}
.subscribe-popup-lower{
height: 52px;
}
.popup h2{
margin-top: 10px;
font-size: 32px;
padding-right: 10px;
}
.popup button{
display: block;
position: absolute;
top: 0;
right: 0;
margin: 10px 10px auto;
background-color: transparent;
font-size: 30px;
color: black;
background: #ffffff;
border-radius: 100%;
width: 40px;
height: 40px;
border: none;
outline: none;
cursor: pointer;
}
.popup p{
font-size: 18px;
text-align: center;
margin: 20px 0;
line-height: 25px;
border-radius: 8px;
}
.popup-email{
text-align: center;
}
.popup-subscribe{
display: block;
width: 150px;
position: relative;
margin: 10px auto;
font-size: 17px;
text-align: center;
background-color: #007bff;
border-radius: 10px;
color: #ffffff;
text-decoration: none;
padding: 10px 0;
}
@media (max-width: 1028px) {
.popup h2{
font-size: 20px;
}
.subscribe-popup-upper{
height: 40px;
}
}