-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.less
68 lines (61 loc) · 1.08 KB
/
style.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
58
59
60
61
62
63
64
65
66
67
68
#cookie-bar {
background: @ini_text_alt;
box-shadow: 0 0 10px @ini_text_alt;
height:auto;
line-height:24px;
color:#eeeeee;
text-align:center;
padding:3px 0;
z-index: 10000;
display: flex;
flex-direction: column;
align-items: center;
gap: 1em;
}
#cookie-bar.fixed {
position:sticky;
top:0;
left:0;
width:100%;
}
#cookie-bar.fixed.bottom {
bottom:0;
top:auto;
}
#cookie-bar p {
margin:0;
padding:0;
max-width: 800px;
&:last-child {
display: flex;
flex-direction: row;
flex-grow: 0;
flex-shrink: 0;
gap: 1em;
}
}
#cookie-bar a {
color:#ffffff;
display:inline-block;
border-radius:3px;
text-decoration:none;
padding:0 6px;
}
#cookie-bar .cb-enable {
background:#007700;
}
#cookie-bar .cb-enable:hover {
background:#009900;
}
#cookie-bar .cb-disable {
background:#990000;
}
#cookie-bar .cb-disable:hover {
background:#bb0000;
}
#cookie-bar .cb-policy {
background:#0033bb;
}
#cookie-bar .cb-policy:hover {
background:#0055dd;
}