@palmabit/angular-cookie-law
Version:
Angular module that provides a banner to inform users about cookie law
79 lines (65 loc) • 1.06 kB
CSS
/**
* @palmabit/angular-cookie-law - @version v0.5.0 - @author Palmabit Srl<hello@palmabit.com>
*/
.cl-banner {
background: #000000;
height: auto;
min-height: 24px;
line-height: 24px;
color: #eeeeee;
text-align: center;
padding: 15px 25px;
z-index: 10000;
position: fixed;
left: 0;
width: 100%;
}
.cl-banner.top {
top: 0;
}
.cl-banner.bottom {
bottom: 0;
}
/*
.cl-banner.fixed {
position: fixed;
top: 0;
left: 0;
width: 100%;
}
.cl-banner.fixed.bottom {
bottom: 0;
top: auto;
}
*/
.cl-banner p {
color: white;
margin: 0;
padding: 0;
}
.cl-banner a {
color: white;
display: inline-block;
border-radius: 3px;
text-decoration: none;
padding: 0 6px;
margin: 11px 20px 0 20px;
}
.cl-banner .cl-accept {
background: #007700;
}
.cl-banner .cl-accept:hover {
background: #009900;
}
.cl-banner .cl-disable {
background: #990000;
}
.cl-banner .cl-disable:hover {
background: #bb0000;
}
.cl-banner .cl-policy {
background: #0033bb;
}
.cl-banner .cl-policy:hover {
background: #0055dd;
}