-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiesDirective.less
57 lines (46 loc) · 1.29 KB
/
cookiesDirective.less
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
#cookies-bar {
border-top: 1px solid #d7d7d7;
border-bottom: 1px solid #d7d7d7;
color: #414141;
width: 100%;
padding: 5px 0;
position: fixed;
bottom: 0;
left: 0;
z-index: 9999;
text-align: center;
background: #dbdbdb;
background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0%, #fff), color-stop(100%, #dbdbdb));
background-image: -webkit-linear-gradient(#fff, #dbdbdb);
background-image: -moz-linear-gradient(#fff, #dbdbdb);
background-image: -o-linear-gradient(#fff, #dbdbdb);
background-image: -ms-linear-gradient(#fff, #dbdbdb);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#dbdbdb);
background-image: linear-gradient(#fff, #dbdbdb);
}
#cookies-bar p {
font-size: 14px !important;
margin-bottom: 3px;
text-align: center !important;
}
#cookies-bar .cookies-bar-close {
font-size: 13px !important;
padding: 4px 20px !important;
}
/** Media **/
@media (max-width: 480px) {
#cookies-bar p {
font-size: 12px !important;
}
#cookies-bar .cookies-bar-close {
font-size: 11px !important;
}
}
@media (max-width: 767px) {
#cookies-bar p {
font-size: 13px !important;
}
#cookies-bar .cookies-bar-close {
font-size: 12px !important;
}
}