Project

General

Profile

Download (4.36 KB) Statistics
| Branch: | Tag: | Revision:
1
/*
2
 * Compact-RED.css
3
 *
4
 * part of pfSense (https://www.pfsense.org)
5
 * Copyright (c) 2016 PiBa-NL
6
 * Copyright (c) 2016 Electric Sheep Fencing, LLC
7
 * All rights reserved.
8
 *
9
 * Redistribution and use in source and binary forms, with or without
10
 * modification, are permitted provided that the following conditions are met:
11
 *
12
 * 1. Redistributions of source code must retain the above copyright notice,
13
 *    this list of conditions and the following disclaimer.
14
 *
15
 * 2. Redistributions in binary form must reproduce the above copyright
16
 *    notice, this list of conditions and the following disclaimer in
17
 *    the documentation and/or other materials provided with the
18
 *    distribution.
19
 *
20
 * 3. All advertising materials mentioning features or use of this software
21
 *    must display the following acknowledgment:
22
 *    "This product includes software developed by the pfSense Project
23
 *    for use in the pfSense® software distribution. (http://www.pfsense.org/).
24
 *
25
 * 4. The names "pfSense" and "pfSense Project" must not be used to
26
 *    endorse or promote products derived from this software without
27
 *    prior written permission. For written permission, please contact
28
 *    coreteam@pfsense.org.
29
 *
30
 * 5. Products derived from this software may not be called "pfSense"
31
 *    nor may "pfSense" appear in their names without prior written
32
 *    permission of the Electric Sheep Fencing, LLC.
33
 *
34
 * 6. Redistributions of any form whatsoever must retain the following
35
 *    acknowledgment:
36
 *
37
 * "This product includes software developed by the pfSense Project
38
 * for use in the pfSense software distribution (http://www.pfsense.org/).
39
 *
40
 * THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY
41
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR
44
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51
 * OF THE POSSIBILITY OF SUCH DAMAGE.
52
 */
53

    
54
@import url("/css/pfSense.css");
55

    
56
body {
57
    font-size: 12px;
58
}
59

    
60
.form-control {
61
    font-size: 12px;
62
}
63

    
64
.container.fixed {
65
    padding-top: 40px;
66
}
67

    
68
/* navigation */
69
.navbar {
70
    margin-bottom: 2px;
71
    min-height:30px;
72
}
73

    
74
.navbar-inverse {
75
    background-color: #600;
76
}
77

    
78
.navbar-brand > img {
79
    max-height: 26px;
80
}
81

    
82
.navbar-brand {
83
    padding: 2px 0 0 5px;
84
    height: 30px;
85
}
86

    
87
.navbar-inverse .navbar-nav >li>a {
88
    border-bottom: 5px solid #212121;
89
    color: #fff;
90
}
91
.navbar-inverse .navbar-nav >li>a:hover{
92
    color: #ccc;
93
}
94
.text-muted {
95
    color: #BDBDBD;
96
}
97
.text-muted > a:hover {
98
    color: #ccc;
99
}
100

    
101
.nav>li>a {
102
    padding: 5px 19px 0px 19px;
103
}
104
.navbar-inverse .navbar-nav >li>a {
105
    border-bottom: 5px solid #600;
106
}
107

    
108
.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover {
109
    color: #fff;
110
    background-color: #600;
111
}
112
.nav-pills {
113
    margin-bottom: 0px;
114
}
115

    
116
.dropdown-menu>li>a {
117
    padding: 0px 20px;
118
}
119

    
120
.navbar-right>li>a {
121
    padding: 2px 15px 1px 15px;
122
}
123

    
124
.navbar-toggle {
125
    margin-top:0px;
126
    margin-bottom:0px;
127
}
128
.panel-default>.panel-heading {
129
    background-color: #900;
130
}
131

    
132
.form-control {
133
    margin-bottom: 2px;
134
}
135

    
136
.form-group {
137
    padding: 2px 5px 2px 5px;
138
}
139
.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th {
140
     padding:2px;
141
}
142

    
143
.header .context-links {
144
    top: 1px;
145
}
146

    
147
.breadcrumb {
148
    margin-bottom: 2px;
149
    padding: 0px 15px;
150
    font-size: 14px;
151
}
152

    
153
/** Page footer */
154
.footer {
155
    height: 40px;
156
    background-color: #600;
157
}
158

    
159
.btn
160
{
161
    padding: 2px 12px;
162
}
163

    
164
.dropdown-menu {
165
	font-size:12px;
166
}
167

    
168
.form-horizontal .checkbox {
169
	padding: 2px 16px;
170
}
171

    
172
.chkboxlbl {
173
	padding-top: 0px;
174
}
175

    
176
.form-horizontal .checkbox,.form-horizontal .radio {
177
	min-height:20px;
178
}
179

    
180
@media (min-width: 768px) {
181
	.form-horizontal .control-label {
182
		padding-top: 4px;
183
	}
184
}
185
	
186
/* Experimental styles to correct vertical alignment in forms */
187
.col-sm-10 {
188
	padding-top: 0px;
189
}
(1-1/5)