admin.css
471 lines
| 1 | /* Responsive Lightbox settings */ |
| 2 | .df-credits { |
| 3 | float: right; |
| 4 | width: 280px; |
| 5 | background: #fff; |
| 6 | margin: 20px -300px 20px 20px; |
| 7 | position: relative; |
| 8 | } |
| 9 | .df-credits .inner { |
| 10 | padding-left: 10px; |
| 11 | padding-right: 10px; |
| 12 | } |
| 13 | .df-credits h3 { |
| 14 | font-size: 14px; |
| 15 | line-height: 1.4; |
| 16 | margin: 0; |
| 17 | padding: 8px 12px; |
| 18 | border-bottom: 1px solid #eee; |
| 19 | } |
| 20 | .df-credits .df-link { |
| 21 | font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; |
| 22 | font-style: italic; |
| 23 | padding-bottom: 10px; |
| 24 | margin: 0; |
| 25 | } |
| 26 | .df-credits .df-link a { |
| 27 | vertical-align: middle; |
| 28 | padding: 5px 0 0 4px; |
| 29 | } |
| 30 | .responsive-lightbox-settings .df-credits form { |
| 31 | min-width: 260px; |
| 32 | margin-bottom: 1em; |
| 33 | } |
| 34 | .responsive-lightbox-settings .df-credits form input { |
| 35 | margin: 0; |
| 36 | padding: 0; |
| 37 | } |
| 38 | .responsive-lightbox-settings { |
| 39 | margin-right: 300px; |
| 40 | } |
| 41 | .responsive-lightbox-settings td > label { |
| 42 | margin-right: 5px; |
| 43 | } |
| 44 | .responsive-lightbox-settings hr, .df-credits hr { |
| 45 | border: solid #eee; |
| 46 | border-width: 1px 0 0; |
| 47 | clear: both; |
| 48 | height: 0; |
| 49 | } |
| 50 | .responsive-lightbox-settings form { |
| 51 | float: left; |
| 52 | min-width: 463px; |
| 53 | width: auto; |
| 54 | } |
| 55 | .responsive-lightbox-settings fieldset span.description { |
| 56 | margin-bottom: 8px; |
| 57 | margin-top: 4px; |
| 58 | display: block; |
| 59 | } |
| 60 | .responsive-lightbox-settings output { |
| 61 | display: inline-block; |
| 62 | font-size: inherit; |
| 63 | margin: 0; |
| 64 | text-align: left; |
| 65 | } |
| 66 | .rtl .responsive-lightbox-settings output { |
| 67 | text-align: right; |
| 68 | } |
| 69 | |
| 70 | .wplike-slider span.middle { |
| 71 | width: 150px; |
| 72 | } |
| 73 | .wplike-slider span.left { |
| 74 | margin-right: 10px; |
| 75 | } |
| 76 | .wplike-slider span.right { |
| 77 | margin-left: 10px; |
| 78 | } |
| 79 | |
| 80 | /* All Mobile Sizes (devices and browser) */ |
| 81 | @media only screen and (max-width: 959px) { |
| 82 | .df-credits { |
| 83 | width: 100%; |
| 84 | float: none; |
| 85 | margin: 20px 0; |
| 86 | } |
| 87 | .responsive-lightbox-settings { |
| 88 | margin-right: 0; |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | /* |
| 93 | * checkBo lightweight jQuery plugin v0.1.4 by @ElmahdiMahmoud |
| 94 | * Licensed under the MIT license - https://github.com/elmahdim/checkbo/blob/master/LICENSE |
| 95 | * |
| 96 | * Custom checkbox and radio |
| 97 | * Author URL: elmahdim.com |
| 98 | */ |
| 99 | .cb-checkbox .cb-inner, .cb-checkbox i { |
| 100 | width:18px; |
| 101 | height:18px; |
| 102 | -moz-border-radius:3px; |
| 103 | -webkit-border-radius:3px; |
| 104 | border-radius:3px |
| 105 | } |
| 106 | .cb-checkbox.cb-sm i, .cb-checkbox.cb-sm .cb-inner { |
| 107 | width:14px; |
| 108 | height:14px |
| 109 | } |
| 110 | .cb-checkbox.cb-md i, .cb-checkbox.cb-md .cb-inner { |
| 111 | width:24px; |
| 112 | height:24px; |
| 113 | -moz-border-radius:4px; |
| 114 | -webkit-border-radius:4px; |
| 115 | border-radius:4px |
| 116 | } |
| 117 | .cb-checkbox.cb-lg i, .cb-checkbox.cb-lg .cb-inner { |
| 118 | width:30px; |
| 119 | height:30px; |
| 120 | -moz-border-radius:6px; |
| 121 | -webkit-border-radius:6px; |
| 122 | border-radius:6px |
| 123 | } |
| 124 | .cb-radio .cb-inner { |
| 125 | width:18px; |
| 126 | height:18px |
| 127 | } |
| 128 | .cb-radio.cb-sm .cb-inner { |
| 129 | width:14px; |
| 130 | height:14px |
| 131 | } |
| 132 | .cb-radio.cb-md .cb-inner { |
| 133 | width:24px; |
| 134 | height:24px |
| 135 | } |
| 136 | .cb-radio.cb-lg .cb-inner { |
| 137 | width:30px; |
| 138 | height:30px |
| 139 | } |
| 140 | .cb-checkbox, .cb-radio { |
| 141 | padding:3px 0; |
| 142 | color:inherit; |
| 143 | cursor:pointer; |
| 144 | overflow:hidden; |
| 145 | font-size:inherit; |
| 146 | font-weight:normal; |
| 147 | display:inline-block; |
| 148 | line-height:18px |
| 149 | } |
| 150 | .cb-checkbox.disabled, .cb-checkbox.disabled *, .cb-radio.disabled, .cb-radio.disabled * { |
| 151 | cursor:default |
| 152 | } |
| 153 | .cb-checkbox input[type="checkbox"], .cb-radio input[type="radio"], .cb-switcher input[type="checkbox"], .cb-switcher input[type="radio"] { |
| 154 | display:none |
| 155 | } |
| 156 | .cb-checkbox.disabled, .cb-checkbox.disabled *, .cb-radio.disabled, .cb-radio.disabled *, .cb-switcher.disabled, .cb-switcher.disabled * { |
| 157 | cursor:default |
| 158 | } |
| 159 | .cb-checkbox.disabled { |
| 160 | color:#ddd |
| 161 | } |
| 162 | .cb-checkbox.disabled .cb-inner { |
| 163 | color:#ddd |
| 164 | } |
| 165 | .cb-checkbox.disabled:hover .cb-inner { |
| 166 | border-color:#ddd |
| 167 | } |
| 168 | .cb-checkbox.disabled.checked .cb-inner { |
| 169 | background-color:#ddd; |
| 170 | border-color:#ddd |
| 171 | } |
| 172 | .cb-radio.disabled { |
| 173 | color:#ddd |
| 174 | } |
| 175 | .cb-radio.disabled .cb-inner { |
| 176 | border-color:#ddd |
| 177 | } |
| 178 | .cb-radio.disabled i { |
| 179 | background-color:transparent |
| 180 | } |
| 181 | .cb-radio.disabled.checked .cb-inner { |
| 182 | border-color:#ddd |
| 183 | } |
| 184 | .cb-radio.disabled.checked .cb-inner i { |
| 185 | background-color:#ddd |
| 186 | } |
| 187 | .cb-radio.disabled:hover .cb-inner { |
| 188 | border-color:#ddd |
| 189 | } |
| 190 | .cb-checkbox .cb-inner { |
| 191 | float:left; |
| 192 | overflow:hidden; |
| 193 | margin:0 5px 0 0; |
| 194 | position:relative; |
| 195 | background:#f2f2f2; |
| 196 | display:inline-block; |
| 197 | border:1px solid #d6d6d6; |
| 198 | -moz-transition:all 0.5s ease; |
| 199 | -o-transition:all 0.5s ease; |
| 200 | -webkit-transition:all 0.5s ease; |
| 201 | transition:all 0.5s ease |
| 202 | } |
| 203 | .cb-checkbox i { |
| 204 | top:1px; |
| 205 | left:2px; |
| 206 | display:block; |
| 207 | position:absolute |
| 208 | } |
| 209 | .cb-checkbox i:before, .cb-checkbox i:after { |
| 210 | height:0; |
| 211 | width:2px; |
| 212 | content:""; |
| 213 | display:block; |
| 214 | position:absolute; |
| 215 | background-color:#fff; |
| 216 | -moz-transition:all 0.2s ease; |
| 217 | -o-transition:all 0.2s ease; |
| 218 | -webkit-transition:all 0.2s ease; |
| 219 | transition:all 0.2s ease |
| 220 | } |
| 221 | .cb-checkbox i:before { |
| 222 | top:0; |
| 223 | left:0; |
| 224 | -moz-transform:rotate(-45deg); |
| 225 | -ms-transform:rotate(-45deg); |
| 226 | -webkit-transform:rotate(-45deg); |
| 227 | transform:rotate(-45deg) |
| 228 | } |
| 229 | .cb-checkbox i:after { |
| 230 | left:7px; |
| 231 | bottom:5px; |
| 232 | -moz-transition-delay:0.3s; |
| 233 | -o-transition-delay:0.3s; |
| 234 | -webkit-transition-delay:0.3s; |
| 235 | transition-delay:0.3s; |
| 236 | -moz-transform:rotate(30deg); |
| 237 | -ms-transform:rotate(30deg); |
| 238 | -webkit-transform:rotate(30deg); |
| 239 | transform:rotate(30deg) |
| 240 | } |
| 241 | .cb-radio .cb-inner { |
| 242 | float:left; |
| 243 | overflow:hidden; |
| 244 | margin:0 5px 0 0; |
| 245 | position:relative; |
| 246 | display:inline-block; |
| 247 | border:1px solid #d7d7d7; |
| 248 | background-color:#f2f2f2; |
| 249 | -moz-border-radius:100%; |
| 250 | -webkit-border-radius:100%; |
| 251 | border-radius:100%; |
| 252 | -moz-transition:all 0.1s ease; |
| 253 | -o-transition:all 0.1s ease; |
| 254 | -webkit-transition:all 0.1s ease; |
| 255 | transition:all 0.1s ease |
| 256 | } |
| 257 | .cb-radio i { |
| 258 | top:50%; |
| 259 | left:50%; |
| 260 | width:6px; |
| 261 | height:6px; |
| 262 | margin-top:-3px; |
| 263 | margin-left:-3px; |
| 264 | position:absolute; |
| 265 | background-color:transparent; |
| 266 | -moz-border-radius:100%; |
| 267 | -webkit-border-radius:100%; |
| 268 | border-radius:100%; |
| 269 | -moz-transform:scale(0.05, 5); |
| 270 | -ms-transform:scale(0.05, 5); |
| 271 | -webkit-transform:scale(0.05, 5); |
| 272 | transform:scale(0.05, 5); |
| 273 | -moz-transition:all 0.2s ease; |
| 274 | -o-transition:all 0.2s ease; |
| 275 | -webkit-transition:all 0.2s ease; |
| 276 | transition:all 0.2s ease |
| 277 | } |
| 278 | .cb-checkbox.cb-sm, .cb-radio.cb-sm { |
| 279 | line-height:14px |
| 280 | } |
| 281 | .cb-checkbox.cb-md, .cb-radio.cb-md { |
| 282 | line-height:24px |
| 283 | } |
| 284 | .cb-checkbox.cb-lg, .cb-radio.cb-lg { |
| 285 | line-height:30px |
| 286 | } |
| 287 | .cb-checkbox.cb-sm i:before { |
| 288 | top:4px; |
| 289 | left:1px |
| 290 | } |
| 291 | .cb-checkbox.cb-sm i:after { |
| 292 | left:5px |
| 293 | } |
| 294 | .cb-checkbox.cb-md i:before { |
| 295 | top:10px; |
| 296 | left:5px |
| 297 | } |
| 298 | .cb-checkbox.cb-md i:after { |
| 299 | bottom:6px; |
| 300 | left:11px |
| 301 | } |
| 302 | .cb-checkbox.checked .cb-inner { |
| 303 | border-color:#0073aa; |
| 304 | background-color:#00a0d2; |
| 305 | box-shadow: 0 1px 0 rgba(120, 200, 230, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.15); |
| 306 | } |
| 307 | .cb-checkbox.checked:hover .cb-inner { |
| 308 | background-color:#0091cd |
| 309 | } |
| 310 | .cb-checkbox.checked.cb-sm i:before { |
| 311 | top:4px; |
| 312 | left:1px |
| 313 | } |
| 314 | .cb-checkbox.checked.cb-sm i:after { |
| 315 | height:9px |
| 316 | } |
| 317 | .cb-checkbox.checked.cb-md i:before { |
| 318 | top:10px; |
| 319 | left:4px; |
| 320 | height:8px |
| 321 | } |
| 322 | .cb-checkbox.checked.cb-md i:after { |
| 323 | bottom:6px; |
| 324 | left:11px; |
| 325 | height:16px |
| 326 | } |
| 327 | .cb-checkbox.checked.cb-lg i:before { |
| 328 | top:11px; |
| 329 | left:6px; |
| 330 | height:12px |
| 331 | } |
| 332 | .cb-checkbox.checked.cb-lg i:after { |
| 333 | left:14px; |
| 334 | bottom:7px; |
| 335 | height:20px |
| 336 | } |
| 337 | .cb-checkbox.checked i:before { |
| 338 | top:6px; |
| 339 | left:2px; |
| 340 | height:6px |
| 341 | } |
| 342 | .cb-checkbox.checked i:after { |
| 343 | height:12px |
| 344 | } |
| 345 | .cb-radio.checked .cb-inner { |
| 346 | background:#fff; |
| 347 | box-shadow:0 0 3px #efefef |
| 348 | } |
| 349 | .cb-radio.checked i { |
| 350 | -moz-transform:scale(1.1, 1.1); |
| 351 | -ms-transform:scale(1.1, 1.1); |
| 352 | -webkit-transform:scale(1.1, 1.1); |
| 353 | transform:scale(1.1, 1.1); |
| 354 | background-color:#00a0d2 |
| 355 | } |
| 356 | .cb-checkbox:hover .cb-inner, .cb-radio:hover .cb-inner { |
| 357 | border-color:#0073aa |
| 358 | } |
| 359 | .cb-switcher { |
| 360 | display:inline-block; |
| 361 | border:1px solid #eee; |
| 362 | background-color:#fff; |
| 363 | width:95px; |
| 364 | height:35px; |
| 365 | position:relative; |
| 366 | -moz-border-radius:20px; |
| 367 | -webkit-border-radius:20px; |
| 368 | border-radius:20px; |
| 369 | -moz-transition:background 0.4s ease; |
| 370 | -o-transition:background 0.4s ease; |
| 371 | -webkit-transition:background 0.4s ease; |
| 372 | transition:background 0.4s ease |
| 373 | } |
| 374 | .cb-switcher, .cb-switcher * { |
| 375 | cursor:pointer |
| 376 | } |
| 377 | .cb-switcher ::-moz-selection { |
| 378 | background-color:transparent |
| 379 | } |
| 380 | .cb-switcher ::selection { |
| 381 | background-color:transparent |
| 382 | } |
| 383 | .cb-switcher .cb-state { |
| 384 | z-index:1; |
| 385 | text-align:center; |
| 386 | font-size:12px |
| 387 | } |
| 388 | .cb-switcher .cb-state, .cb-switcher:before { |
| 389 | width:34px; |
| 390 | height:34px; |
| 391 | line-height:34px; |
| 392 | position:absolute; |
| 393 | left:0; |
| 394 | top:-1px; |
| 395 | -moz-border-radius:100%; |
| 396 | -webkit-border-radius:100%; |
| 397 | border-radius:100%; |
| 398 | -moz-transition:all 0.4s ease; |
| 399 | -o-transition:all 0.4s ease; |
| 400 | -webkit-transition:all 0.4s ease; |
| 401 | transition:all 0.4s ease |
| 402 | } |
| 403 | .cb-switcher:before { |
| 404 | content:""; |
| 405 | background-color:#eee; |
| 406 | -moz-box-shadow:1px 1px 1px rgba(0, 0, 0, 0.1); |
| 407 | -webkit-box-shadow:1px 1px 1px rgba(0, 0, 0, 0.1); |
| 408 | box-shadow:1px 1px 1px rgba(0, 0, 0, 0.1) |
| 409 | } |
| 410 | .cb-switcher.checked { |
| 411 | background-color:#00a0d2 |
| 412 | } |
| 413 | .cb-switcher.checked .cb-state, .cb-switcher.checked:before { |
| 414 | left:60px; |
| 415 | color:#00a0d2 |
| 416 | } |
| 417 | .cb-switcher.checked:before { |
| 418 | background-color:#fff; |
| 419 | -moz-box-shadow:-1px 1px 1px rgba(0, 0, 0, 0.1); |
| 420 | -webkit-box-shadow:-1px 1px 1px rgba(0, 0, 0, 0.1); |
| 421 | box-shadow:-1px 1px 1px rgba(0, 0, 0, 0.1) |
| 422 | } |
| 423 | .cb-switcher.checked .inner-switcher:before { |
| 424 | border-top-color:#0073aa |
| 425 | } |
| 426 | .cb-switcher.checked .inner-switcher:after { |
| 427 | border-bottom-color:#0073aa |
| 428 | } |
| 429 | .cb-switcher .inner-switcher:before, .cb-switcher .inner-switcher:after { |
| 430 | content:""; |
| 431 | position:absolute; |
| 432 | left:50%; |
| 433 | width:0; |
| 434 | height:0; |
| 435 | z-index:2; |
| 436 | margin-left:-20px; |
| 437 | border-left:20px solid transparent; |
| 438 | border-right:20px solid transparent; |
| 439 | -moz-transition:border 0.4s ease; |
| 440 | -o-transition:border 0.4s ease; |
| 441 | -webkit-transition:border 0.4s ease; |
| 442 | transition:border 0.4s ease |
| 443 | } |
| 444 | .cb-switcher .inner-switcher:before { |
| 445 | border-top:17px solid #fff; |
| 446 | top:0 |
| 447 | } |
| 448 | .cb-switcher .inner-switcher:after { |
| 449 | border-bottom:17px solid #fff; |
| 450 | bottom:0 |
| 451 | } |
| 452 | .cb-state { |
| 453 | color:#ccc; |
| 454 | display:inline-block |
| 455 | } |
| 456 | .cb-switcher-group .cb-state { |
| 457 | position:relative; |
| 458 | top:7px |
| 459 | } |
| 460 | .is-hidden { |
| 461 | display:none !important; |
| 462 | visibility:hidden !important |
| 463 | } |
| 464 | output { |
| 465 | display: block; |
| 466 | font-size: 30px; |
| 467 | font-weight: bold; |
| 468 | text-align: center; |
| 469 | margin: 30px 0; |
| 470 | width: 100%; |
| 471 | } |