-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcookie-consent.css
81 lines (69 loc) · 1.25 KB
/
cookie-consent.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
.cookie-consent {
/*Hide by default*/
display: none;
position: fixed;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
z-index: 900;
}
.cookie-consent {
background: #222;
color: #fff;
font-size: 1em;
font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
box-sizing: border-box;
padding: 15px 30px 15px;
}
.cookie-consent p {
float: left;
width: 80%;
margin: 0;
}
.cookie-consent a {
color: #fff;
}
.cookie-consent .btn {
cursor: pointer;
font-size: 1em;
color: #fff3cd;
background-color: #c70;
border: 1px solid transparent;
border-color: #ffeeba;
border-radius: 7px;
text-align: center;
padding: 8px 15px;
display: block;
margin-left: 10px;
float: right;
min-width: 110px;
max-width: 220px;
}
.cookie-consent .btn:hover,
.cookie-consent .btn:active {
background-color: #d6d8d9;
border-color: #c6c8ca;
color: #1b1e21;
}
.cookie-consent .close {
font-size: 1.8em;
color: #d6d8d9;
text-decoration: none;
background: #222;
border: none;
cursor: pointer;
margin: 0 0 0 40px;
float: right;
}
.cookie-consent .close:hover {
color: #fff;
}
.hidden {
display: none;
}
@media (max-width: 480px) {
.hidden-xs {
display: none;
}
}