Project

General

Profile

1
.cookie-law-wrapper a {
2
  color: #bbb;
3
  -webkit-transition: color .2s;
4
  transition: color .2s;
5
}
6
.cookie-law-wrapper a:hover {
7
  color: #fff;
8
}
9
.cookie-law-wrapper a:hover svg {
10
  fill: #fff;
11
}
12
.cookie-law-wrapper {
13
  background: #333;
14
  color: #bbb;
15
  display: block;
16
  /*font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
17
  font-size: 15px;
18
  font-weight: 200;
19
  line-height: 20px;*/
20
  position: fixed;
21
  bottom: 0;
22
  left: 0;
23
  width: 100%;
24
  z-index: 100;
25
  font-smooth: always;
26
  -webkit-font-smoothing: antialiased;
27
  text-align: center;
28
}
29
.dismiss {
30
  display: block;
31
  box-sizing: border-box;
32
  padding: 10px;
33
  position: absolute;
34
  top: 0;
35
  right: 10px;
36
  text-decoration: none;
37
  line-height: 20px;
38
}
39
.dismiss svg {
40
  display: block;
41
  fill: #bbb;
42
  width: 20px;
43
  height: 20px;
44
  -webkit-transition: fill .2s;
45
  transition: fill .2s;
46
}
47
.copy {
48
  box-sizing: border-box;
49
  padding: 10px 60px 10px 10px;
50
}
51
.copy span {
52
  color: #fff;
53
  /*font-weight: 400;*/
54
}
55
.copy a {
56
  text-decoration: underline;
57
}
58
.copy a:active, .copy a:hover {
59
    outline: 0;
60
}
61

    
62
@media (min-width: 600px) {
63
  /* For bigger devices: */
64
  .copy {
65
    padding: 20px 60px 20px 20px;
66
    /*font-size: 18px;
67
    line-height: 24px;*/
68
  }
69
  .dismiss {
70
    top: 10px;
71
    right: 15px;
72
  }
73
  .dismiss svg {
74
    width: 24px;
75
    height: 24px;
76
  }
77
}
(2-2/6)