-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcustom_banner_style.css
75 lines (68 loc) · 2.14 KB
/
custom_banner_style.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
/***************************************************************************
// * Iubenda Cookie Solution *
// * *
// * (c) 2015 Iubenda srl <info@iubenda.com> *
// * All Rights Reserved. *
// * *
// *************************************************************************
//
// CHANGELOG
// 0.0.1
// - first implementation of customizable css
*/
/* GENERAL CLASS */
#iubenda-cs-banner{
/* ------ IMPORTANT NOTICE: don't change these values as
they may prevent the banner from properly showing. Some of these lines,
moreover (like z-index) will overwrite the configuration initialized
by the script you paste in your pages. To show the banner at the bottom
you can switch to "bottom: 0px !important;". Don't forget to put "slideDown"
to "false".
*/
top: 0px !important;
left: 0px !important;
position: fixed !important;
width: 100% !important;
z-index: 99999998 !important;
background-color: black;
/* ----------------- */
}
/* CONTENT CLASS */
.iubenda-cs-content{
display:block;
margin:0 auto;
padding: 20px;
width:auto;
font-family: Helvetica,Arial,FreeSans,sans-serif;
font-size: 14px;
background: #000;
color: #fff;
}
.iubenda-banner-content{
}
.iubenda-cs-rationale{
max-width: 900px; position:relative; margin: 0 auto;
}
/* STYLE FOR TEXT INTERNAL BANNER */
.iubenda-banner-content > p {
font-family: Helvetica,Arial,FreeSans,sans-serif;
line-height: 1.5;
}
/* CLOSE BUTTON. NOTICE: IMAGE FOR BUTTON NOT IMPLEMENTED YET */
.iubenda-cs-close-btn{
margin:0;
color: #fff;
text-decoration:none;
font-size:14px;
position: absolute;
top: 0;
right: 0;
border: none;
}
/* STYLE FOR TEXT LINK TO PRIVACY POLICY */
.iubenda-cs-cookie-policy-lnk{
text-decoration: underline;
color: #fff;
font-size: 14px;
font-weight: 900;
}