-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (63 loc) · 1.12 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700');
body{
margin: 0px;
padding: 0px;
font-family: "Poppins", sans-serif;
}
#btn-container{
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
button{
padding: 12px 24px;
margin: 5px;
font-weight: 700;
font-size: 16px;
outline: none;
border: 0px;
background-color: #00BFA6;
color: white;
cursor: pointer;
}
#content-container{
background: #EDEBA0;
padding: 0px;
display: flex;
justify-content: center;
align-items: center;
}
svg{
margin-top: 15px;
width: 80%;
height: 300px;
}
.popbox_container{
position: relative;
border-radius: 0px;
padding: 0px;
text-align: center;
}
#information{
padding: 10px 20px;
border-radius: 10px 10px 0px 0px;
background: #00BFA6;
}
#information > p{
color: white;
font-size: 16px;
text-align: left;
}
#close-btn{
position: absolute;
right: 20px;
color: white;
background: #00BFA6;
padding: 2px 9px;
border-radius: 50%;
font-size: 18px;
top: 20px;
cursor: pointer;
}