1
|
/*
|
2
|
Document : CookieNotice
|
3
|
Created on : 04.07.2015, 14:39:54
|
4
|
Author : Manuela v.d.Decken <manuela@isteam.de>
|
5
|
Description:
|
6
|
Purpose of the stylesheet follows.
|
7
|
*/
|
8
|
|
9
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
10
|
format the cookie notice
|
11
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
12
|
#CookieNotice {
|
13
|
box-sizing: border-box;
|
14
|
position: fixed;
|
15
|
left: 0; top: 0; right: 0; bottom: 0;
|
16
|
padding: 15px;
|
17
|
background-color: rgba(120, 120, 120, 0.6);
|
18
|
display: none;
|
19
|
z-index: 9999;
|
20
|
}
|
21
|
#CookieNoticeBar {
|
22
|
position: relative;
|
23
|
top: 30%;
|
24
|
background-color: rgba(244,239,195,0.8);
|
25
|
text-align: center;
|
26
|
color: #777;
|
27
|
font-size: 0.9em;
|
28
|
padding: 6px 4px;
|
29
|
border-radius: 6px;
|
30
|
border: solid 1px red;
|
31
|
}
|
32
|
#CookieNoticeClose {
|
33
|
float:right;
|
34
|
background: #ff0000;
|
35
|
color: #ffffff;
|
36
|
font-weight: bold;
|
37
|
width: 1.525em;
|
38
|
cursor: pointer;
|
39
|
border-radius: 4px;
|
40
|
}
|
41
|
#CookieNoticeInfo {}
|
42
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
43
|
|