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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
@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-height: 70px;
@navbar-default-color: white;
@navbar-default-bg: #000;
@navbar-default-border: white;
@navbar-default-link-color: white;
//@navbar-default-link-hover-color: @link-hover-color;
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 300;
src: url('roboto-condensed-v13-latin-300.eot'); /* IE9 Compat Modes */
src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'),
url('roboto-condensed-v13-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('roboto-condensed-v13-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
url('roboto-condensed-v13-latin-300.woff') format('woff'), /* Modern Browsers */
url('roboto-condensed-v13-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
url('roboto-condensed-v13-latin-300.svg#RobotoCondensed') format('svg'); /* Legacy iOS */
}
body {
background-color: black;
padding: @navbar-height 0
}
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;
}
}
}
h1, h2, body.overview .room a.title, body.overview .panel-primary a, .navbar-brand {
font-family: 'Roboto Condensed';
font-weight: 300;
}
.navbar-brand {
font-size: 20px;
}
.well {
color: @dark-grey;
}
.banner {
margin-top: 40px;
background: url(logo.gif) no-repeat center;
height: 170px;
text-indent: -9999em;
}
.player-wrap {
background-color: @darker-grey;
}
.nav-tabs > li > a {
border-color: @dark-grey;
}
nav .navbar-form {
margin-top: 0;
margin-bottom: 0;
}
nav .button-wrapper > .btn {
width: 70px;
height: 70px;
margin-left: -1px;
border-color: white;
border-top: 0;
border-bottom: 0;
border-radius: 0;
background: url(icons.png) no-repeat left top;
text-indent: -9999px;
display: block;
float: left;
}
nav .button-wrapper > .btn-ssl {
background-position: -72px top;
}
nav .button-wrapper > .btn-ssl.btn-success {
background-position: left top;
}
nav .button-wrapper > .feedback {
background-position: -216px top;
}
nav .button-wrapper > .releases {
background-position: -144px top;
}
nav .button-wrapper > .about {
background-position: -288px top;
}
|