2809 |
rexy |
1 |
/*
|
|
|
2 |
Copyright (C) 2019 Alexander Marston (alexander.marston@gmail.com)
|
|
|
3 |
|
|
|
4 |
This program is free software: you can redistribute it and/or modify
|
|
|
5 |
it under the terms of the GNU General Public License as published by
|
|
|
6 |
the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
(at your option) any later version.
|
|
|
8 |
|
|
|
9 |
This program is distributed in the hope that it will be useful,
|
|
|
10 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
GNU General Public License for more details.
|
|
|
13 |
|
|
|
14 |
You should have received a copy of the GNU General Public License
|
|
|
15 |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
*/
|
|
|
17 |
|
|
|
18 |
/* http://stackoverflow.com/questions/17206631/why-are-bootstrap-tabs-displaying-tab-pane-divs-with-incorrect-widths-when-using */
|
|
|
19 |
/* bootstrap hack: fix content width inside hidden tabs */
|
|
|
20 |
.tab-content > .tab-pane:not(.active),
|
|
|
21 |
.pill-content > .pill-pane:not(.active) {
|
|
|
22 |
display: block;
|
|
|
23 |
height: 0;
|
|
|
24 |
overflow-y: hidden;
|
|
|
25 |
}
|
|
|
26 |
/* bootstrap hack end */
|
|
|
27 |
|
|
|
28 |
/* Sticky footer styles
|
|
|
29 |
-------------------------------------------------- */
|
|
|
30 |
html {
|
|
|
31 |
position: relative;
|
|
|
32 |
min-height: 100%;
|
|
|
33 |
}
|
|
|
34 |
body {
|
|
|
35 |
margin-bottom: 60px; /* Margin bottom by footer height */
|
|
|
36 |
background-color: #efefef;
|
|
|
37 |
}
|
|
|
38 |
.footer {
|
|
|
39 |
position: absolute;
|
|
|
40 |
bottom: 0;
|
|
|
41 |
width: 100%;
|
|
|
42 |
height: 60px; /* Set the fixed height of the footer here */
|
|
|
43 |
line-height: 60px; /* Vertically center the text there */
|
|
|
44 |
background-color: #efefef;
|
|
|
45 |
}
|
|
|
46 |
.nav-tabs {
|
|
|
47 |
margin-bottom: 10px;
|
|
|
48 |
}
|
|
|
49 |
.navbar {
|
|
|
50 |
margin-bottom: 25px;
|
|
|
51 |
}
|