Fix Bootstrap CSS
[xnet] / xnet / site / static / css / common.css
1
2 /*** $SUMMARY ****************************************/
3 /*****************************************************/
4 /****** $GLOBAL **************************************/
5 /****** $SPRITE-PICTO ********************************/
6 /****** $SIDEBAR *************************************/
7 /****** $TABLE ***************************************/
8 /****** $MAP *****************************************/
9 /****** $FOOTER **************************************/
10
11 /*** $GLOBAL *****************************************/
12 /*****************************************************/
13 html {
14 overflow-y: scroll; /* Force vertical scrollbar */
15 }
16 footer {
17 clear: both;
18 font-size: 75%;
19 text-align: center;
20 }
21 form {
22 margin: 0;
23 }
24 h1,
25 h2 {
26 font-size: 2em;
27 padding-bottom: 10px;
28 margin-bottom: 20px;
29 border-bottom: 1px solid #ababab;
30 }
31
32 .logo {
33 text-align: center;
34 margin-top: 40px;
35 }
36 .logo-nav {
37 display: inline-block;
38 width: 80px;
39 height: 40px;
40 }
41 .logo-nav img {
42 width: 60px;
43 display: inline-block;
44 margin: 10px;
45 }
46 .logo img {
47 width: 200px;
48 height: auto;
49 margin-bottom: 30px;
50 }
51
52 .wrapper {
53 padding-top: 40px;
54 }
55 .txtC {
56 text-align: center;
57 }
58 .nowrap {
59 white-space:nowrap;
60 }
61 .accordion-heading {
62 margin-bottom: 20px;
63 }
64 .collapse.in {
65 padding-bottom: 20px;
66 }
67 .form-horizontal fieldset {
68 border: 1px solid #cacaca;
69 padding: 0 20px;
70 -webkit-box-shadow: 2px 2px 2px #cacaca;
71 -moz-box-shadow: 2px 2px 2px #cacaca;
72 -o-box-shadow: 2px 2px 2px #cacaca;
73 box-shadow: 2px 2px 2px #cacaca;
74 -webkit-border-radius: 5px;
75 -moz-border-radius: 5px;
76 -o-border-radius: 5px;
77 border-radius: 5px;
78 }
79
80 /* Use normal font size for sidemenu titles */
81 .sidebar h3 {
82 font-size: inherit;
83 }
84
85 /*
86 *Fix Bootstrap style.
87 * This fix enables users to scroll horizontally to the logout button if its window is small.
88 */
89 .navbar-fixed-top {
90 position: absolute !important;
91 min-width: 940px;
92 width: 100%;
93 }