blob: 4af06b73a1a2bdba6aef90407034978f8c6599fa (
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
|
@import "../../../assets/css/_structure.less";
@link-color: #aaaaaa;
@panel-bg: darkgrey ;
@well-bg: @panel-bg;
@panel-primary-border: white;
@panel-default-heading-bg: white;
@panel-default-text: white;
@navbar-default-link-color: #FFFFFF;
//@nav-link-hover-bg: #ff0000;
@navbar-default-bg: #ff0000;
// conference specific styles here
body {
background-color: black;
}
.banner {
color: black;
h2 {
font-weight: normal;
}
}
.navbar-brand {
//color: transparent !important;//
color: white;
height: 50px;
//background-image: url('logo.png');//
background-repeat: no-repeat;
background-size: auto 30px;
background-position: 15px 10px;
.icon {
display: none !important;
}
}
footer a {
color: @link-color;
}
.nav > li > a:hover, .nav > li > a:focus {
background: #ff0000;
color: white;
border: black;
}
.nav > li > a{
background: #ff0000;
color: white;
border: white;
}
|