-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcookie.css
100 lines (92 loc) · 1.67 KB
/
cookie.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
/*Cookie Consent Begin*/
#myCookieConsent {
z-index: 999;
min-height: 20px;
font-family: OpenSans, arial, "sans-serif";
padding: 10px 20px;
background: rgba(0,0,0,0.6);
overflow: hidden;
position: fixed;
color: #FFF;
bottom: 0px;
right: 10px;
display: none;
left: 0;
text-align: center;
font-size: 15px;
font-weight: bold;
}
#myCookieConsent div {
padding: 5px 0 0;
}
#myCookieConsent a {
color: hsl(36,75%, 57%);
display: inline-block;
padding: 0 10px;
}
#myCookieConsent a:hover {
color: hsl(50, 100%, 57%);
}
#myCookieConsent a#cookieButton {
display: inline-block;
color: #FFF;
font-size: 1.1em;
background: rgba(0,0,0,0.6);
text-decoration: none;
cursor: pointer;
padding: 2px 20px;
float: right;
border-radius: 20px;
}
#myCookieConsent a#cookieButton:hover {
background: #FFF;
color: #000;
}
.overlay {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.7);
transition: opacity 500ms;
visibility: hidden;
opacity: 0;
}
.overlay:target {
visibility: visible;
opacity: 1;
}
.popup {
margin: 70px auto;
padding: 20px;
background: #fff;
border-radius: 5px;
width: 60%;
height: 80%;
position: relative;
transition: all 5s ease-in-out;
}
.popup h2 {
margin-top: 0;
color: #333;
font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
position: absolute;
top: 20px;
right: 30px;
transition: all 200ms;
font-size: 30px;
font-weight: bold;
text-decoration: none;
color: #333;
}
.popup .close:hover {
color: #06D85F;
}
.popup .content {
height: 95%;
overflow: auto;
}
/*Cookie Consent End*/