forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookie-popup.css
66 lines (56 loc) · 1.07 KB
/
cookie-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
59
60
61
62
63
64
65
66
.cookie-container {
display: none;
position: fixed;
max-width: 320px;
padding: 1rem !important;
background-color: #fff;
border-radius: 10px;
box-shadow: 20px 20px 30px rgba(0, 0, 0, .05);
bottom: 4em;
right: 5em;
z-index: 9999999;
}
#cookie-title{
font-weight: 600;
color: rgb(31 41 55);
}
.cookie-description {
margin-top: 1rem !important;
font-size: 1.12rem;
line-height: 1.25rem;
color: rgb(75 85 99);
}
.cookie-description a {
color: #007bff;
text-decoration: none;
}
.cookie-container a:hover {
text-decoration: underline;
}
.button-container {
display: flex;
justify-content: space-between;
margin-top: 15px;
margin-bottom: 10px;
}
.button-container button {
padding: 10px 12px;
border-radius: 5px;
cursor: pointer;
font-size: 10px;
}
#accept-btn {
background-color: #007bff;
color: white;
}
#reject-btn {
background-color: #dc3545;
color: white;
}
#customize-btn {
background-color: #6c757d;
color: white;
}
button:hover {
opacity: 0.9;
}