blob: fc484125c4d309b4cfd2e3585ce5f7711eb4386a (
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
|
@import "../../../assets/css/_structure.less";
// conference specific styles here
@color-blue: #0084B0; // fresh
@color-green: #00A356; // hope
@color-grey: #4D4D4C; // reboot
@color-dark-grey: darken(@color-grey, 20%);
@color-light-grey: lighten(@color-grey, 30%);
@color-lighter-grey: lighten(@color-grey, 40%);
// often configured values (and their defaults):
@brand-primary: @color-blue;
@text-color: @color-grey;
@link-color: @color-blue;
@link-hover-color: @color-green;
@navbar-height: 70px;
// TODO darf nicht angegeben sein sonst wird style ignoriert, wtf
//@navbar-default-bg: transparent;
//@navbar-default-border: transparent;
@navbar-default-link-color: white;
@navbar-default-link-hover-color: @link-hover-color;
body {
background-color: black;
padding: @navbar-height 0
}
h1, h2, body.overview .room a.title, body.overview .panel-primary a, .navbar-brand {
font-family: sans-serif;
}
|