Subversion Repositories ALCASAR

Rev

Details | Last modification | View Log

Rev Author Line No. Line
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
}
37
.footer {
38
  position: absolute;
39
  bottom: 0;
40
  width: 100%;
41
  height: 60px; /* Set the fixed height of the footer here */
42
  line-height: 60px; /* Vertically center the text there */
43
  background-color: #f5f5f5;
44
}
45
.nav-tabs {
46
  margin-bottom: 10px;
47
}
48
.navbar {
49
  margin-bottom: 25px;
50
}