blob: 8bbcbb508f5273f92717e06b28e33e67512fef95 (
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
61
62
63
64
65
|
@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/voctocat-inverse.svg");
background-size: 27px 27px;
}
body {
color: @dstext;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@font-face {
font-family: 'BigDots';
src: url(BigDots.ttf) format('truetype');
font-weight: normal;
font-style: normal;
}
h1,h2,h3, .panel-body a {
font-family: 'BigDots';
}
.panel-body a {
font-weight: bold;
}
img.DS2016 {
position: fixed;
top: -170px;
left: -170px;
height: 712px;
width: 796px;
z-index: -100;
}
|