blob: 3890e3693bdedf883410c040bebd958c9330c4b8 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
@import "../../../assets/css/_structure.less";
// conference specific styles here
@darker-grey: lighten(black, 15%);
@dark-grey: lighten(black, 20%);
@light-grey: lighten(black, 30%);
@lighter-grey: lighten(black, 40%);
// often configured values (and their defaults):
//
@brand-primary: #f19224;
@text-color: white;
@link-color: white;
@link-hover-color: @lighter-grey;
@navbar-default-color: @text-color;
@navbar-default-bg: @dark-grey;
//@navbar-default-link-color: @link-color;
//@navbar-default-link-hover-color: @link-hover-color;
body {
background-color: black;
}
body.overview {
.panel-default {
color: @dark-grey;
a {
color: @dark-grey;
}
}
.panel-primary {
background-color: @light-grey;
border-color: @light-grey;
color: white;
a {
color: white;
}
}
}
.well {
color: @dark-grey;
}
.banner {
background: url(logo.gif) no-repeat center;
height: 150px;
text-indent: -9999em;
}
.player-wrap {
background-color: @darker-grey;
}
.nav-tabs > li > a {
border-color: @dark-grey;
}
|