forked from acoustep/gdpr-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gdpr-cookie.css
65 lines (58 loc) · 1.07 KB
/
gdpr-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
/* GDPR Cookie dialog */
.gdprcookie {
position: fixed;
color: white;
font-size: .8em;
line-height: 1.5em;
right: 1.5rem;
bottom: 1.5rem;
max-width: 25em;
padding: 1rem;
background: black;
}
.gdprcookie h1,
.gdprcookie h2 {
font-size: 1.2em;
margin-bottom: .5rem;
}
.gdprcookie h2 {
font-size: 1.2em;
}
.gdprcookie a {
color: inherit;
}
/* GDPR Cookie buttons */
.gdprcookie-buttons {
text-align: center;
}
.gdprcookie-buttons button {
color: white;
font-family: inherit;
font-size: 1em;
padding: .4rem;
border: solid .05rem currentColor;
border-radius: .15rem;
margin: 0 .5rem;
background: none;
cursor: pointer;
}
.gdprcookie-buttons button:disabled {
color: rgba(255,255,255,.5);
}
/* GDPR Cookie types */
.gdprcookie-types ul {
overflow: hidden;
padding: 0;
margin: 0 0 1rem;
}
.gdprcookie-types li {
display: block;
list-style: none;
float: left;
width: 50%;
padding: 0;
margin: 0;
}
.gdprcookie-types input[type=checkbox] {
margin-right: .25rem;
}