-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpurecookie.css
More file actions
85 lines (76 loc) · 1.79 KB
/
purecookie.css
File metadata and controls
85 lines (76 loc) · 1.79 KB
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
/* Reset */
.cookieConsentContainer {
z-index: 999;
width: 350px;
min-height: 20px;
box-sizing: border-box;
padding: 30px 30px 30px 30px;
background: #222222;
overflow: hidden;
position: fixed;
bottom: 30px;
left: 30px;
display: none;
opacity: 0.5;
}
.cookieConsentContainer .cookieTitle a {
font-family: OpenSans, arial, "sans-serif";
color: #FFFFFF;
font-size: 22px;
line-height: 20px;
display: block;
}
.cookieConsentContainer .cookieDesc p {
margin: 0;
padding: 0;
font-family: OpenSans, arial, "sans-serif";
color: #FFFFFF;
font-size: 13px;
line-height: 20px;
display: block;
margin-top: 10px;
}
.cookieConsentContainer .cookieDesc a {
font-family: OpenSans, arial, "sans-serif";
color: #FFFFFF;
text-decoration: underline;
}
.cookieConsentContainer .cookieDesc a:hover, cookieConsentContainer .cookieDesc a:focus {
color: #cecdcd;
}
.cookieButton {
background-color: #b31b1b;
font-family: OpenSans, arial, "sans-serif";
border: none;
color: #ffffff;
margin-top: 20px;
padding: 15px 48px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
transition: background 0.3s;
}
.cookieConsentContainer .cookieButton a {
color: #ffffff;
}
.cookieConsentContainer .cookieButton:focus {
color: #ffffff;
}
.cookieConsentContainer .cookieButton:hover {
cursor: pointer;
background: #7c0b0b;
color: #ffffff;
}
.cookieConsentContainer :focus {
outline: 0;
box-shadow: 0 0 0 4px rgba(45, 135, 184, 0.5);
box-shadow: 0 0 0 2px white, 0 0 0 5px rgba(43, 163, 227, 0.4);
}
@media (max-width: 980px) {
.cookieConsentContainer {
bottom: 0px !important;
left: 0px !important;
width: 100% !important;
}
}