Skip to content

Commit 3e36676

Browse files
matthijschskecskes
authored andcommitted
Add scss (#3)
* Add scss file * Rename scss file * Fix for syntaxe error in scss file
1 parent 67703b6 commit 3e36676

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

_jquery.cookiebar.scss

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
#cookie-bar {
2+
background: #111;
3+
height: auto;
4+
line-height: 24px;
5+
color: #eee;
6+
text-align: center;
7+
padding: 3px 0;
8+
9+
&.fixed {
10+
position: fixed;
11+
top: 0;
12+
left: 0;
13+
width: 100%;
14+
z-index: 1200
15+
}
16+
17+
&.fixed.bottom {
18+
bottom: 0;
19+
top: auto;
20+
}
21+
22+
p {
23+
margin: 0;
24+
padding: 0;
25+
}
26+
27+
a {
28+
color: #fff;
29+
display: inline-block;
30+
border-radius: 3px;
31+
text-decoration: none;
32+
padding: 0 6px;
33+
margin-left: 8px;
34+
}
35+
36+
.cb-enable {
37+
background: #007700;
38+
cursor: pointer;
39+
}
40+
41+
.cb-enable:hover {
42+
background: #009900;
43+
}
44+
45+
.cb-disable {
46+
background: #990000;
47+
cursor: pointer;
48+
}
49+
50+
.cb-disable:hover {
51+
background: #bb0000;
52+
}
53+
54+
.cb-policy {
55+
background: #0033bb;
56+
cursor: pointer;
57+
}
58+
59+
.cb-policy:hover {
60+
background: #0055dd;
61+
}
62+
}

0 commit comments

Comments
 (0)