blob: ce02337b409cca08479aed8792eb09969d55e2d0 (
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";
@link-color: #bdafbe;
@panel-bg: #ddd;
@well-bg: @panel-bg;
@panel-primary-border: #FFFFFF;
@panel-default-heading-bg: #333333;
@panel-default-text: #bdafbe;
@navbar-default-link-color: #bfc1be;
@nav-link-hover-bg: #bfc1be;
@navbar-default-bg: #232323;
// conference specific styles here
body {
background-color: #232323;
color: #666;
}
.banner {
color: #232323;
h2 {
font-weight: normal;
}
}
.navbar-brand {
// color: transparent !important;
height: 50px;
//background-image: url('logo.svg');
background-repeat: no-repeat;
background-size: auto 30px;
background-position: 15px 10px;
padding-left: 120px;
color: #232323 !important;
.icon {
display: none !important;
}
}
footer a {
color: @link-color;
}
.nav > li > a:hover, .nav > li > a:focus {
background: #232323;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
color: white;
}
|