blob: 1690b425eeb92aea404bf6a6088db511f816af84 (
plain)
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
|
@import "../../../assets/css/_structure.less";
// conference specific styles here
@grey: #a7a6a8;
@green: #00ff0d;
// often configured values (and their defaults):
//
@brand-primary: @green;
@text-color: black;
@link-color: @green;
@link-hover-color: darken(@green, 20%);
@navbar-default-color: black;
@navbar-default-bg: @green;
@navbar-default-link-color: black;
@navbar-default-link-hover-color: lighten(black, 20%);
@panel-default-border: @grey;
.nav-tabs > li > a {
background-color: lighten(@grey, 33%);
color: darken(@green, 20%);
}
img.bunny {
width: 160px;
position: absolute;
bottom: 40px;
left: 10px;
opacity: 0.4;
z-index: -100;
&:hover {
opacity: 1;
}
}
|