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
|
@import "../../../assets/css/_structure.less";
@link-color: #1DA64A;
@panel-bg: #fff;
@well-bg: @panel-bg;
@panel-primary-border: #fff;
@panel-default-heading-bg: #fff;
@panel-default-text: rgb(153, 153, 153);
@navbar-default-link-color: black;
@nav-link-hover-bg: #1DA64A;
@navbar-default-bg: #fff;
// conference specific styles here
@font-face {
font-family: 'MerriweatherSans-Regular';
src: url("/configs/conferences/fffpk/MerriweatherSans-Regular.woff2");
}
@font-face {
font-family: "Jost Bold";
src: url("/configs/conferences/fffpk/Jost700Bold.woff");
}
body {
font-family: "MerriweatherSans-Regular", sans-serif;
}
h1, h2, h3, body.overview .room a.title, body.overview .panel-primary a, .navbar-brand {
font-family: "Jost Bold", sans-serif;
font-weight: bold;
text-transform: uppercase;
}
h1, h2, h3 {
color: white;
}
.well h1, .well h2, .well h3 {
color: @panel-default-text;
}
body {
background: #1B7340 url(/configs/conferences/fffpk/erde_hell.svg);
background-attachment: fixed;
background-repeat: no-repeat;
background-position: 120% 20%;
background-size: 120%;
}
.banner {
h2 {
font-weight: normal;
}
}
nav {
.navbar-brand {
//color: transparent !important;//
color: white;
height: 50px;
.icon {
background-image: url('logo.png');
}
}
}
footer a {
color: @link-color;
}
.well {
background: white;
border: white;
color: black;
}
.nav > li > a:hover, .nav > li > a:focus {
background: white;
color: black;
}
.nav > li > a{
background: white;
color: black;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover{
background: #1B7340;
color: white;
}
.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
}
|