Files
@ 6a3b432f7efb
Branch filter:
Location: FVDE/ennstatus/ennstatus/static/css/ennstatus.css
6a3b432f7efb
3.1 KiB
text/css
Use another color for links
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 | blockquote {
border: none;
}
.thumbnail {
border: none;
}
.container {
margin-top:1%;
}
.navbar-default {
background-color: #00ae18;
}
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;
}
/* Multi level dropdown menu http://bootsnipp.com/snippets/featured/multi-level-dropdown-menu-bs3 */
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
-webkit-border-radius: 0 6px 6px 6px;
-moz-border-radius: 0 6px 6px 6px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover > .dropdown-menu {
display: block;
}
.dropdown-submenu > a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #ccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
border-left-color: #fff;
}
.dropdown-submenu .pull-left {
float: none;
}
.dropdown-submenu .pull-left > .dropdown-menu {
left: -100%;
margin-left: 10px;
-webkit-border-radius: 6px 0 6px 6px;
-moz-border-radius: 6px 0 6px 6px;
border-radius: 6px 0 6px 6px;
}
/* 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;
}
|