-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpop.css
114 lines (103 loc) · 2.21 KB
/
pop.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap");
body {
background: #262626;
font-family: raleway;
color: white;
margin: 0;
}
.popup .content {
position: absolute;
top: 50%;
left: 50%;
width: 300px;
height: 450px;
z-index: 2;
text-align: center;
padding: 20px;
border-radius: 20px;
background: #262626;
box-shadow: 38px 38px 56px #1e1e1e, -25px -25px 38px #1e1e1e;
z-index: 1;
}
.popup .close-btn {
position: absolute;
right: 20px;
top: 20px;
width: 30px;
height: 30px;
color: white;
font-size: 30px;
border-radius: 50%;
padding: 2px 5px 7px 5px;
background: #292929;
box-shadow: 5px 5px 15px #1e1e1e, -5px -5px 15px #1e1e1e;
}
.popup.active .content {
transition: all 300ms ease-in-out;
transform: translate(-50%, -50%) scale(1);
}
h1 {
text-align: center;
font-size: 32px;
font-weight: 600;
padding-top: 20px;
padding-bottom: 10px;
}
a {
font-weight: 600;
color: white;
}
.input-field .validate {
padding: 20px;
font-size: 16px;
border-radius: 10px;
border: none;
margin-bottom: 15px;
color: #bfc0c0;
background: #262626;
box-shadow: inset 5px 5px 5px #232323, inset -5px -5px 5px #292929;
outline: none;
}
.first-button {
color: white;
font-size: 18px;
font-weight: 500;
padding: 25px 50px;
border-radius: 40px;
border: none;
position: absolute;
top: 3px;
left: 70%;
background: #262626;
box-shadow: 18px 18px 25px #1e1e1e, -15px -15px 25px #1e1e1e;
transition: box-shadow 0.35s ease !important;
outline: none;
}
.first-button:active {
background: linear-gradient(145deg, #222222, #292929);
box-shadow: 5px 5px 10px #262626, -5px -5px 10px #262626;
border: none;
}
.second-button {
color: white;
font-size: 18px;
font-weight: 500;
margin-top: 20px;
padding: 20px 30px;
border-radius: 40px;
border: none;
background: #262626;
box-shadow: 8px 8px 15px #202020, -8px -8px 15px #2c2c2c;
transition: box-shadow 0.35s ease !important;
outline: none;
}
.second-button:active {
background: linear-gradient(145deg, #222222, #292929);
box-shadow: 5px 5px 10px #262626, -5px -5px 10px #262626;
border: none;
outline: none;
}
p {
color: #bfc0c0;
padding: 20px;
}