blob: 74cbfb9e193108d36c72ef87ab71015a5410fd51 (
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
|
@import "../../../assets/css/_structure.less";
// conference specific styles here
@grey: #fafafa;
@white: #FFFFFF;
@dsred: #ff4141;
@dstext: #480202;
// often configured values (and their defaults):
//
@brand-primary: @white;
@text-color: black;
@link-color: @dsred;
@link-hover-color: darken(@dsred, 20%);
@navbar-default-color: @dsred;
@navbar-default-bg: @grey;
@navbar-default-link-color: @dsred;
@navbar-default-link-hover-color: darken(@dsred, 20%);
@panel-default-border: @grey;
.nav-tabs > li > a {
background-color: lighten(@dsred, 33%);
color: darken(@dsred, 20%);
}
nav .navbar-brand .icon {
background-image: url("/assets/img/tv-inverse.png");
}
body {
color: @dstext;
font-family: "Source Sans Pro", Helvetica, sans-serif;
background-image: url("/configs/conferences/fiffkon16/logo.png")
}
@font-face {
font-weight: normal;
font-style: normal;
}
h1,h2,h3, .panel-body a {
font-family: 'BigDots';
}
.panel-body a {
font-weight: bold;
}
|