blob: beb8b85879e877122585b93ca9cab03772deb3b7 (
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
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
|
@import "../../../assets/css/_structure.less";
@link-color: #ffffff;
@panel-bg: #212020;
@well-bg: @panel-bg;
@panel-primary-border: #212020;
@panel-default-heading-bg: #212020;
@panel-default-text: black;
@navbar-default-link-color: white;
//@nav-link-hover-bg: #ff0000;
@navbar-default-bg: black;
// conference specific styles here
@font-face {
font-family: 'Dosis';
src: url("/configs/conferences/fusion-presscon/dosis-v6-latin-regular.woff2");
}
h1, h2, h3, a, body.overview .room a.title, body.overview .panel-primary a, .navbar-brand {
font-family: 'Dosis',sans-serif;
color: white;
}
body {
background-color: black;
background-image: url("/configs/conferences/fusion-presscon/bg.png");
background-repeat: repeat;
font-family: 'Open Sans',Helvetica;
border: None;
color: white;
}
.banner {
color: #94002f;
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: 0px 10px;
.icon {
display: none !important;
}
}
footer a {
color: @link-color;
}
.well {
background: #212020;
border: #212020;
color: #b7b5b5;
}
.nav > li > a:hover, .nav > li > a:focus {
background: #333;
color: white;
border: None;
}
.nav > li > a{
background: #333;
color: white;
border: None;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover{
background: #94002f;
color: white;
border: None;
}
.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
border: None;
}
|