-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
58 lines (54 loc) · 1.03 KB
/
popup.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
#firstpopup{
display: none;
}
.bck {
width: 100%;
height: 100%;
display: grid;
place-items: center;
background-color: blue;
position: absolute;
z-index: 300;
position: fixed;
transform: translate(-50%, -50%);
opacity: 50%;
left: 50%;
top: 50%;
}
.mainpopup {
width: 100%;
height: 100%;
display: grid;
place-items: center;
position: absolute;
z-index: 300;
position: fixed;
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
}
.mainpopup_inside {
width: 10cm;
padding: 15px 30px;
height: auto;
border-radius: 10px;
background-color: white;
}
.mainpopup_inside_img {
margin-bottom: 10px;
display: grid;
place-items: center;
font-size: 1.3rem;
font-weight: 600;
font-family: system-ui;
letter-spacing: 2px;
}
.mainpopup_inside_buttons {
font-size: 1.2rem;
font-weight:600;
border: 1px solid black;
border-radius: 10px;
padding: 7px 15px;
font-family: poppins;
cursor: pointer;
}