-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (49 loc) · 899 Bytes
/
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
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}
body {
background: #441d6c;
}
#modalbox {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80%;
max-width: 450px;
text-align: center;
padding: 80px 60px;
font-size: 18px;
font-weight: 500;
background: #fff;
border-radius: 8px;
}
.cookies {
width: 100px;
margin-bottom: 15px;
}
#modalbox button {
background: #ff5945;
color: #fff;
padding: 15px 0;
border-radius: 4px;
font-size: 20px;
font-weight: 500;
width: 100%;
border: 0;
outline: 0;
margin-top: 50px;
cursor: pointer;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.close-icon {
width: 25px;
height: 25px;
position: absolute;
top: 25px;
right: 25px;
cursor: pointer;
}