blob: fc3cced66145bed92a6ca4d7d41c51e7a1830729 (
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
@import "fa/font-awesome.less";
@import "_bootstrap-selection.less";
@import "lib/datepicker3.less";
@import "_mejs_hacks.less";
@import "_footer.less";
@img: '../img';
@grid-float-breakpoint: @screen-xs-min;
@jumbo-font-size: 52px;
@jumbo-font-size-xs: 2.5em;
@jumbo-line-height: 45px;
@schedule-now: @brand-danger;
@schedule-now-bg: fade(lighten(@brand-danger, 5%), 60%);
@schedule-border: lighten(@brand-primary, 50%);
@schedule-room: darken(@brand-primary, 15%);
@schedule-author: #444;
@schedule-selected-room: lighten(@brand-success, 10%);
@schedule-daychange: darken(@brand-primary, 20%);
@schedule-daychange-bg: fade(white, 30%);
@schedule-gap: darken(@brand-primary, 20%);
@schedule-gap-bg: fade(white, 30%);
@schedule-pause: white;
@schedule-pause-bg: lighten(black, 85%);
// website configuration styles
nav {
.navbar-brand {
line-height: 27px;
.icon {
background-repeat: no-repeat;
background-image: url("@{img}/tv.png");
float: left;
display: block;
width: 27px;
height: 27px;
margin-right: @padding-base-horizontal;
}
.icon when (luma(@navbar-default-bg) > 50%) {
background-image: url("@{img}/tv-inverse.png");
}
}
.button-wrapper > .btn {
width: 40px;
}
.button-wrapper > .btn-ssl {
width: auto;
}
}
.preview-warning {
position: fixed;
z-index: 2000;
bottom: 0;
right: 0;
width: 190px;
height: 100px;
border-top-left-radius: 60px;
text-align: center;
line-height: 40px;
font-size: 30px;
padding-left: 10px;
padding-top: 9px;
cursor: default;
background: red;
color: white;
&:hover {
opacity: 0.25;
}
}
body {
padding: 50px 0;
@media (max-width: @grid-float-breakpoint) {
padding: 120px 0 30px 0;
}
}
@media (max-width: @screen-sm-min) {
nav {
position: absolute !important;
}
footer {
display: none;
}
}
@import "_error.less";
@import "_overview.less";
@import "_room.less";
@import "_schedule.less";
@import "_relive.less";
@import "_multiview.less";
@import "_closed.less";
@import "_embed.less";
@import "_feedback.less";
@import "_allconferences.less";
@import "_subtitles.less";
|