Files
@ 8a963ee7dfe8
Branch filter:
Location: FVDE/ennstatus/ennstatus/static/css/ennstatus.css
8a963ee7dfe8
3.3 KiB
text/css
Merged dev
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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | /* Ënnstatus
Copyright (C) 2015 Dennis Fink
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
blockquote {
border: none;
}
.thumbnail {
border: none;
}
.container {
margin-top:1%;
}
.navbar-default {
background-color: #00ae18;
/* border-radius: 50px; */
}
h1, h2, h3, h4 {
color: #00ae18;
}
.navbar-default .navbar-brand {
color: #fff;
}
.navbar-default img.navbar-brand {
padding: 10px 0 10px 10px;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #333;
}
.navbar-default .navbar-nav > li > a {
color: #fff;
}
.dropdown-menu {
background-color: #00ae18;
}
.dropdown-menu > li > a {
color: #fff;
}
.dropdown-menu > li > a:hover {
background-color: #00bf1a;
color: #333;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
background-color: #00bf1a;
color: #fff;
}
.dropdown-menu .divider {
background-color: #00bf1a;
}
a, a:hover, a:active, a:visited {
color: #af24cb;
}
/* fancy bootstrap checkboxes */
.form-group input[type="checkbox"] {
display: none;
}
.form-group input[type="checkbox"] + .btn-group > label span {
width: 20px;
}
.form-group input[type="checkbox"] + .btn-group > label span:first-child {
display: none;
}
.form-group input[type="checkbox"] + .btn-group > label span:last-child {
display: inline-block;
}
.form-group input[type="checkbox"]:checked + .btn-group > label span:first-child {
display: inline-block;
}
.form-group input[type="checkbox"]:checked + .btn-group > label span:last-child {
display: none;
}
.form-group input[type="radio"] {
display: none;
}
.form-group input[type="radio"] + .btn-group > label span {
width: 20px;
}
.form-group input[type="radio"] + .btn-group > label span:first-child {
display: none;
}
.form-group input[type="radio"] + .btn-group > label span:last-child {
display: inline-block;
}
.form-group input[type="radio"]:checked + .btn-group > label span:first-child {
display: inline-block;
}
.form-group input[type="radio"]:checked + .btn-group > label span:last-child {
display: none;
}
.checkbox label, .radio label {
padding-left: 12px;
}
.btn {
margin-top: 5px;
margin-bottom: 5px;
}
.highlighted-label {
font-size: 24px;
margin-bottom: 10px;
font-weight: 500;
line-height: 1.1;
box-sizing: border-box;
display: inline-block;
}
.highlighted-label-big {
font-size: 30px;
margin-bottom: 10px;
font-weight: 500;
line-height: 1.1;
box-sizing: border-box;
display: inline-block;
}
.btn-enn {
color: #fff;
background-color: #00ae18;
border-color: #009414;
}
footer {
margin-bottom: 20px;
}
|