5717 lines
150 KiB
CSS
5717 lines
150 KiB
CSS
/* Pi-hole: A black hole for Internet advertisements
|
|
* (c) 2021 Pi-hole, LLC (https://pi-hole.net)
|
|
* Network-wide ad blocking via your own hardware.
|
|
*
|
|
* This file is copyright under the latest version of the EUPL.
|
|
* Please see LICENSE file for your rights under this license.
|
|
*
|
|
* The colors used in this theme has been inspired by
|
|
* https://addons.mozilla.org/en-US/firefox/addon/darkreader/
|
|
// editorconfig-checker-disable
|
|
_______
|
|
/ \
|
|
.==. .==.
|
|
(( ))==(( ))
|
|
/ "==" "=="\
|
|
/____|| || ||___\
|
|
________ ____ ________ ___ ___
|
|
| ___ \ / \ | ___ \ | | / /
|
|
| | \ \ / /\ \ | | \ \| |_/ /
|
|
| | ) / /__\ \ | |__/ /| ___ \
|
|
| |__/ / ______ \| ____ \| | \ \
|
|
_______|_______/__/ ____ \__\__|___\__\__|___\__\____
|
|
| ___ \ | ____/ / \ | ___ \ | ____| ___ \
|
|
| | \ \| |___ / /\ \ | | \ \| |___| | \ \
|
|
| |__/ /| ____/ /__\ \ | | ) | ____| |__/ /
|
|
| ____ \| |__/ ______ \| |__/ /| |___| ____ \
|
|
|__| \__\____/__/ \__\_______/ |______|__| \__\
|
|
https://darkreader.org
|
|
|
|
// editorconfig-checker-enable
|
|
*/
|
|
/* User-Agent Style */
|
|
html {
|
|
background-color: #181a1b !important;
|
|
/* fix #2554: browser not detecting dark mode */
|
|
color-scheme: dark;
|
|
}
|
|
html,
|
|
body,
|
|
input,
|
|
textarea,
|
|
select,
|
|
button {
|
|
background-color: #181a1b;
|
|
border-color: #736b5e;
|
|
color: #e8e6e3;
|
|
}
|
|
a {
|
|
background-color: transparent;
|
|
text-decoration-color: currentcolor;
|
|
color: rgb(85, 158, 201);
|
|
}
|
|
table {
|
|
border-color: #545b5e;
|
|
background-color: transparent;
|
|
}
|
|
::-moz-placeholder {
|
|
color: #b2aba1;
|
|
opacity: 0.5 !important;
|
|
}
|
|
::placeholder {
|
|
color: #b2aba1;
|
|
opacity: 0.5 !important;
|
|
}
|
|
|
|
/*** Overwrite chrome's input field auto-filling ***/
|
|
input:-webkit-autofill,
|
|
input:-webkit-autofill:focus,
|
|
textarea:-webkit-autofill,
|
|
select:-webkit-autofill {
|
|
-webkit-text-fill-color: #b2aba1 !important;
|
|
-webkit-box-shadow: 0 0 0px 1000px #181a1b inset;
|
|
-webkit-transition: background-color 1s ease-in-out 0s;
|
|
transition: background-color 1s ease-in-out 0s;
|
|
}
|
|
::-webkit-scrollbar {
|
|
background-color: #202324;
|
|
color: #aba499;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #454a4d;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background-color: #575e62;
|
|
}
|
|
::-webkit-scrollbar-thumb:active {
|
|
background-color: #484e51;
|
|
}
|
|
::-webkit-scrollbar-corner {
|
|
background-color: #181a1b;
|
|
}
|
|
* {
|
|
scrollbar-color: #454a4d #202324;
|
|
}
|
|
::-moz-selection {
|
|
background-color: #004daa !important;
|
|
color: #e8e6e3 !important;
|
|
}
|
|
::selection {
|
|
background-color: #004daa !important;
|
|
color: #e8e6e3 !important;
|
|
}
|
|
|
|
/* Invert Style */
|
|
.jfk-bubble.gtx-bubble, .captcheck_answer_label > input + img, span#closed_text > img[src^="https://www.gstatic.com/images/branding/googlelogo"], embed[type="application/pdf"]
|
|
{
|
|
filter: invert(100%) hue-rotate(180deg) contrast(90%) !important;
|
|
}
|
|
|
|
/* Variables Style */
|
|
:root {
|
|
--darkreader-neutral-background: #131516;
|
|
--darkreader-neutral-text: #d8d4cf;
|
|
--darkreader-selection-background: #004daa;
|
|
--darkreader-selection-text: #e8e6e3;
|
|
--datatable-bgcolor: rgb(35, 47, 52);
|
|
--overlay-bgcolor: rgba(35, 47, 52, 0.7);
|
|
|
|
/* Dashboard graphic bars */
|
|
--allowed-color: #12b660;
|
|
--blocked-color: #822d21;
|
|
--cached-color: #44649c;
|
|
--other-color: #969798;
|
|
}
|
|
|
|
/* Modified CSS */
|
|
.fa-layers-counter {
|
|
background-color: rgb(182, 0, 18);
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.fa-border {
|
|
border-color: rgb(53, 57, 59);
|
|
}
|
|
.fa-inverse {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.sr-only {
|
|
border-color: currentcolor;
|
|
}
|
|
.svg-inline--fa .fa-primary {
|
|
fill: currentcolor;
|
|
}
|
|
.svg-inline--fa .fa-secondary {
|
|
fill: currentcolor;
|
|
}
|
|
.svg-inline--fa mask .fa-primary,
|
|
.svg-inline--fa mask .fa-secondary {
|
|
fill: rgb(232, 230, 227);
|
|
}
|
|
.fad.fa-inverse {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
a:active,
|
|
a:hover {
|
|
outline-color: currentcolor;
|
|
}
|
|
abbr[title] {
|
|
border-bottom-color: currentcolor;
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
mark {
|
|
background-color: rgb(204, 204, 0);
|
|
background-image: none;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
img {
|
|
border-color: currentcolor;
|
|
}
|
|
button,
|
|
input,
|
|
optgroup,
|
|
select,
|
|
textarea {
|
|
color: inherit;
|
|
}
|
|
button::-moz-focus-inner,
|
|
input::-moz-focus-inner {
|
|
border-color: currentcolor;
|
|
}
|
|
fieldset {
|
|
border-color: currentcolor;
|
|
}
|
|
legend {
|
|
color: rgb(200, 195, 188);
|
|
border-color: currentcolor currentcolor rgb(55, 60, 62);
|
|
}
|
|
body {
|
|
color: rgb(200, 195, 188);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
a:focus,
|
|
a:hover {
|
|
color: rgb(141, 187, 223);
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.img-thumbnail {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
hr {
|
|
border-color: rgb(53, 57, 59) currentcolor currentcolor;
|
|
border-top-color: rgb(112, 104, 92);
|
|
}
|
|
.h1,
|
|
.h2,
|
|
.h3,
|
|
.h4,
|
|
.h5,
|
|
.h6,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
color: inherit;
|
|
}
|
|
.h1 .small,
|
|
.h1 small,
|
|
.h2 .small,
|
|
.h2 small,
|
|
.h3 .small,
|
|
.h3 small,
|
|
.h4 .small,
|
|
.h4 small,
|
|
.h5 .small,
|
|
.h5 small,
|
|
.h6 .small,
|
|
.h6 small,
|
|
h1 .small,
|
|
h1 small,
|
|
h2 .small,
|
|
h2 small,
|
|
h3 .small,
|
|
h3 small,
|
|
h4 .small,
|
|
h4 small,
|
|
h5 .small,
|
|
h5 small,
|
|
h6 .small,
|
|
h6 small {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.mark,
|
|
mark {
|
|
background-color: rgb(63, 54, 7);
|
|
}
|
|
.text-muted {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.text-primary {
|
|
color: rgb(105, 166, 213);
|
|
}
|
|
a.text-primary:focus,
|
|
a.text-primary:hover {
|
|
color: rgb(129, 180, 220);
|
|
}
|
|
.text-success {
|
|
color: rgb(139, 196, 140);
|
|
}
|
|
a.text-success:focus,
|
|
a.text-success:hover {
|
|
color: rgb(162, 208, 164);
|
|
}
|
|
.text-info {
|
|
color: rgb(117, 178, 208);
|
|
}
|
|
a.text-info:focus,
|
|
a.text-info:hover {
|
|
color: rgb(144, 192, 217);
|
|
}
|
|
.text-warning {
|
|
color: rgb(198, 171, 123);
|
|
}
|
|
a.text-warning:focus,
|
|
a.text-warning:hover {
|
|
color: rgb(209, 187, 148);
|
|
}
|
|
.text-danger {
|
|
color: rgb(194, 102, 100);
|
|
}
|
|
a.text-danger:focus,
|
|
a.text-danger:hover {
|
|
color: rgb(204, 127, 126);
|
|
}
|
|
.bg-primary {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(41, 98, 146);
|
|
}
|
|
a.bg-primary:focus,
|
|
a.bg-primary:hover {
|
|
background-color: rgb(32, 77, 115);
|
|
}
|
|
.bg-success {
|
|
background-color: rgb(41, 60, 23);
|
|
}
|
|
a.bg-success:focus,
|
|
a.bg-success:hover {
|
|
background-color: rgb(56, 83, 31);
|
|
}
|
|
.bg-info {
|
|
background-color: rgb(14, 48, 65);
|
|
}
|
|
a.bg-info:focus,
|
|
a.bg-info:hover {
|
|
background-color: rgb(19, 66, 90);
|
|
}
|
|
.bg-warning {
|
|
background-color: rgb(63, 54, 7);
|
|
}
|
|
a.bg-warning:focus,
|
|
a.bg-warning:hover {
|
|
background-color: rgb(90, 77, 10);
|
|
}
|
|
.bg-danger {
|
|
background-color: rgb(56, 22, 22);
|
|
}
|
|
a.bg-danger:focus,
|
|
a.bg-danger:hover {
|
|
background-color: rgb(79, 30, 30);
|
|
}
|
|
.page-header {
|
|
border-bottom-color: rgb(53, 57, 59);
|
|
}
|
|
.list-unstyled {
|
|
list-style-image: none;
|
|
}
|
|
.list-inline {
|
|
list-style-image: none;
|
|
}
|
|
blockquote {
|
|
border-left-color: rgb(53, 57, 59);
|
|
}
|
|
blockquote .small,
|
|
blockquote footer,
|
|
blockquote small {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.blockquote-reverse,
|
|
blockquote.pull-right {
|
|
border-right-color: rgb(53, 57, 59);
|
|
border-left-color: currentcolor;
|
|
}
|
|
code {
|
|
color: rgb(221, 73, 110);
|
|
background-color: rgb(43, 20, 26);
|
|
}
|
|
kbd {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(38, 42, 43);
|
|
box-shadow: rgba(0, 0, 0, 0.25) 0 -1px 0 inset;
|
|
}
|
|
kbd kbd {
|
|
box-shadow: none;
|
|
}
|
|
pre {
|
|
color: rgb(200, 195, 188);
|
|
background-color: rgb(30, 32, 33);
|
|
border-color: rgb(62, 68, 70);
|
|
}
|
|
pre code {
|
|
color: inherit;
|
|
background-color: transparent;
|
|
}
|
|
caption {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.table > tbody > tr > td,
|
|
.table > tbody > tr > th,
|
|
.table > tfoot > tr > td,
|
|
.table > tfoot > tr > th,
|
|
.table > thead > tr > td,
|
|
.table > thead > tr > th {
|
|
border-top-color: rgb(51, 55, 57);
|
|
}
|
|
.table > thead > tr > th {
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
}
|
|
.table > caption + thead > tr:first-child > td,
|
|
.table > caption + thead > tr:first-child > th,
|
|
.table > colgroup + thead > tr:first-child > td,
|
|
.table > colgroup + thead > tr:first-child > th,
|
|
.table > thead:first-child > tr:first-child > td,
|
|
.table > thead:first-child > tr:first-child > th {
|
|
border-top-color: currentcolor;
|
|
}
|
|
.table > tbody + tbody {
|
|
border-top-color: rgb(58, 62, 65);
|
|
}
|
|
.table .table {
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.table-bordered {
|
|
border-color: rgb(51, 55, 57);
|
|
}
|
|
.table-bordered > tbody > tr > td,
|
|
.table-bordered > tbody > tr > th,
|
|
.table-bordered > tfoot > tr > td,
|
|
.table-bordered > tfoot > tr > th,
|
|
.table-bordered > thead > tr > td,
|
|
.table-bordered > thead > tr > th {
|
|
border-color: rgb(51, 55, 57);
|
|
}
|
|
.table-striped > tbody > tr:nth-of-type(2n + 1) {
|
|
background-color: rgb(27, 30, 31);
|
|
}
|
|
.table-hover > tbody > tr:hover {
|
|
background-color: rgb(30, 32, 33);
|
|
}
|
|
.table > tbody > tr.active > td,
|
|
.table > tbody > tr.active > th,
|
|
.table > tbody > tr > td.active,
|
|
.table > tbody > tr > th.active,
|
|
.table > tfoot > tr.active > td,
|
|
.table > tfoot > tr.active > th,
|
|
.table > tfoot > tr > td.active,
|
|
.table > tfoot > tr > th.active,
|
|
.table > thead > tr.active > td,
|
|
.table > thead > tr.active > th,
|
|
.table > thead > tr > td.active,
|
|
.table > thead > tr > th.active {
|
|
background-color: rgb(30, 32, 33);
|
|
}
|
|
.table-hover > tbody > tr.active:hover > td,
|
|
.table-hover > tbody > tr.active:hover > th,
|
|
.table-hover > tbody > tr:hover > .active,
|
|
.table-hover > tbody > tr > td.active:hover,
|
|
.table-hover > tbody > tr > th.active:hover {
|
|
background-color: rgb(37, 40, 42);
|
|
}
|
|
.table > tbody > tr.success > td,
|
|
.table > tbody > tr.success > th,
|
|
.table > tbody > tr > td.success,
|
|
.table > tbody > tr > th.success,
|
|
.table > tfoot > tr.success > td,
|
|
.table > tfoot > tr.success > th,
|
|
.table > tfoot > tr > td.success,
|
|
.table > tfoot > tr > th.success,
|
|
.table > thead > tr.success > td,
|
|
.table > thead > tr.success > th,
|
|
.table > thead > tr > td.success,
|
|
.table > thead > tr > th.success {
|
|
background-color: rgb(41, 60, 23);
|
|
}
|
|
.table-hover > tbody > tr.success:hover > td,
|
|
.table-hover > tbody > tr.success:hover > th,
|
|
.table-hover > tbody > tr:hover > .success,
|
|
.table-hover > tbody > tr > td.success:hover,
|
|
.table-hover > tbody > tr > th.success:hover {
|
|
background-color: rgb(48, 71, 27);
|
|
}
|
|
.table > tbody > tr.info > td,
|
|
.table > tbody > tr.info > th,
|
|
.table > tbody > tr > td.info,
|
|
.table > tbody > tr > th.info,
|
|
.table > tfoot > tr.info > td,
|
|
.table > tfoot > tr.info > th,
|
|
.table > tfoot > tr > td.info,
|
|
.table > tfoot > tr > th.info,
|
|
.table > thead > tr.info > td,
|
|
.table > thead > tr.info > th,
|
|
.table > thead > tr > td.info,
|
|
.table > thead > tr > th.info {
|
|
background-color: rgb(14, 48, 65);
|
|
}
|
|
.table-hover > tbody > tr.info:hover > td,
|
|
.table-hover > tbody > tr.info:hover > th,
|
|
.table-hover > tbody > tr:hover > .info,
|
|
.table-hover > tbody > tr > td.info:hover,
|
|
.table-hover > tbody > tr > th.info:hover {
|
|
background-color: rgb(44, 48, 50);
|
|
}
|
|
.table > tbody > tr.warning > td,
|
|
.table > tbody > tr.warning > th,
|
|
.table > tbody > tr > td.warning,
|
|
.table > tbody > tr > th.warning,
|
|
.table > tfoot > tr.warning > td,
|
|
.table > tfoot > tr.warning > th,
|
|
.table > tfoot > tr > td.warning,
|
|
.table > tfoot > tr > th.warning,
|
|
.table > thead > tr.warning > td,
|
|
.table > thead > tr.warning > th,
|
|
.table > thead > tr > td.warning,
|
|
.table > thead > tr > th.warning {
|
|
background-color: rgb(63, 54, 7);
|
|
}
|
|
.table-hover > tbody > tr.warning:hover > td,
|
|
.table-hover > tbody > tr.warning:hover > th,
|
|
.table-hover > tbody > tr:hover > .warning,
|
|
.table-hover > tbody > tr > td.warning:hover,
|
|
.table-hover > tbody > tr > th.warning:hover {
|
|
background-color: rgb(77, 65, 8);
|
|
}
|
|
.table > tbody > tr.danger > td,
|
|
.table > tbody > tr.danger > th,
|
|
.table > tbody > tr > td.danger,
|
|
.table > tbody > tr > th.danger,
|
|
.table > tfoot > tr.danger > td,
|
|
.table > tfoot > tr.danger > th,
|
|
.table > tfoot > tr > td.danger,
|
|
.table > tfoot > tr > th.danger,
|
|
.table > thead > tr.danger > td,
|
|
.table > thead > tr.danger > th,
|
|
.table > thead > tr > td.danger,
|
|
.table > thead > tr > th.danger {
|
|
background-color: rgb(56, 22, 22);
|
|
}
|
|
.table-hover > tbody > tr.danger:hover > td,
|
|
.table-hover > tbody > tr.danger:hover > th,
|
|
.table-hover > tbody > tr:hover > .danger,
|
|
.table-hover > tbody > tr > td.danger:hover,
|
|
.table-hover > tbody > tr > th.danger:hover {
|
|
background-color: rgb(67, 26, 26);
|
|
}
|
|
@media screen and (max-width: 767px) {
|
|
.table-responsive {
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.table-responsive > .table-bordered {
|
|
border-color: currentcolor;
|
|
}
|
|
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
|
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
|
.table-responsive > .table-bordered > tfoot > tr > td:first-child,
|
|
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
|
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
|
.table-responsive > .table-bordered > thead > tr > th:first-child {
|
|
border-left-color: currentcolor;
|
|
}
|
|
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
|
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
|
.table-responsive > .table-bordered > tfoot > tr > td:last-child,
|
|
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
|
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
|
.table-responsive > .table-bordered > thead > tr > th:last-child {
|
|
border-right-color: currentcolor;
|
|
}
|
|
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
|
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
|
.table-responsive > .table-bordered > tfoot > tr:last-child > td,
|
|
.table-responsive > .table-bordered > tfoot > tr:last-child > th {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
}
|
|
output {
|
|
color: rgb(178, 172, 162);
|
|
}
|
|
.form-control {
|
|
color: rgb(178, 172, 162);
|
|
background-image: none;
|
|
box-shadow: none;
|
|
border-color: rgb(59, 64, 66);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.form-control:focus {
|
|
outline-color: currentcolor;
|
|
border-color: rgb(44, 103, 137);
|
|
box-shadow: none;
|
|
}
|
|
.form-control::-moz-placeholder {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.form-control::placeholder {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.form-control::-webkit-input-placeholder {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.form-control[disabled],
|
|
.form-control[readonly],
|
|
fieldset[disabled] .form-control {
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.has-success .checkbox,
|
|
.has-success .checkbox-inline,
|
|
.has-success .control-label,
|
|
.has-success .help-block,
|
|
.has-success .radio,
|
|
.has-success .radio-inline,
|
|
.has-success.checkbox label,
|
|
.has-success.checkbox-inline label,
|
|
.has-success.radio label,
|
|
.has-success.radio-inline label {
|
|
color: rgb(139, 196, 140);
|
|
}
|
|
.has-success .form-control {
|
|
border-color: rgb(68, 134, 69);
|
|
box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset;
|
|
}
|
|
.has-success .form-control:focus {
|
|
border-color: rgb(73, 143, 75);
|
|
box-shadow:
|
|
rgba(0, 0, 0, 0.07) 0 1px 1px inset,
|
|
rgb(64, 125, 80) 0 0 6px;
|
|
}
|
|
.has-success .input-group-addon {
|
|
color: rgb(139, 196, 140);
|
|
background-color: rgb(41, 60, 23);
|
|
border-color: rgb(68, 134, 69);
|
|
}
|
|
.has-success .form-control-feedback {
|
|
color: rgb(139, 196, 140);
|
|
}
|
|
.has-warning .checkbox,
|
|
.has-warning .checkbox-inline,
|
|
.has-warning .control-label,
|
|
.has-warning .help-block,
|
|
.has-warning .radio,
|
|
.has-warning .radio-inline,
|
|
.has-warning.checkbox label,
|
|
.has-warning.checkbox-inline label,
|
|
.has-warning.radio label,
|
|
.has-warning.radio-inline label {
|
|
color: rgb(198, 171, 123);
|
|
}
|
|
.has-warning .form-control {
|
|
border-color: rgb(137, 108, 59);
|
|
box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset;
|
|
}
|
|
.has-warning .form-control:focus {
|
|
border-color: rgb(148, 117, 64);
|
|
box-shadow:
|
|
rgba(0, 0, 0, 0.07) 0 1px 1px inset,
|
|
rgb(125, 98, 53) 0 0 6px;
|
|
}
|
|
.has-warning .input-group-addon {
|
|
color: rgb(198, 171, 123);
|
|
background-color: rgb(63, 54, 7);
|
|
border-color: rgb(137, 108, 59);
|
|
}
|
|
.has-warning .form-control-feedback {
|
|
color: rgb(198, 171, 123);
|
|
}
|
|
.has-error .checkbox,
|
|
.has-error .checkbox-inline,
|
|
.has-error .control-label,
|
|
.has-error .help-block,
|
|
.has-error .radio,
|
|
.has-error .radio-inline,
|
|
.has-error.checkbox label,
|
|
.has-error.checkbox-inline label,
|
|
.has-error.radio label,
|
|
.has-error.radio-inline label {
|
|
color: rgb(194, 102, 100);
|
|
}
|
|
.has-error .form-control {
|
|
border-color: rgb(133, 53, 52);
|
|
box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset;
|
|
}
|
|
.has-error .form-control:focus {
|
|
border-color: rgb(143, 58, 56);
|
|
box-shadow:
|
|
rgba(0, 0, 0, 0.07) 0 1px 1px inset,
|
|
rgb(111, 45, 44) 0 0 6px;
|
|
}
|
|
.has-error .input-group-addon {
|
|
color: rgb(194, 102, 100);
|
|
background-color: rgb(56, 22, 22);
|
|
border-color: rgb(133, 53, 52);
|
|
}
|
|
.has-error .form-control-feedback {
|
|
color: rgb(194, 102, 100);
|
|
}
|
|
.help-block {
|
|
color: rgb(159, 151, 139);
|
|
}
|
|
.btn {
|
|
background-image: none;
|
|
border-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
.btn.focus,
|
|
.btn:focus,
|
|
.btn:hover {
|
|
color: rgb(200, 195, 188);
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.btn.active,
|
|
.btn:active {
|
|
background-image: none;
|
|
outline-color: currentcolor;
|
|
box-shadow: rgba(0, 0, 0, 0.13) 0 3px 5px inset;
|
|
}
|
|
.btn.disabled,
|
|
.btn[disabled],
|
|
fieldset[disabled] .btn {
|
|
box-shadow: none;
|
|
}
|
|
.btn-default {
|
|
background-color: rgb(30, 33, 34);
|
|
color: rgb(189, 183, 175);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.btn-default.focus,
|
|
.btn-default:focus {
|
|
color: rgb(200, 195, 188);
|
|
background-color: rgb(38, 41, 43);
|
|
border-color: rgb(80, 87, 91);
|
|
}
|
|
.btn-default:hover {
|
|
color: rgb(200, 195, 188);
|
|
background-color: rgb(38, 41, 43);
|
|
border-color: rgb(71, 77, 80);
|
|
}
|
|
.btn-default.active,
|
|
.btn-default:active,
|
|
.open > .dropdown-toggle.btn-default {
|
|
color: rgb(200, 195, 188);
|
|
background: rgb(24, 26, 27);
|
|
border-color: rgb(71, 77, 80);
|
|
}
|
|
.btn-default.active.focus,
|
|
.btn-default.active:focus,
|
|
.btn-default.active:hover,
|
|
.btn-default:active.focus,
|
|
.btn-default:active:focus,
|
|
.btn-default:active:hover,
|
|
.open > .dropdown-toggle.btn-default.focus,
|
|
.open > .dropdown-toggle.btn-default:focus,
|
|
.open > .dropdown-toggle.btn-default:hover {
|
|
color: rgb(200, 195, 188);
|
|
background: rgb(24, 26, 27);
|
|
border-color: rgb(80, 87, 91);
|
|
}
|
|
|
|
.bootstrap-select > .dropdown-toggle {
|
|
border-radius: 0;
|
|
background: rgb(24, 26, 27);
|
|
}
|
|
|
|
.btn-default.disabled.focus,
|
|
.btn-default.disabled:focus,
|
|
.btn-default.disabled:hover,
|
|
.btn-default[disabled].focus,
|
|
.btn-default[disabled]:focus,
|
|
.btn-default[disabled]:hover,
|
|
fieldset[disabled] .btn-default.focus,
|
|
fieldset[disabled] .btn-default:focus,
|
|
fieldset[disabled] .btn-default:hover {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(62, 68, 70);
|
|
}
|
|
.btn-default .badge {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(38, 42, 43);
|
|
}
|
|
.btn-primary {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(48, 113, 150);
|
|
border-color: rgb(46, 107, 143);
|
|
}
|
|
.btn-primary.focus,
|
|
.btn-primary:focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(32, 77, 115);
|
|
border-color: rgb(126, 117, 104);
|
|
}
|
|
.btn-primary:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(32, 77, 115);
|
|
border-color: rgb(46, 110, 165);
|
|
}
|
|
.btn-primary.active,
|
|
.btn-primary:active,
|
|
.open > .dropdown-toggle.btn-primary {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(32, 77, 115);
|
|
background-image: none;
|
|
border-color: rgb(46, 110, 165);
|
|
}
|
|
.btn-primary.active.focus,
|
|
.btn-primary.active:focus,
|
|
.btn-primary.active:hover,
|
|
.btn-primary:active.focus,
|
|
.btn-primary:active:focus,
|
|
.btn-primary:active:hover,
|
|
.open > .dropdown-toggle.btn-primary.focus,
|
|
.open > .dropdown-toggle.btn-primary:focus,
|
|
.open > .dropdown-toggle.btn-primary:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(26, 62, 93);
|
|
border-color: rgb(126, 117, 104);
|
|
}
|
|
.btn-primary.disabled.focus,
|
|
.btn-primary.disabled:focus,
|
|
.btn-primary.disabled:hover,
|
|
.btn-primary[disabled].focus,
|
|
.btn-primary[disabled]:focus,
|
|
.btn-primary[disabled]:hover,
|
|
fieldset[disabled] .btn-primary.focus,
|
|
fieldset[disabled] .btn-primary:focus,
|
|
fieldset[disabled] .btn-primary:hover {
|
|
background-color: rgb(41, 98, 146);
|
|
border-color: rgb(42, 100, 150);
|
|
}
|
|
.btn-primary .badge {
|
|
color: rgb(105, 166, 213);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-success {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(0, 133, 72);
|
|
border-color: rgb(0, 213, 115);
|
|
}
|
|
.btn-success.focus,
|
|
.btn-success:focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(54, 126, 54);
|
|
border-color: rgb(66, 152, 66);
|
|
}
|
|
.btn-success:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(54, 126, 54);
|
|
border-color: rgb(60, 138, 60);
|
|
}
|
|
.btn-success.active,
|
|
.btn-success:active,
|
|
.open > .dropdown-toggle.btn-success {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(54, 126, 54);
|
|
background-image: none;
|
|
border-color: rgb(60, 138, 60);
|
|
}
|
|
.btn-success.active.focus,
|
|
.btn-success.active:focus,
|
|
.btn-success.active:hover,
|
|
.btn-success:active.focus,
|
|
.btn-success:active:focus,
|
|
.btn-success:active:hover,
|
|
.open > .dropdown-toggle.btn-success.focus,
|
|
.open > .dropdown-toggle.btn-success:focus,
|
|
.open > .dropdown-toggle.btn-success:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(46, 106, 46);
|
|
border-color: rgb(66, 152, 66);
|
|
}
|
|
.btn-success.disabled.focus,
|
|
.btn-success.disabled:focus,
|
|
.btn-success.disabled:hover,
|
|
.btn-success[disabled].focus,
|
|
.btn-success[disabled]:focus,
|
|
.btn-success[disabled]:hover,
|
|
fieldset[disabled] .btn-success.focus,
|
|
fieldset[disabled] .btn-success:focus,
|
|
fieldset[disabled] .btn-success:hover {
|
|
background-color: rgb(77, 133, 58);
|
|
border-color: rgb(55, 125, 55);
|
|
}
|
|
.btn-success .badge {
|
|
color: rgb(105, 190, 105);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-info {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(0, 154, 191);
|
|
border-color: rgb(0, 153, 191);
|
|
}
|
|
.btn-info.focus,
|
|
.btn-info:focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(34, 136, 166);
|
|
border-color: rgb(35, 141, 172);
|
|
}
|
|
.btn-info:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(34, 136, 166);
|
|
border-color: rgb(31, 128, 156);
|
|
}
|
|
.btn-info.active,
|
|
.btn-info:active,
|
|
.open > .dropdown-toggle.btn-info {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(34, 136, 166);
|
|
background-image: none;
|
|
border-color: rgb(31, 128, 156);
|
|
}
|
|
.btn-info.active.focus,
|
|
.btn-info.active:focus,
|
|
.btn-info.active:hover,
|
|
.btn-info:active.focus,
|
|
.btn-info:active:focus,
|
|
.btn-info:active:hover,
|
|
.open > .dropdown-toggle.btn-info.focus,
|
|
.open > .dropdown-toggle.btn-info:focus,
|
|
.open > .dropdown-toggle.btn-info:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(30, 123, 150);
|
|
border-color: rgb(35, 141, 172);
|
|
}
|
|
.btn-info.disabled.focus,
|
|
.btn-info.disabled:focus,
|
|
.btn-info.disabled:hover,
|
|
.btn-info[disabled].focus,
|
|
.btn-info[disabled]:focus,
|
|
.btn-info[disabled]:hover,
|
|
fieldset[disabled] .btn-info.focus,
|
|
fieldset[disabled] .btn-info:focus,
|
|
fieldset[disabled] .btn-info:hover {
|
|
background-color: rgb(28, 115, 141);
|
|
border-color: rgb(28, 115, 140);
|
|
}
|
|
.btn-info .badge {
|
|
color: rgb(98, 195, 223);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-warning {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(191, 121, 10);
|
|
border-color: rgb(176, 111, 9);
|
|
}
|
|
.btn-warning.focus,
|
|
.btn-warning:focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(181, 113, 15);
|
|
border-color: rgb(189, 118, 16);
|
|
}
|
|
.btn-warning:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(181, 113, 15);
|
|
border-color: rgb(171, 107, 14);
|
|
}
|
|
.btn-warning.active,
|
|
.btn-warning:active,
|
|
.open > .dropdown-toggle.btn-warning {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(181, 113, 15);
|
|
background-image: none;
|
|
border-color: rgb(171, 107, 14);
|
|
}
|
|
.btn-warning.active.focus,
|
|
.btn-warning.active:focus,
|
|
.btn-warning.active:hover,
|
|
.btn-warning:active.focus,
|
|
.btn-warning:active:focus,
|
|
.btn-warning:active:hover,
|
|
.open > .dropdown-toggle.btn-warning.focus,
|
|
.open > .dropdown-toggle.btn-warning:focus,
|
|
.open > .dropdown-toggle.btn-warning:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(170, 106, 14);
|
|
border-color: rgb(189, 118, 16);
|
|
}
|
|
.btn-warning.disabled.focus,
|
|
.btn-warning.disabled:focus,
|
|
.btn-warning.disabled:hover,
|
|
.btn-warning[disabled].focus,
|
|
.btn-warning[disabled]:focus,
|
|
.btn-warning[disabled]:hover,
|
|
fieldset[disabled] .btn-warning.focus,
|
|
fieldset[disabled] .btn-warning:focus,
|
|
fieldset[disabled] .btn-warning:hover {
|
|
background-color: rgb(153, 95, 13);
|
|
border-color: rgb(154, 96, 13);
|
|
}
|
|
.btn-warning .badge {
|
|
color: rgb(241, 176, 84);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-danger {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(162, 43, 28);
|
|
border-color: rgb(153, 41, 26);
|
|
}
|
|
.btn-danger.focus,
|
|
.btn-danger:focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(161, 38, 35);
|
|
border-color: rgb(175, 42, 37);
|
|
}
|
|
.btn-danger:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(161, 38, 35);
|
|
border-color: rgb(158, 38, 34);
|
|
}
|
|
.btn-danger.active,
|
|
.btn-danger:active,
|
|
.open > .dropdown-toggle.btn-danger {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(161, 38, 35);
|
|
background-image: none;
|
|
border-color: rgb(158, 38, 34);
|
|
}
|
|
.btn-danger.active.focus,
|
|
.btn-danger.active:focus,
|
|
.btn-danger.active:hover,
|
|
.btn-danger:active.focus,
|
|
.btn-danger:active:focus,
|
|
.btn-danger:active:hover,
|
|
.open > .dropdown-toggle.btn-danger.focus,
|
|
.open > .dropdown-toggle.btn-danger:focus,
|
|
.open > .dropdown-toggle.btn-danger:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(138, 33, 30);
|
|
border-color: rgb(175, 42, 37);
|
|
}
|
|
.btn-danger.disabled.focus,
|
|
.btn-danger.disabled:focus,
|
|
.btn-danger.disabled:hover,
|
|
.btn-danger[disabled].focus,
|
|
.btn-danger[disabled]:focus,
|
|
.btn-danger[disabled]:hover,
|
|
fieldset[disabled] .btn-danger.focus,
|
|
fieldset[disabled] .btn-danger:focus,
|
|
fieldset[disabled] .btn-danger:hover {
|
|
background-color: rgb(148, 35, 32);
|
|
border-color: rgb(143, 35, 31);
|
|
}
|
|
.btn-danger .badge {
|
|
color: rgb(219, 94, 90);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-link {
|
|
color: rgb(105, 166, 213);
|
|
box-shadow: none;
|
|
}
|
|
.btn-link,
|
|
.btn-link.active,
|
|
.btn-link:active,
|
|
.btn-link[disabled],
|
|
fieldset[disabled] .btn-link {
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
.btn-link,
|
|
.btn-link:active,
|
|
.btn-link:focus,
|
|
.btn-link:hover {
|
|
border-color: transparent;
|
|
}
|
|
.btn-link:focus,
|
|
.btn-link:hover {
|
|
color: rgb(141, 187, 223);
|
|
text-decoration-color: currentcolor;
|
|
background-color: transparent;
|
|
}
|
|
.btn-link[disabled]:focus,
|
|
.btn-link[disabled]:hover,
|
|
fieldset[disabled] .btn-link:focus,
|
|
fieldset[disabled] .btn-link:hover {
|
|
color: rgb(157, 148, 136);
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.caret {
|
|
border-top-color: currentcolor;
|
|
border-right-color: transparent;
|
|
border-left-color: transparent;
|
|
}
|
|
.dropdown-toggle:focus {
|
|
outline-color: currentcolor;
|
|
}
|
|
.dropdown-menu {
|
|
list-style-image: none;
|
|
background-color: rgb(24, 26, 27);
|
|
box-shadow: none;
|
|
border-color: rgb(53, 57, 59);
|
|
}
|
|
.dropdown-menu .divider {
|
|
background-color: rgb(39, 42, 44);
|
|
}
|
|
.dropdown-menu > li > a {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.dropdown-menu > li > a:focus,
|
|
.dropdown-menu > li > a:hover {
|
|
color: rgb(208, 204, 198);
|
|
text-decoration-color: currentcolor;
|
|
background-color: rgb(30, 32, 33);
|
|
}
|
|
.dropdown-menu > .active > a,
|
|
.dropdown-menu > .active > a:focus,
|
|
.dropdown-menu > .active > a:hover {
|
|
color: rgb(232, 230, 227);
|
|
text-decoration-color: currentcolor;
|
|
background-color: rgb(41, 98, 146);
|
|
outline-color: currentcolor;
|
|
}
|
|
.dropdown-menu > .disabled > a,
|
|
.dropdown-menu > .disabled > a:focus,
|
|
.dropdown-menu > .disabled > a:hover {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.dropdown-menu > .disabled > a:focus,
|
|
.dropdown-menu > .disabled > a:hover {
|
|
text-decoration-color: currentcolor;
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
.open > a {
|
|
outline-color: currentcolor;
|
|
}
|
|
.dropdown-header {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.dropup .caret,
|
|
.navbar-fixed-bottom .dropdown .caret {
|
|
border-top-color: currentcolor;
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.btn-group .dropdown-toggle:active,
|
|
.btn-group.open .dropdown-toggle {
|
|
outline-color: currentcolor;
|
|
}
|
|
.btn-group.open .dropdown-toggle {
|
|
box-shadow: rgba(0, 0, 0, 0.13) 0 3px 5px inset;
|
|
}
|
|
.btn-group.open .dropdown-toggle.btn-link {
|
|
box-shadow: none;
|
|
}
|
|
.input-group-addon {
|
|
color: rgb(178, 172, 162);
|
|
background-color: rgb(34, 36, 38);
|
|
border-color: rgb(62, 68, 70);
|
|
}
|
|
.input-group-addon:first-child {
|
|
border-right-color: currentcolor;
|
|
}
|
|
.input-group-addon:last-child {
|
|
border-left-color: currentcolor;
|
|
}
|
|
.nav {
|
|
list-style-image: none;
|
|
}
|
|
.nav > li > a:focus,
|
|
.nav > li > a:hover {
|
|
text-decoration-color: currentcolor;
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.nav > li.disabled > a {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.nav > li.disabled > a:focus,
|
|
.nav > li.disabled > a:hover {
|
|
color: rgb(157, 148, 136);
|
|
text-decoration-color: currentcolor;
|
|
background-color: transparent;
|
|
}
|
|
.nav .open > a,
|
|
.nav .open > a:focus,
|
|
.nav .open > a:hover {
|
|
background-color: rgb(34, 36, 38);
|
|
border-color: rgb(40, 96, 145);
|
|
}
|
|
.nav .nav-divider {
|
|
background-color: rgb(39, 42, 44);
|
|
}
|
|
.nav-tabs {
|
|
border-bottom-color: rgb(58, 62, 65);
|
|
}
|
|
.nav-tabs > li > a {
|
|
border-color: transparent;
|
|
}
|
|
.nav-tabs > li > a:hover {
|
|
border-color: rgb(53, 57, 59) rgb(53, 57, 59) rgb(58, 62, 65);
|
|
}
|
|
.nav-tabs > li.active > a,
|
|
.nav-tabs > li.active > a:focus,
|
|
.nav-tabs > li.active > a:hover {
|
|
color: rgb(178, 172, 162);
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(58, 62, 65) rgb(58, 62, 65) transparent;
|
|
}
|
|
.nav-tabs.nav-justified {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.nav-tabs.nav-justified > .active > a,
|
|
.nav-tabs.nav-justified > .active > a:focus,
|
|
.nav-tabs.nav-justified > .active > a:hover {
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
@media (min-width: 768px) {
|
|
.nav-tabs.nav-justified > li > a {
|
|
border-bottom-color: rgb(58, 62, 65);
|
|
}
|
|
.nav-tabs.nav-justified > .active > a,
|
|
.nav-tabs.nav-justified > .active > a:focus,
|
|
.nav-tabs.nav-justified > .active > a:hover {
|
|
border-bottom-color: rgb(48, 52, 54);
|
|
}
|
|
}
|
|
.nav-pills > li.active > a,
|
|
.nav-pills > li.active > a:focus,
|
|
.nav-pills > li.active > a:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(41, 98, 146);
|
|
border-top-color: rgb(44, 103, 137);
|
|
}
|
|
.nav-tabs-justified {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.nav-tabs-justified > .active > a,
|
|
.nav-tabs-justified > .active > a:focus,
|
|
.nav-tabs-justified > .active > a:hover {
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
@media (min-width: 768px) {
|
|
.nav-tabs-justified > li > a {
|
|
border-bottom-color: rgb(58, 62, 65);
|
|
}
|
|
.nav-tabs-justified > .active > a,
|
|
.nav-tabs-justified > .active > a:focus,
|
|
.nav-tabs-justified > .active > a:hover {
|
|
border-bottom-color: rgb(48, 52, 54);
|
|
}
|
|
}
|
|
.navbar {
|
|
border-color: transparent;
|
|
}
|
|
.navbar-collapse {
|
|
border-top-color: transparent;
|
|
box-shadow: rgba(24, 26, 27, 0.1) 0 1px 0 inset;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.navbar-collapse {
|
|
border-top-color: currentcolor;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
.navbar-brand:focus,
|
|
.navbar-brand:hover {
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.navbar-toggle {
|
|
background-image: none;
|
|
color: rgb(232, 230, 227);
|
|
border-color: currentcolor;
|
|
}
|
|
.navbar-toggle:focus {
|
|
outline-color: currentcolor;
|
|
}
|
|
@media (max-width: 767px) {
|
|
.navbar-nav .open .dropdown-menu {
|
|
background-color: transparent;
|
|
border-color: currentcolor;
|
|
box-shadow: none;
|
|
}
|
|
.navbar-nav .open .dropdown-menu > li > a:focus,
|
|
.navbar-nav .open .dropdown-menu > li > a:hover {
|
|
background-image: none;
|
|
}
|
|
}
|
|
.navbar-form {
|
|
border-top-color: transparent;
|
|
border-bottom-color: transparent;
|
|
box-shadow:
|
|
rgba(24, 26, 27, 0.1) 0 1px 0 inset,
|
|
rgba(24, 26, 27, 0.1) 0 1px 0;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.navbar-form {
|
|
border-color: currentcolor;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
.navbar-default {
|
|
background-color: rgb(28, 30, 31);
|
|
border-color: rgb(55, 59, 62);
|
|
}
|
|
.navbar-default .navbar-brand {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.navbar-default .navbar-brand:focus,
|
|
.navbar-default .navbar-brand:hover {
|
|
color: rgb(173, 165, 155);
|
|
background-color: transparent;
|
|
}
|
|
.navbar-default .navbar-text {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.navbar-default .navbar-nav > li > a {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.navbar-default .navbar-nav > li > a:focus,
|
|
.navbar-default .navbar-nav > li > a:hover {
|
|
color: rgb(200, 195, 188);
|
|
background-color: transparent;
|
|
}
|
|
.navbar-default .navbar-nav > .active > a,
|
|
.navbar-default .navbar-nav > .active > a:focus,
|
|
.navbar-default .navbar-nav > .active > a:hover {
|
|
color: rgb(178, 172, 162);
|
|
background-color: rgb(38, 41, 42);
|
|
}
|
|
.navbar-default .navbar-nav > .disabled > a,
|
|
.navbar-default .navbar-nav > .disabled > a:focus,
|
|
.navbar-default .navbar-nav > .disabled > a:hover {
|
|
color: rgb(200, 195, 188);
|
|
background-color: transparent;
|
|
}
|
|
.navbar-default .navbar-nav > .open > a,
|
|
.navbar-default .navbar-nav > .open > a:focus,
|
|
.navbar-default .navbar-nav > .open > a:hover {
|
|
color: rgb(178, 172, 162);
|
|
background-color: rgb(38, 41, 42);
|
|
}
|
|
@media (max-width: 767px) {
|
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
|
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
|
|
color: rgb(200, 195, 188);
|
|
background-color: transparent;
|
|
}
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
|
|
color: rgb(178, 172, 162);
|
|
background-color: rgb(38, 41, 42);
|
|
}
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
|
|
color: rgb(200, 195, 188);
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
.navbar-default .navbar-toggle {
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.navbar-default .navbar-toggle:focus,
|
|
.navbar-default .navbar-toggle:hover {
|
|
background-color: rgb(43, 47, 49);
|
|
}
|
|
.navbar-default .navbar-toggle .icon-bar {
|
|
background-color: rgb(91, 99, 103);
|
|
}
|
|
.navbar-default .navbar-collapse,
|
|
.navbar-default .navbar-form {
|
|
border-color: rgb(55, 59, 62);
|
|
}
|
|
.navbar-default .navbar-link {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.navbar-default .navbar-link:hover {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.navbar-default .btn-link {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.navbar-default .btn-link:focus,
|
|
.navbar-default .btn-link:hover {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.navbar-default .btn-link[disabled]:focus,
|
|
.navbar-default .btn-link[disabled]:hover,
|
|
fieldset[disabled] .navbar-default .btn-link:focus,
|
|
fieldset[disabled] .navbar-default .btn-link:hover {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.navbar-inverse {
|
|
background-color: rgb(26, 28, 29);
|
|
border-color: rgb(137, 128, 113);
|
|
}
|
|
.navbar-inverse .navbar-brand {
|
|
color: rgb(170, 163, 152);
|
|
}
|
|
.navbar-inverse .navbar-brand:focus,
|
|
.navbar-inverse .navbar-brand:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: transparent;
|
|
}
|
|
.navbar-inverse .navbar-text {
|
|
color: rgb(170, 163, 152);
|
|
}
|
|
.navbar-inverse .navbar-nav > li > a {
|
|
color: rgb(170, 163, 152);
|
|
}
|
|
.navbar-inverse .navbar-nav > li > a:focus,
|
|
.navbar-inverse .navbar-nav > li > a:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: transparent;
|
|
}
|
|
.navbar-inverse .navbar-nav > .active > a,
|
|
.navbar-inverse .navbar-nav > .active > a:focus,
|
|
.navbar-inverse .navbar-nav > .active > a:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(6, 7, 7);
|
|
}
|
|
.navbar-inverse .navbar-nav > .disabled > a,
|
|
.navbar-inverse .navbar-nav > .disabled > a:focus,
|
|
.navbar-inverse .navbar-nav > .disabled > a:hover {
|
|
color: rgb(189, 183, 175);
|
|
background-color: transparent;
|
|
}
|
|
.navbar-inverse .navbar-nav > .open > a,
|
|
.navbar-inverse .navbar-nav > .open > a:focus,
|
|
.navbar-inverse .navbar-nav > .open > a:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(6, 7, 7);
|
|
}
|
|
@media (max-width: 767px) {
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
|
border-color: rgb(137, 128, 113);
|
|
}
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
|
|
background-color: rgb(6, 7, 7);
|
|
}
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
|
color: rgb(170, 163, 152);
|
|
}
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: transparent;
|
|
}
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(6, 7, 7);
|
|
}
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,
|
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
|
|
color: rgb(189, 183, 175);
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
.navbar-inverse .navbar-toggle {
|
|
border-color: rgb(123, 114, 101);
|
|
}
|
|
.navbar-inverse .navbar-toggle:focus,
|
|
.navbar-inverse .navbar-toggle:hover {
|
|
background-color: rgb(38, 42, 43);
|
|
}
|
|
.navbar-inverse .navbar-toggle .icon-bar {
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.navbar-inverse .navbar-collapse,
|
|
.navbar-inverse .navbar-form {
|
|
border-color: rgb(135, 125, 111);
|
|
}
|
|
.navbar-inverse .navbar-link {
|
|
color: rgb(170, 163, 152);
|
|
}
|
|
.navbar-inverse .navbar-link:hover {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.navbar-inverse .btn-link {
|
|
color: rgb(170, 163, 152);
|
|
}
|
|
.navbar-inverse .btn-link:focus,
|
|
.navbar-inverse .btn-link:hover {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.navbar-inverse .btn-link[disabled]:focus,
|
|
.navbar-inverse .btn-link[disabled]:hover,
|
|
fieldset[disabled] .navbar-inverse .btn-link:focus,
|
|
fieldset[disabled] .navbar-inverse .btn-link:hover {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.breadcrumb {
|
|
list-style-image: none;
|
|
background-color: rgb(30, 32, 33);
|
|
}
|
|
.breadcrumb > li + li::before {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.breadcrumb > .active {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.pagination > li > a,
|
|
.pagination > li > span {
|
|
color: rgb(105, 166, 213);
|
|
text-decoration-color: currentcolor;
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.pagination > li > a:focus,
|
|
.pagination > li > a:hover,
|
|
.pagination > li > span:focus,
|
|
.pagination > li > span:hover {
|
|
color: rgb(141, 187, 223);
|
|
background-color: rgb(34, 36, 38);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.pagination > .active > a,
|
|
.pagination > .active > a:focus,
|
|
.pagination > .active > a:hover,
|
|
.pagination > .active > span,
|
|
.pagination > .active > span:focus,
|
|
.pagination > .active > span:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(41, 98, 146);
|
|
border-color: rgb(40, 96, 145);
|
|
}
|
|
.pagination > .disabled > a,
|
|
.pagination > .disabled > a:focus,
|
|
.pagination > .disabled > a:hover,
|
|
.pagination > .disabled > span,
|
|
.pagination > .disabled > span:focus,
|
|
.pagination > .disabled > span:hover {
|
|
color: rgb(157, 148, 136);
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.pager {
|
|
list-style-image: none;
|
|
}
|
|
.pager li > a,
|
|
.pager li > span {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.pager li > a:focus,
|
|
.pager li > a:hover {
|
|
text-decoration-color: currentcolor;
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.pager .disabled > a,
|
|
.pager .disabled > a:focus,
|
|
.pager .disabled > a:hover,
|
|
.pager .disabled > span {
|
|
color: rgb(157, 148, 136);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.label {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
a.label:focus,
|
|
a.label:hover {
|
|
color: rgb(232, 230, 227);
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.label-default {
|
|
background-color: rgb(46, 50, 52);
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.label-default[href]:focus,
|
|
.label-default[href]:hover {
|
|
background-color: rgb(71, 77, 80);
|
|
}
|
|
.label-primary {
|
|
background-color: rgb(41, 98, 146);
|
|
}
|
|
.label-primary[href]:focus,
|
|
.label-primary[href]:hover {
|
|
background-color: rgb(32, 77, 115);
|
|
}
|
|
.label-success {
|
|
background-color: rgb(77, 133, 58);
|
|
}
|
|
.label-success[href]:focus,
|
|
.label-success[href]:hover {
|
|
background-color: rgb(54, 126, 54);
|
|
}
|
|
.label-info {
|
|
background-color: rgb(28, 115, 141);
|
|
}
|
|
.label-info[href]:focus,
|
|
.label-info[href]:hover {
|
|
background-color: rgb(34, 136, 166);
|
|
}
|
|
.label-warning {
|
|
background-color: rgb(153, 95, 13);
|
|
}
|
|
.label-warning[href]:focus,
|
|
.label-warning[href]:hover {
|
|
background-color: rgb(181, 113, 15);
|
|
}
|
|
.label-danger {
|
|
background-color: rgb(148, 35, 32);
|
|
}
|
|
.label-danger[href]:focus,
|
|
.label-danger[href]:hover {
|
|
background-color: rgb(161, 38, 35);
|
|
}
|
|
.badge {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(90, 97, 101);
|
|
}
|
|
a.badge:focus,
|
|
a.badge:hover {
|
|
color: rgb(232, 230, 227);
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.list-group-item.active > .badge,
|
|
.nav-pills > .active > a > .badge {
|
|
color: rgb(105, 166, 213);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.jumbotron {
|
|
color: inherit;
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.jumbotron .h1,
|
|
.jumbotron h1 {
|
|
color: inherit;
|
|
}
|
|
.jumbotron > hr {
|
|
border-top-color: rgb(60, 65, 67);
|
|
}
|
|
.thumbnail {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
a.thumbnail.active,
|
|
a.thumbnail:focus,
|
|
a.thumbnail:hover {
|
|
border-color: rgb(40, 96, 145);
|
|
}
|
|
.thumbnail .caption {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.alert {
|
|
border-color: transparent;
|
|
}
|
|
.alert h4 {
|
|
color: inherit;
|
|
}
|
|
.alert-dismissable .close,
|
|
.alert-dismissible .close {
|
|
color: inherit;
|
|
}
|
|
.alert-success {
|
|
color: rgb(139, 196, 140);
|
|
background-color: rgb(41, 60, 23);
|
|
border-color: rgb(0, 213, 115);
|
|
}
|
|
.alert-success hr {
|
|
border-top-color: rgb(65, 97, 37);
|
|
}
|
|
.alert-success .alert-link {
|
|
color: rgb(162, 208, 164);
|
|
}
|
|
.alert-info {
|
|
color: rgb(117, 178, 208);
|
|
background-color: rgb(14, 48, 65);
|
|
border-color: rgb(0, 153, 191);
|
|
}
|
|
.alert-info hr {
|
|
border-top-color: rgb(24, 97, 111);
|
|
}
|
|
.alert-info .alert-link {
|
|
color: rgb(144, 192, 217);
|
|
}
|
|
.alert-warning {
|
|
color: rgb(198, 171, 123);
|
|
background-color: rgb(63, 54, 7);
|
|
border-color: rgb(176, 111, 9);
|
|
}
|
|
.alert-warning hr {
|
|
border-top-color: rgb(114, 80, 12);
|
|
}
|
|
.alert-warning .alert-link {
|
|
color: rgb(209, 187, 148);
|
|
}
|
|
.alert-danger {
|
|
color: rgb(194, 102, 100);
|
|
background-color: rgb(56, 22, 22);
|
|
border-color: rgb(89, 35, 43);
|
|
}
|
|
.alert-danger hr {
|
|
border-top-color: rgb(95, 36, 46);
|
|
}
|
|
.alert-danger .alert-link {
|
|
color: rgb(204, 127, 126);
|
|
}
|
|
.progress {
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px inset;
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.progress-bar {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(41, 98, 146);
|
|
box-shadow: rgba(0, 0, 0, 0.15) 0 -1px 0 inset;
|
|
}
|
|
.progress-bar-striped,
|
|
.progress-striped .progress-bar {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(24, 26, 27, 0.15) 25%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0) 50%,
|
|
rgba(24, 26, 27, 0.15) 50%,
|
|
rgba(24, 26, 27, 0.15) 75%,
|
|
rgba(0, 0, 0, 0) 75%,
|
|
rgba(0, 0, 0, 0)
|
|
);
|
|
}
|
|
.progress-bar-success {
|
|
background-color: rgb(77, 133, 58);
|
|
}
|
|
.progress-striped .progress-bar-success {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(24, 26, 27, 0.15) 25%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0) 50%,
|
|
rgba(24, 26, 27, 0.15) 50%,
|
|
rgba(24, 26, 27, 0.15) 75%,
|
|
rgba(0, 0, 0, 0) 75%,
|
|
rgba(0, 0, 0, 0)
|
|
);
|
|
}
|
|
.progress-bar-info {
|
|
background-color: rgb(28, 115, 141);
|
|
}
|
|
.progress-striped .progress-bar-info {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(24, 26, 27, 0.15) 25%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0) 50%,
|
|
rgba(24, 26, 27, 0.15) 50%,
|
|
rgba(24, 26, 27, 0.15) 75%,
|
|
rgba(0, 0, 0, 0) 75%,
|
|
rgba(0, 0, 0, 0)
|
|
);
|
|
}
|
|
.progress-bar-warning {
|
|
background-color: rgb(153, 95, 13);
|
|
}
|
|
.progress-striped .progress-bar-warning {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(24, 26, 27, 0.15) 25%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0) 50%,
|
|
rgba(24, 26, 27, 0.15) 50%,
|
|
rgba(24, 26, 27, 0.15) 75%,
|
|
rgba(0, 0, 0, 0) 75%,
|
|
rgba(0, 0, 0, 0)
|
|
);
|
|
}
|
|
.progress-bar-danger {
|
|
background-color: rgb(148, 35, 32);
|
|
}
|
|
.progress-striped .progress-bar-danger {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(24, 26, 27, 0.15) 25%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0) 50%,
|
|
rgba(24, 26, 27, 0.15) 50%,
|
|
rgba(24, 26, 27, 0.15) 75%,
|
|
rgba(0, 0, 0, 0) 75%,
|
|
rgba(0, 0, 0, 0)
|
|
);
|
|
}
|
|
.media-list {
|
|
list-style-image: none;
|
|
}
|
|
.list-group-item {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.list-group-item.disabled,
|
|
.list-group-item.disabled:focus,
|
|
.list-group-item.disabled:hover {
|
|
color: rgb(157, 148, 136);
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.list-group-item.disabled .list-group-item-heading,
|
|
.list-group-item.disabled:focus .list-group-item-heading,
|
|
.list-group-item.disabled:hover .list-group-item-heading {
|
|
color: inherit;
|
|
}
|
|
.list-group-item.disabled .list-group-item-text,
|
|
.list-group-item.disabled:focus .list-group-item-text,
|
|
.list-group-item.disabled:hover .list-group-item-text {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.list-group-item.active,
|
|
.list-group-item.active:focus,
|
|
.list-group-item.active:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(41, 98, 146);
|
|
border-color: rgb(40, 96, 145);
|
|
}
|
|
.list-group-item.active .list-group-item-heading,
|
|
.list-group-item.active .list-group-item-heading > .small,
|
|
.list-group-item.active .list-group-item-heading > small,
|
|
.list-group-item.active:focus .list-group-item-heading,
|
|
.list-group-item.active:focus .list-group-item-heading > .small,
|
|
.list-group-item.active:focus .list-group-item-heading > small,
|
|
.list-group-item.active:hover .list-group-item-heading,
|
|
.list-group-item.active:hover .list-group-item-heading > .small,
|
|
.list-group-item.active:hover .list-group-item-heading > small {
|
|
color: inherit;
|
|
}
|
|
.list-group-item.active .list-group-item-text,
|
|
.list-group-item.active:focus .list-group-item-text,
|
|
.list-group-item.active:hover .list-group-item-text {
|
|
color: rgb(176, 208, 232);
|
|
}
|
|
a.list-group-item,
|
|
button.list-group-item {
|
|
color: rgb(178, 172, 162);
|
|
}
|
|
a.list-group-item .list-group-item-heading,
|
|
button.list-group-item .list-group-item-heading {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
a.list-group-item:focus,
|
|
a.list-group-item:hover,
|
|
button.list-group-item:focus,
|
|
button.list-group-item:hover {
|
|
color: rgb(178, 172, 162);
|
|
text-decoration-color: currentcolor;
|
|
background-color: rgb(30, 32, 33);
|
|
}
|
|
.list-group-item-success {
|
|
color: rgb(139, 196, 140);
|
|
background-color: rgb(41, 60, 23);
|
|
}
|
|
a.list-group-item-success,
|
|
button.list-group-item-success {
|
|
color: rgb(139, 196, 140);
|
|
}
|
|
a.list-group-item-success .list-group-item-heading,
|
|
button.list-group-item-success .list-group-item-heading {
|
|
color: inherit;
|
|
}
|
|
a.list-group-item-success:focus,
|
|
a.list-group-item-success:hover,
|
|
button.list-group-item-success:focus,
|
|
button.list-group-item-success:hover {
|
|
color: rgb(139, 196, 140);
|
|
background-color: rgb(48, 71, 27);
|
|
}
|
|
a.list-group-item-success.active,
|
|
a.list-group-item-success.active:focus,
|
|
a.list-group-item-success.active:hover,
|
|
button.list-group-item-success.active,
|
|
button.list-group-item-success.active:focus,
|
|
button.list-group-item-success.active:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(48, 94, 49);
|
|
border-color: rgb(68, 134, 69);
|
|
}
|
|
.list-group-item-info {
|
|
color: rgb(117, 178, 208);
|
|
background-color: rgb(14, 48, 65);
|
|
}
|
|
a.list-group-item-info,
|
|
button.list-group-item-info {
|
|
color: rgb(117, 178, 208);
|
|
}
|
|
a.list-group-item-info .list-group-item-heading,
|
|
button.list-group-item-info .list-group-item-heading {
|
|
color: inherit;
|
|
}
|
|
a.list-group-item-info:focus,
|
|
a.list-group-item-info:hover,
|
|
button.list-group-item-info:focus,
|
|
button.list-group-item-info:hover {
|
|
color: rgb(117, 178, 208);
|
|
background-color: rgb(44, 48, 50);
|
|
}
|
|
a.list-group-item-info.active,
|
|
a.list-group-item-info.active:focus,
|
|
a.list-group-item-info.active:hover,
|
|
button.list-group-item-info.active,
|
|
button.list-group-item-info.active:focus,
|
|
button.list-group-item-info.active:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(39, 90, 114);
|
|
border-color: rgb(50, 115, 147);
|
|
}
|
|
.list-group-item-warning {
|
|
color: rgb(198, 171, 123);
|
|
background-color: rgb(63, 54, 7);
|
|
}
|
|
a.list-group-item-warning,
|
|
button.list-group-item-warning {
|
|
color: rgb(198, 171, 123);
|
|
}
|
|
a.list-group-item-warning .list-group-item-heading,
|
|
button.list-group-item-warning .list-group-item-heading {
|
|
color: inherit;
|
|
}
|
|
a.list-group-item-warning:focus,
|
|
a.list-group-item-warning:hover,
|
|
button.list-group-item-warning:focus,
|
|
button.list-group-item-warning:hover {
|
|
color: rgb(198, 171, 123);
|
|
background-color: rgb(77, 65, 8);
|
|
}
|
|
a.list-group-item-warning.active,
|
|
a.list-group-item-warning.active:focus,
|
|
a.list-group-item-warning.active:hover,
|
|
button.list-group-item-warning.active,
|
|
button.list-group-item-warning.active:focus,
|
|
button.list-group-item-warning.active:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(110, 87, 47);
|
|
border-color: rgb(137, 108, 59);
|
|
}
|
|
.list-group-item-danger {
|
|
color: rgb(194, 102, 100);
|
|
background-color: rgb(56, 22, 22);
|
|
}
|
|
a.list-group-item-danger,
|
|
button.list-group-item-danger {
|
|
color: rgb(194, 102, 100);
|
|
}
|
|
a.list-group-item-danger .list-group-item-heading,
|
|
button.list-group-item-danger .list-group-item-heading {
|
|
color: inherit;
|
|
}
|
|
a.list-group-item-danger:focus,
|
|
a.list-group-item-danger:hover,
|
|
button.list-group-item-danger:focus,
|
|
button.list-group-item-danger:hover {
|
|
color: rgb(194, 102, 100);
|
|
background-color: rgb(67, 26, 26);
|
|
}
|
|
a.list-group-item-danger.active,
|
|
a.list-group-item-danger.active:focus,
|
|
a.list-group-item-danger.active:hover,
|
|
button.list-group-item-danger.active,
|
|
button.list-group-item-danger.active:focus,
|
|
button.list-group-item-danger.active:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(135, 54, 53);
|
|
border-color: rgb(133, 53, 52);
|
|
}
|
|
.panel {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: transparent;
|
|
box-shadow: rgba(0, 0, 0, 0.05) 0 1px 1px;
|
|
}
|
|
.panel-heading {
|
|
border-bottom-color: transparent;
|
|
}
|
|
.panel-heading > .dropdown .dropdown-toggle {
|
|
color: inherit;
|
|
}
|
|
.panel-title {
|
|
color: inherit;
|
|
}
|
|
.panel-title > .small,
|
|
.panel-title > .small > a,
|
|
.panel-title > a,
|
|
.panel-title > small,
|
|
.panel-title > small > a {
|
|
color: inherit;
|
|
}
|
|
.panel-footer {
|
|
background-color: rgb(30, 32, 33);
|
|
border-top-color: rgb(58, 62, 65);
|
|
}
|
|
.panel > .list-group:first-child .list-group-item:first-child,
|
|
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
|
|
border-top-color: currentcolor;
|
|
}
|
|
.panel > .list-group:last-child .list-group-item:last-child,
|
|
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.panel > .panel-body + .table,
|
|
.panel > .panel-body + .table-responsive,
|
|
.panel > .table + .panel-body,
|
|
.panel > .table-responsive + .panel-body {
|
|
border-top-color: rgb(58, 62, 65);
|
|
}
|
|
.panel > .table > tbody:first-child > tr:first-child td,
|
|
.panel > .table > tbody:first-child > tr:first-child th {
|
|
border-top-color: currentcolor;
|
|
}
|
|
.panel > .table-bordered,
|
|
.panel > .table-responsive > .table-bordered {
|
|
border-color: currentcolor;
|
|
}
|
|
.panel > .table-bordered > tbody > tr > td:first-child,
|
|
.panel > .table-bordered > tbody > tr > th:first-child,
|
|
.panel > .table-bordered > tfoot > tr > td:first-child,
|
|
.panel > .table-bordered > tfoot > tr > th:first-child,
|
|
.panel > .table-bordered > thead > tr > td:first-child,
|
|
.panel > .table-bordered > thead > tr > th:first-child,
|
|
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
|
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
|
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,
|
|
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
|
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
|
|
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
|
|
border-left-color: currentcolor;
|
|
}
|
|
.panel > .table-bordered > tbody > tr > td:last-child,
|
|
.panel > .table-bordered > tbody > tr > th:last-child,
|
|
.panel > .table-bordered > tfoot > tr > td:last-child,
|
|
.panel > .table-bordered > tfoot > tr > th:last-child,
|
|
.panel > .table-bordered > thead > tr > td:last-child,
|
|
.panel > .table-bordered > thead > tr > th:last-child,
|
|
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
|
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
|
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,
|
|
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
|
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
|
|
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
|
|
border-right-color: currentcolor;
|
|
}
|
|
.panel > .table-bordered > tbody > tr:first-child > td,
|
|
.panel > .table-bordered > tbody > tr:first-child > th,
|
|
.panel > .table-bordered > thead > tr:first-child > td,
|
|
.panel > .table-bordered > thead > tr:first-child > th,
|
|
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
|
|
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
|
|
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
|
|
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.panel > .table-bordered > tbody > tr:last-child > td,
|
|
.panel > .table-bordered > tbody > tr:last-child > th,
|
|
.panel > .table-bordered > tfoot > tr:last-child > td,
|
|
.panel > .table-bordered > tfoot > tr:last-child > th,
|
|
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
|
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
|
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
|
|
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.panel > .table-responsive {
|
|
border-color: currentcolor;
|
|
}
|
|
.panel-group .panel-heading {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.panel-group .panel-heading + .panel-collapse > .list-group,
|
|
.panel-group .panel-heading + .panel-collapse > .panel-body {
|
|
border-top-color: rgb(58, 62, 65);
|
|
}
|
|
.panel-group .panel-footer {
|
|
border-top-color: currentcolor;
|
|
}
|
|
.panel-group .panel-footer + .panel-collapse .panel-body {
|
|
border-bottom-color: rgb(58, 62, 65);
|
|
}
|
|
.panel-default {
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.panel-default > .panel-heading {
|
|
color: rgb(200, 195, 188);
|
|
background-color: rgb(30, 32, 33);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.panel-default > .panel-heading + .panel-collapse > .panel-body {
|
|
border-top-color: rgb(58, 62, 65);
|
|
}
|
|
.panel-default > .panel-heading .badge {
|
|
color: rgb(226, 223, 219);
|
|
background-color: rgb(38, 42, 43);
|
|
}
|
|
.panel-default > .panel-footer + .panel-collapse > .panel-body {
|
|
border-bottom-color: rgb(58, 62, 65);
|
|
}
|
|
.panel-primary {
|
|
border-color: rgb(40, 96, 145);
|
|
}
|
|
.panel-primary > .panel-heading {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(41, 98, 146);
|
|
border-color: rgb(40, 96, 145);
|
|
}
|
|
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
|
|
border-top-color: rgb(40, 96, 145);
|
|
}
|
|
.panel-primary > .panel-heading .badge {
|
|
color: rgb(105, 166, 213);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
|
|
border-bottom-color: rgb(40, 96, 145);
|
|
}
|
|
.panel-success {
|
|
border-color: rgb(60, 91, 35);
|
|
}
|
|
.panel-success > .panel-heading {
|
|
color: rgb(139, 196, 140);
|
|
background-color: rgb(41, 60, 23);
|
|
border-color: rgb(60, 91, 35);
|
|
}
|
|
.panel-success > .panel-heading + .panel-collapse > .panel-body {
|
|
border-top-color: rgb(60, 91, 35);
|
|
}
|
|
.panel-success > .panel-heading .badge {
|
|
color: rgb(202, 230, 191);
|
|
background-color: rgb(48, 94, 49);
|
|
}
|
|
.panel-success > .panel-footer + .panel-collapse > .panel-body {
|
|
border-bottom-color: rgb(60, 91, 35);
|
|
}
|
|
.panel-info {
|
|
border-color: rgb(22, 90, 104);
|
|
}
|
|
.panel-info > .panel-heading {
|
|
color: rgb(117, 178, 208);
|
|
background-color: rgb(14, 48, 65);
|
|
border-color: rgb(22, 90, 104);
|
|
}
|
|
.panel-info > .panel-heading + .panel-collapse > .panel-body {
|
|
border-top-color: rgb(22, 90, 104);
|
|
}
|
|
.panel-info > .panel-heading .badge {
|
|
color: rgb(186, 222, 241);
|
|
background-color: rgb(39, 90, 114);
|
|
}
|
|
.panel-info > .panel-footer + .panel-collapse > .panel-body {
|
|
border-bottom-color: rgb(22, 90, 104);
|
|
}
|
|
.panel-warning {
|
|
border-color: rgb(108, 76, 11);
|
|
}
|
|
.panel-warning > .panel-heading {
|
|
color: rgb(198, 171, 123);
|
|
background-color: rgb(63, 54, 7);
|
|
border-color: rgb(108, 76, 11);
|
|
}
|
|
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
|
|
border-top-color: rgb(108, 76, 11);
|
|
}
|
|
.panel-warning > .panel-heading .badge {
|
|
color: rgb(248, 239, 189);
|
|
background-color: rgb(110, 87, 47);
|
|
}
|
|
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
|
|
border-bottom-color: rgb(108, 76, 11);
|
|
}
|
|
.panel-danger {
|
|
border-color: rgb(89, 35, 43);
|
|
}
|
|
.panel-danger > .panel-heading {
|
|
color: rgb(194, 102, 100);
|
|
background-color: rgb(56, 22, 22);
|
|
border-color: rgb(89, 35, 43);
|
|
}
|
|
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
|
|
border-top-color: rgb(89, 35, 43);
|
|
}
|
|
.panel-danger > .panel-heading .badge {
|
|
color: rgb(231, 195, 195);
|
|
background-color: rgb(135, 54, 53);
|
|
}
|
|
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
|
|
border-bottom-color: rgb(89, 35, 43);
|
|
}
|
|
.embed-responsive .embed-responsive-item,
|
|
.embed-responsive embed,
|
|
.embed-responsive iframe,
|
|
.embed-responsive object,
|
|
.embed-responsive video {
|
|
border-color: currentcolor;
|
|
}
|
|
.well {
|
|
background-color: rgb(30, 32, 33);
|
|
border-color: rgb(56, 61, 63);
|
|
box-shadow: rgba(0, 0, 0, 0.05) 0 1px 1px inset;
|
|
}
|
|
.well blockquote {
|
|
border-color: rgba(140, 130, 115, 0.15);
|
|
}
|
|
.close {
|
|
color: rgb(232, 230, 227);
|
|
text-shadow: rgb(24, 26, 27) 0 1px 0;
|
|
}
|
|
.close:focus,
|
|
.close:hover {
|
|
color: rgb(232, 230, 227);
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
button.close {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
background-image: none;
|
|
border-color: currentcolor;
|
|
}
|
|
.modal {
|
|
outline-color: currentcolor;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
background-image: none;
|
|
}
|
|
.modal-content {
|
|
background-color: rgb(24, 26, 27);
|
|
outline-color: currentcolor;
|
|
box-shadow: rgba(0, 0, 0, 0.13) 0 2px 3px;
|
|
border-color: currentcolor;
|
|
}
|
|
.modal-backdrop {
|
|
background-color: rgb(0, 0, 0);
|
|
}
|
|
.modal-header {
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
}
|
|
.modal-footer {
|
|
border-top-color: rgb(51, 55, 57);
|
|
}
|
|
@media (min-width: 768px) {
|
|
.modal-content {
|
|
box-shadow: rgba(0, 0, 0, 0.5) 0 5px 15px;
|
|
}
|
|
}
|
|
.tooltip {
|
|
text-decoration-color: currentcolor;
|
|
text-shadow: none;
|
|
}
|
|
.tooltip.top .tooltip-arrow {
|
|
border-top-color: rgb(140, 130, 115);
|
|
}
|
|
.tooltip.top-left .tooltip-arrow {
|
|
border-top-color: rgb(140, 130, 115);
|
|
}
|
|
.tooltip.top-right .tooltip-arrow {
|
|
border-top-color: rgb(140, 130, 115);
|
|
}
|
|
.tooltip.right .tooltip-arrow {
|
|
border-right-color: rgb(140, 130, 115);
|
|
}
|
|
.tooltip.left .tooltip-arrow {
|
|
border-left-color: rgb(140, 130, 115);
|
|
}
|
|
.tooltip.bottom .tooltip-arrow {
|
|
border-bottom-color: rgb(140, 130, 115);
|
|
}
|
|
.tooltip.bottom-left .tooltip-arrow {
|
|
border-bottom-color: rgb(140, 130, 115);
|
|
}
|
|
.tooltip.bottom-right .tooltip-arrow {
|
|
border-bottom-color: rgb(140, 130, 115);
|
|
}
|
|
.tooltip-inner {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(0, 0, 0);
|
|
}
|
|
.tooltip-arrow {
|
|
border-color: transparent;
|
|
}
|
|
.popover {
|
|
text-decoration-color: currentcolor;
|
|
text-shadow: none;
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10;
|
|
}
|
|
.popover > .arrow,
|
|
.popover > .arrow::after {
|
|
border-color: transparent;
|
|
}
|
|
.popover.top > .arrow {
|
|
border-top-color: rgba(140, 130, 115, 0.25);
|
|
}
|
|
.popover.top > .arrow::after {
|
|
border-top-color: rgb(48, 52, 54);
|
|
}
|
|
.popover.right > .arrow {
|
|
border-right-color: rgba(140, 130, 115, 0.25);
|
|
}
|
|
.popover.right > .arrow::after {
|
|
border-right-color: rgb(48, 52, 54);
|
|
}
|
|
.popover.bottom > .arrow {
|
|
border-bottom-color: rgba(140, 130, 115, 0.25);
|
|
}
|
|
.popover.bottom > .arrow::after {
|
|
border-bottom-color: rgb(48, 52, 54);
|
|
}
|
|
.popover.left > .arrow {
|
|
border-left-color: rgba(140, 130, 115, 0.25);
|
|
}
|
|
.popover.left > .arrow::after {
|
|
border-left-color: rgb(48, 52, 54);
|
|
}
|
|
.popover-title {
|
|
background-color: rgb(29, 31, 32);
|
|
border-bottom-color: rgb(54, 58, 60);
|
|
}
|
|
.carousel-control {
|
|
color: rgb(232, 230, 227);
|
|
text-shadow: rgba(0, 0, 0, 0.6) 0 1px 2px;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.carousel-control.left {
|
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0) 100%);
|
|
}
|
|
.carousel-control.right {
|
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.5) 100%);
|
|
}
|
|
.carousel-control:focus,
|
|
.carousel-control:hover {
|
|
color: rgb(232, 230, 227);
|
|
text-decoration-color: currentcolor;
|
|
outline-color: currentcolor;
|
|
}
|
|
.carousel-indicators {
|
|
list-style-image: none;
|
|
}
|
|
.carousel-indicators li {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
border-color: rgb(48, 52, 54);
|
|
}
|
|
.carousel-indicators .active {
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.carousel-caption {
|
|
color: rgb(232, 230, 227);
|
|
text-shadow: rgba(0, 0, 0, 0.6) 0 1px 2px;
|
|
}
|
|
.carousel-caption .btn {
|
|
text-shadow: none;
|
|
}
|
|
.text-hide {
|
|
color: transparent;
|
|
text-shadow: none;
|
|
background-color: transparent;
|
|
border-color: currentcolor;
|
|
}
|
|
table.dataTable thead > tr > th:active,
|
|
table.dataTable thead > tr > td:active {
|
|
outline-color: currentcolor;
|
|
}
|
|
table.dataTable thead .sorting_asc_disabled::after,
|
|
table.dataTable thead .sorting_desc_disabled::after {
|
|
color: rgb(221, 218, 214);
|
|
}
|
|
div.dataTables_scrollBody > table {
|
|
border-top-color: currentcolor;
|
|
}
|
|
div.dataTables_scrollBody > table > tbody > tr:first-child > th,
|
|
div.dataTables_scrollBody > table > tbody > tr:first-child > td {
|
|
border-top-color: currentcolor;
|
|
}
|
|
div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
|
|
border-top-color: currentcolor;
|
|
}
|
|
.daterangepicker {
|
|
color: inherit;
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.daterangepicker::after,
|
|
.daterangepicker::before {
|
|
border-bottom-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.daterangepicker::before {
|
|
border-right-color: transparent;
|
|
border-left-color: transparent;
|
|
border-bottom-color: rgb(62, 68, 70);
|
|
}
|
|
.daterangepicker::after {
|
|
border-right-color: transparent;
|
|
border-bottom-color: rgb(48, 52, 54);
|
|
border-left-color: transparent;
|
|
}
|
|
.daterangepicker.drop-up::before {
|
|
border-bottom-color: initial;
|
|
border-top-color: rgb(62, 68, 70);
|
|
}
|
|
.daterangepicker.drop-up::after {
|
|
border-bottom-color: initial;
|
|
border-top-color: rgb(48, 52, 54);
|
|
}
|
|
.daterangepicker .drp-calendar.single .calendar-table {
|
|
border-color: currentcolor;
|
|
}
|
|
.daterangepicker .calendar-table .next span,
|
|
.daterangepicker .calendar-table .prev span {
|
|
color: rgb(232, 230, 227);
|
|
border-color: rgb(140, 130, 115);
|
|
}
|
|
.daterangepicker .calendar-table td,
|
|
.daterangepicker .calendar-table th {
|
|
border-color: transparent;
|
|
}
|
|
.daterangepicker .calendar-table {
|
|
border-color: rgb(48, 52, 54);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.daterangepicker td.available:hover,
|
|
.daterangepicker th.available:hover {
|
|
background-color: rgb(34, 36, 38);
|
|
border-color: transparent;
|
|
color: inherit;
|
|
}
|
|
.daterangepicker td.week,
|
|
.daterangepicker th.week {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.daterangepicker td.off,
|
|
.daterangepicker td.off.end-date,
|
|
.daterangepicker td.off.in-range,
|
|
.daterangepicker td.off.start-date {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: transparent;
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.daterangepicker td.in-range {
|
|
background-color: rgb(17, 40, 50);
|
|
border-color: transparent;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.daterangepicker td.active,
|
|
.daterangepicker td.active:hover {
|
|
background-color: rgb(42, 101, 151);
|
|
border-color: transparent;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.daterangepicker option.disabled,
|
|
.daterangepicker td.disabled {
|
|
color: rgb(168, 160, 149);
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.daterangepicker select.ampmselect,
|
|
.daterangepicker select.hourselect,
|
|
.daterangepicker select.minuteselect,
|
|
.daterangepicker select.secondselect {
|
|
background-color: rgb(34, 36, 38);
|
|
background-image: none;
|
|
border-color: rgb(53, 57, 59);
|
|
outline-color: currentcolor;
|
|
}
|
|
.daterangepicker .calendar-time select.disabled {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.daterangepicker .drp-buttons {
|
|
border-top-color: rgb(58, 62, 65);
|
|
}
|
|
.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
|
|
border-right-color: rgb(58, 62, 65);
|
|
}
|
|
.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
|
|
border-left-color: rgb(58, 62, 65);
|
|
}
|
|
.daterangepicker.show-ranges.rtl .drp-calendar.right {
|
|
border-right-color: rgb(58, 62, 65);
|
|
}
|
|
.daterangepicker.show-ranges.ltr .drp-calendar.left {
|
|
border-left-color: rgb(58, 62, 65);
|
|
}
|
|
.daterangepicker .ranges ul {
|
|
list-style-image: none;
|
|
}
|
|
.daterangepicker .ranges li:hover {
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.daterangepicker .ranges li.active {
|
|
background-color: rgb(0, 109, 163);
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
@media (min-width: 564px) {
|
|
.daterangepicker .drp-calendar.left .calendar-table {
|
|
border-right-color: currentcolor;
|
|
}
|
|
.daterangepicker .drp-calendar.right .calendar-table {
|
|
border-left-color: currentcolor;
|
|
}
|
|
}
|
|
.layout-boxed .wrapper {
|
|
box-shadow: rgba(0, 0, 0, 0.5) 0 0 8px;
|
|
}
|
|
.layout-boxed {
|
|
background:
|
|
linear-gradient(rgba(20, 30, 34, 0.6), rgba(20, 30, 34, 0.6)),
|
|
url(../../img/boxed-bg-dark.png) fixed;
|
|
}
|
|
.content-wrapper {
|
|
background-color: rgb(32, 35, 36);
|
|
}
|
|
.main-footer {
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
color: rgb(189, 183, 175);
|
|
border-top-color: rgb(59, 64, 66);
|
|
}
|
|
a:hover,
|
|
a:active,
|
|
a:focus {
|
|
outline-color: currentcolor;
|
|
text-decoration-color: currentcolor;
|
|
color: rgb(118, 177, 211);
|
|
}
|
|
.page-header > small {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.main-header .navbar {
|
|
background-color: rgb(48, 113, 150);
|
|
border-color: currentcolor;
|
|
}
|
|
.main-header #navbar-search-input.form-control {
|
|
background-color: rgba(24, 26, 27, 0.2);
|
|
background-image: none;
|
|
border-color: transparent;
|
|
}
|
|
.main-header #navbar-search-input.form-control:focus,
|
|
.main-header #navbar-search-input.form-control:active {
|
|
border-color: rgba(140, 130, 115, 0.1);
|
|
background-color: rgba(24, 26, 27, 0.9);
|
|
background-image: none;
|
|
}
|
|
.main-header #navbar-search-input.form-control::-moz-placeholder {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.main-header #navbar-search-input.form-control::placeholder {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.main-header #navbar-search-input.form-control::-webkit-input-placeholder {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
@media (max-width: 991px) {
|
|
.main-header .navbar-custom-menu a,
|
|
.main-header .navbar-right a {
|
|
color: inherit;
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
.main-header .navbar-right > li {
|
|
color: inherit;
|
|
border-color: currentcolor;
|
|
}
|
|
}
|
|
.main-header .sidebar-toggle {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
.main-header .sidebar-toggle:hover {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.main-header .sidebar-toggle:focus,
|
|
.main-header .sidebar-toggle:active {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
.main-header .navbar-brand {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.content-header > .breadcrumb {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
.content-header > .breadcrumb > li > a {
|
|
color: rgb(189, 183, 175);
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
@media (max-width: 991px) {
|
|
.content-header > .breadcrumb {
|
|
background-color: rgb(46, 50, 52);
|
|
background-image: none;
|
|
}
|
|
.content-header > .breadcrumb li::before {
|
|
color: rgb(175, 168, 158);
|
|
}
|
|
}
|
|
.sidebar-form input:focus {
|
|
border-color: transparent;
|
|
}
|
|
.user-panel > .info > a {
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.sidebar-menu {
|
|
list-style-image: none;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse
|
|
.sidebar-menu
|
|
> li:hover
|
|
> a
|
|
> span {
|
|
background-color: inherit;
|
|
}
|
|
}
|
|
.sidebar-expanded-on-hover .main-sidebar {
|
|
box-shadow: rgba(0, 0, 0, 0.13) 3px 0 8px;
|
|
}
|
|
.nav-tabs.control-sidebar-tabs > li > a,
|
|
.nav-tabs.control-sidebar-tabs > li > a:hover {
|
|
border-color: currentcolor currentcolor transparent transparent;
|
|
}
|
|
.nav-tabs.control-sidebar-tabs > li.active > a,
|
|
.nav-tabs.control-sidebar-tabs > li.active > a:hover,
|
|
.nav-tabs.control-sidebar-tabs > li.active > a:focus,
|
|
.nav-tabs.control-sidebar-tabs > li.active > a:active {
|
|
border-top-color: currentcolor;
|
|
border-right-color: currentcolor;
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.control-sidebar-menu {
|
|
list-style-image: none;
|
|
}
|
|
.control-sidebar-dark {
|
|
color: rgb(194, 189, 181);
|
|
}
|
|
.control-sidebar-dark,
|
|
.control-sidebar-dark + .control-sidebar-bg {
|
|
background-color: rgb(27, 36, 40);
|
|
background-image: none;
|
|
}
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs {
|
|
border-bottom-color: rgb(129, 119, 106);
|
|
}
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a {
|
|
background-color: rgb(19, 25, 28);
|
|
background-image: none;
|
|
color: rgb(194, 189, 181);
|
|
}
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a,
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus {
|
|
border-left-color: rgb(132, 123, 108);
|
|
border-bottom-color: rgb(132, 123, 108);
|
|
}
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus,
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active {
|
|
background-color: rgb(22, 30, 33);
|
|
background-image: none;
|
|
}
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a,
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover,
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus,
|
|
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active {
|
|
background-color: rgb(27, 36, 40);
|
|
background-image: none;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.control-sidebar-dark .control-sidebar-heading,
|
|
.control-sidebar-dark .control-sidebar-subheading {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.control-sidebar-dark .control-sidebar-menu > li > a:hover {
|
|
background-color: rgb(24, 32, 35);
|
|
background-image: none;
|
|
}
|
|
.control-sidebar-dark .control-sidebar-menu > li > a .menu-info > p {
|
|
color: rgb(194, 189, 181);
|
|
}
|
|
.control-sidebar-light {
|
|
color: rgb(173, 165, 155);
|
|
}
|
|
.control-sidebar-light,
|
|
.control-sidebar-light + .control-sidebar-bg {
|
|
background-color: rgb(27, 29, 30);
|
|
background-image: none;
|
|
border-left-color: rgb(59, 64, 66);
|
|
}
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs {
|
|
border-bottom-color: rgb(59, 64, 66);
|
|
}
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a {
|
|
background-color: rgb(34, 36, 38);
|
|
background-image: none;
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a,
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus {
|
|
border-left-color: rgb(59, 64, 66);
|
|
border-bottom-color: rgb(59, 64, 66);
|
|
}
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus,
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active {
|
|
background-color: rgb(31, 33, 35);
|
|
background-image: none;
|
|
}
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a,
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover,
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus,
|
|
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active {
|
|
background-color: rgb(27, 29, 30);
|
|
background-image: none;
|
|
color: rgb(221, 218, 214);
|
|
}
|
|
.control-sidebar-light .control-sidebar-heading,
|
|
.control-sidebar-light .control-sidebar-subheading {
|
|
color: rgb(221, 218, 214);
|
|
}
|
|
.control-sidebar-light .control-sidebar-menu > li > a:hover {
|
|
background-color: rgb(30, 32, 34);
|
|
background-image: none;
|
|
}
|
|
.control-sidebar-light .control-sidebar-menu > li > a .menu-info > p {
|
|
color: rgb(173, 165, 155);
|
|
}
|
|
.dropdown-menu > li > a:hover {
|
|
background-color: rgb(39, 42, 44);
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.dropdown-menu > .divider {
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.navbar-nav > .notifications-menu > .dropdown-menu > li.header,
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li.header,
|
|
.navbar-nav > .tasks-menu > .dropdown-menu > li.header {
|
|
background-color: rgb(24, 26, 27);
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
|
|
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
|
|
background-color: rgb(24, 26, 27);
|
|
border-bottom-color: rgb(53, 57, 59);
|
|
color: rgb(189, 183, 175) !important;
|
|
}
|
|
@media (max-width: 991px) {
|
|
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
|
|
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
|
|
background-color: rgb(24, 26, 27) !important;
|
|
background-image: none !important;
|
|
color: rgb(189, 183, 175) !important;
|
|
}
|
|
}
|
|
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
|
|
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li .menu,
|
|
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
|
|
list-style-image: none;
|
|
}
|
|
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
|
|
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
}
|
|
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
|
|
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
|
|
background-color: rgb(30, 33, 34);
|
|
background-image: none;
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
|
|
border-color: rgba(48, 52, 54, 0.2);
|
|
}
|
|
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
|
|
color: rgba(232, 230, 227, 0.8);
|
|
}
|
|
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
|
|
border-color: #1b2428;
|
|
}
|
|
.navbar-nav > .user-menu > .dropdown-menu > .user-body a {
|
|
color: rgb(189, 183, 175) !important;
|
|
}
|
|
@media (max-width: 991px) {
|
|
.navbar-nav > .user-menu > .dropdown-menu > .user-body a {
|
|
background-color: rgb(24, 26, 27) !important;
|
|
background-image: none !important;
|
|
color: rgb(189, 183, 175) !important;
|
|
}
|
|
}
|
|
.navbar-nav > .user-menu > .dropdown-menu > .user-footer {
|
|
background-color: #1b2428;
|
|
}
|
|
.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.navbar-nav > .user-menu > .dropdown-menu > .user-footer a {
|
|
color: rgb(194, 189, 181) !important;
|
|
}
|
|
.navbar-nav > .user-menu > .dropdown-menu > .user-footer a:hover {
|
|
color: rgb(232, 230, 227) !important;
|
|
}
|
|
@media (max-width: 991px) {
|
|
.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
|
|
background-color: #1b2428;
|
|
}
|
|
}
|
|
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
|
|
background-color: #283038;
|
|
border: 1px solid #283038;
|
|
background-image: none;
|
|
}
|
|
.user-menu hr {
|
|
border-color: #bec5cb;
|
|
}
|
|
|
|
.form-group.has-success label {
|
|
color: rgb(88, 255, 178);
|
|
}
|
|
.form-group.has-success .form-control,
|
|
.form-group.has-success .input-group-addon {
|
|
border-color: rgb(0, 205, 111);
|
|
box-shadow: none;
|
|
}
|
|
.form-group.has-success .help-block {
|
|
color: rgb(88, 255, 178);
|
|
}
|
|
.form-group.has-warning label {
|
|
color: rgb(244, 165, 41);
|
|
}
|
|
.form-group.has-warning .form-control,
|
|
.form-group.has-warning .input-group-addon {
|
|
border-color: rgb(168, 106, 9);
|
|
box-shadow: none;
|
|
}
|
|
.form-group.has-warning .help-block {
|
|
color: rgb(244, 165, 41);
|
|
}
|
|
.form-group.has-error label {
|
|
color: rgb(224, 89, 73);
|
|
}
|
|
.form-group.has-error .form-control,
|
|
.form-group.has-error .input-group-addon {
|
|
border-color: rgb(146, 38, 25);
|
|
box-shadow: none;
|
|
}
|
|
.form-group.has-error .help-block {
|
|
color: rgb(224, 89, 73);
|
|
}
|
|
.input-group .input-group-addon {
|
|
border-color: rgb(59, 64, 66);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.progress,
|
|
.progress > .progress-bar {
|
|
box-shadow: none;
|
|
}
|
|
.progress-bar-light-blue,
|
|
.progress-bar-primary {
|
|
background-color: rgb(48, 113, 150);
|
|
}
|
|
.progress-striped .progress-bar-light-blue,
|
|
.progress-striped .progress-bar-primary {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(24, 26, 27, 0.15) 25%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0) 50%,
|
|
rgba(24, 26, 27, 0.15) 50%,
|
|
rgba(24, 26, 27, 0.15) 75%,
|
|
rgba(0, 0, 0, 0) 75%,
|
|
rgba(0, 0, 0, 0)
|
|
);
|
|
}
|
|
.progress-bar-green,
|
|
.progress-bar-success {
|
|
background-color: rgb(0, 133, 72);
|
|
}
|
|
.progress-striped .progress-bar-green,
|
|
.progress-striped .progress-bar-success {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(24, 26, 27, 0.15) 25%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0) 50%,
|
|
rgba(24, 26, 27, 0.15) 50%,
|
|
rgba(24, 26, 27, 0.15) 75%,
|
|
rgba(0, 0, 0, 0) 75%,
|
|
rgba(0, 0, 0, 0)
|
|
);
|
|
}
|
|
.progress-bar-aqua,
|
|
.progress-bar-info {
|
|
background-color: rgb(0, 154, 191);
|
|
}
|
|
.progress-striped .progress-bar-aqua,
|
|
.progress-striped .progress-bar-info {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(24, 26, 27, 0.15) 25%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0) 50%,
|
|
rgba(24, 26, 27, 0.15) 50%,
|
|
rgba(24, 26, 27, 0.15) 75%,
|
|
rgba(0, 0, 0, 0) 75%,
|
|
rgba(0, 0, 0, 0)
|
|
);
|
|
}
|
|
.progress-bar-yellow,
|
|
.progress-bar-warning {
|
|
background-color: rgb(191, 121, 10);
|
|
}
|
|
.progress-striped .progress-bar-yellow,
|
|
.progress-striped .progress-bar-warning {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(24, 26, 27, 0.15) 25%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0) 50%,
|
|
rgba(24, 26, 27, 0.15) 50%,
|
|
rgba(24, 26, 27, 0.15) 75%,
|
|
rgba(0, 0, 0, 0) 75%,
|
|
rgba(0, 0, 0, 0)
|
|
);
|
|
}
|
|
.progress-bar-red,
|
|
.progress-bar-danger {
|
|
background-color: rgb(162, 43, 28);
|
|
}
|
|
.progress-striped .progress-bar-red,
|
|
.progress-striped .progress-bar-danger {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(24, 26, 27, 0.15) 25%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0) 50%,
|
|
rgba(24, 26, 27, 0.15) 50%,
|
|
rgba(24, 26, 27, 0.15) 75%,
|
|
rgba(0, 0, 0, 0) 75%,
|
|
rgba(0, 0, 0, 0)
|
|
);
|
|
}
|
|
.small-box {
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 1px;
|
|
}
|
|
.small-box > .small-box-footer {
|
|
color: rgba(232, 230, 227, 0.8);
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
background-image: none;
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.small-box > .small-box-footer:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgba(0, 0, 0, 0.15);
|
|
background-image: none;
|
|
}
|
|
.small-box p > small {
|
|
color: rgb(228, 226, 222);
|
|
}
|
|
.small-box .icon {
|
|
color: rgba(232, 230, 227, 0.15);
|
|
}
|
|
.small-box:hover {
|
|
text-decoration-color: currentcolor;
|
|
color: rgb(228, 226, 222);
|
|
}
|
|
.box {
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
border-top-color: rgb(59, 64, 66);
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 1px;
|
|
}
|
|
.box.box-primary {
|
|
border-top-color: rgb(44, 103, 137);
|
|
}
|
|
.box.box-info {
|
|
border-top-color: rgb(0, 147, 183);
|
|
}
|
|
.box.box-danger {
|
|
border-top-color: rgb(146, 38, 25);
|
|
}
|
|
.box.box-warning {
|
|
border-top-color: rgb(168, 106, 9);
|
|
}
|
|
.box.box-success {
|
|
border-top-color: rgb(0, 205, 111);
|
|
}
|
|
.box.box-default {
|
|
border-top-color: rgb(59, 64, 66);
|
|
}
|
|
.box .nav-stacked > li {
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
}
|
|
.box .nav-stacked > li:last-of-type {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.box .border-right {
|
|
border-right-color: rgb(51, 55, 57);
|
|
}
|
|
.box .border-left {
|
|
border-left-color: rgb(51, 55, 57);
|
|
}
|
|
.box.box-solid {
|
|
border-top-color: currentcolor;
|
|
}
|
|
.box.box-solid > .box-header .btn.btn-default {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
.box.box-solid > .box-header .btn:hover,
|
|
.box.box-solid > .box-header a:hover {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
background-image: none;
|
|
}
|
|
.box.box-solid.box-default {
|
|
border-color: rgb(59, 64, 66);
|
|
}
|
|
.box.box-solid.box-default > .box-header {
|
|
color: rgb(189, 183, 175);
|
|
background-image: none;
|
|
background-color: rgb(46, 50, 52);
|
|
}
|
|
.box.box-solid.box-default > .box-header a,
|
|
.box.box-solid.box-default > .box-header .btn {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.box.box-solid.box-primary {
|
|
border-color: rgb(44, 103, 137);
|
|
}
|
|
.box.box-solid.box-primary > .box-header {
|
|
color: rgb(232, 230, 227);
|
|
background-image: none;
|
|
background-color: rgb(48, 113, 150);
|
|
}
|
|
.box.box-solid.box-primary > .box-header a,
|
|
.box.box-solid.box-primary > .box-header .btn {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.box.box-solid.box-info {
|
|
border-color: rgb(0, 147, 183);
|
|
}
|
|
.box.box-solid.box-info > .box-header {
|
|
color: rgb(232, 230, 227);
|
|
background-image: none;
|
|
background-color: rgb(0, 154, 191);
|
|
}
|
|
.box.box-solid.box-info > .box-header a,
|
|
.box.box-solid.box-info > .box-header .btn {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.box.box-solid.box-danger {
|
|
border-color: rgb(146, 38, 25);
|
|
}
|
|
.box.box-solid.box-danger > .box-header {
|
|
color: rgb(232, 230, 227);
|
|
background-image: none;
|
|
background-color: rgb(162, 43, 28);
|
|
}
|
|
.box.box-solid.box-danger > .box-header a,
|
|
.box.box-solid.box-danger > .box-header .btn {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.box.box-solid.box-warning {
|
|
border-color: rgb(168, 106, 9);
|
|
}
|
|
.box.box-solid.box-warning > .box-header {
|
|
color: rgb(232, 230, 227);
|
|
background-image: none;
|
|
background-color: rgb(191, 121, 10);
|
|
}
|
|
.box.box-solid.box-warning > .box-header a,
|
|
.box.box-solid.box-warning > .box-header .btn {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.box.box-solid.box-success {
|
|
border-color: rgb(0, 205, 111);
|
|
}
|
|
.box.box-solid.box-success > .box-header {
|
|
color: rgb(232, 230, 227);
|
|
background-image: none;
|
|
background-color: rgb(0, 133, 72);
|
|
}
|
|
.box.box-solid.box-success > .box-header a,
|
|
.box.box-solid.box-success > .box-header .btn {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.box.box-solid > .box-header > .box-tools .btn {
|
|
border-color: currentcolor;
|
|
box-shadow: none;
|
|
}
|
|
.box.box-solid[class*="bg"] > .box-header {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.box .knob-label {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.box .overlay,
|
|
.overlay-wrapper .overlay {
|
|
background-color: rgba(24, 26, 27, 0.7);
|
|
background-image: none;
|
|
}
|
|
.box .overlay > .fa,
|
|
.overlay-wrapper .overlay > .fa {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.box .overlay.dark,
|
|
.overlay-wrapper .overlay.dark {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
background-image: none;
|
|
}
|
|
.box-header {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.box-header.with-border {
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
}
|
|
.collapsed-box .box-header.with-border {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.box-header > .box-tools .dropdown-menu > li > a {
|
|
color: rgb(189, 183, 175) !important;
|
|
}
|
|
.btn-box-tool {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
color: rgb(175, 168, 158);
|
|
}
|
|
.open .btn-box-tool,
|
|
.btn-box-tool:hover {
|
|
color: rgb(160, 152, 139);
|
|
}
|
|
.btn-box-tool.btn:active {
|
|
box-shadow: none;
|
|
}
|
|
.box-footer {
|
|
border-top-color: rgb(51, 55, 57);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.box-comments {
|
|
background-color: rgb(29, 31, 32);
|
|
background-image: none;
|
|
}
|
|
.box-comments .box-comment {
|
|
border-bottom-color: rgb(53, 57, 59);
|
|
}
|
|
.box-comments .box-comment:last-of-type {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.box-comments .comment-text {
|
|
color: rgb(178, 172, 162);
|
|
}
|
|
.box-comments .username {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.todo-list {
|
|
list-style-image: none;
|
|
}
|
|
.todo-list > li {
|
|
background-color: rgb(30, 33, 34);
|
|
background-image: none;
|
|
border-left-color: rgb(55, 59, 62);
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.todo-list > li .tools {
|
|
color: rgb(224, 89, 73);
|
|
}
|
|
.todo-list > li.done {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.todo-list > li.done .text {
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.todo-list > li.done .label {
|
|
background-color: rgb(46, 50, 52) !important;
|
|
background-image: none !important;
|
|
}
|
|
.todo-list .danger {
|
|
border-left-color: rgb(146, 38, 25);
|
|
}
|
|
.todo-list .warning {
|
|
border-left-color: rgb(168, 106, 9);
|
|
}
|
|
.todo-list .info {
|
|
border-left-color: rgb(0, 147, 183);
|
|
}
|
|
.todo-list .success {
|
|
border-left-color: rgb(0, 205, 111);
|
|
}
|
|
.todo-list .primary {
|
|
border-left-color: rgb(44, 103, 137);
|
|
}
|
|
.chat .item > img {
|
|
border-color: transparent;
|
|
}
|
|
.chat .item > .online {
|
|
border-color: rgb(0, 205, 111);
|
|
}
|
|
.chat .item > .offline {
|
|
border-color: rgb(146, 38, 25);
|
|
}
|
|
.chat .item > .attachment {
|
|
background-color: rgb(30, 33, 34);
|
|
background-image: none;
|
|
}
|
|
.modal .panel-body {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.info-box {
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 1px;
|
|
}
|
|
.info-box .progress {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
background-image: none;
|
|
}
|
|
.info-box .progress .progress-bar {
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
}
|
|
.info-box-icon {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
background-image: none;
|
|
}
|
|
.timeline {
|
|
list-style-image: none;
|
|
}
|
|
.timeline::before {
|
|
background-color: rgb(43, 47, 49);
|
|
background-image: none;
|
|
}
|
|
.timeline > li > .timeline-item {
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 1px;
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.timeline > li > .timeline-item > .time {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.timeline > li > .timeline-item > .timeline-header {
|
|
color: rgb(178, 172, 162);
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
}
|
|
.timeline > li > .fa,
|
|
.timeline > li > .glyphicon,
|
|
.timeline > li > .ion {
|
|
color: rgb(168, 160, 149);
|
|
background-color: rgb(46, 50, 52);
|
|
background-image: none;
|
|
}
|
|
.timeline > .time-label > span {
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.timeline-inverse > li > .timeline-item {
|
|
background-color: rgb(32, 35, 37);
|
|
background-image: none;
|
|
border-color: rgb(58, 62, 65);
|
|
box-shadow: none;
|
|
}
|
|
.timeline-inverse > li > .timeline-item > .timeline-header {
|
|
border-bottom-color: rgb(58, 62, 65);
|
|
}
|
|
.btn.btn-flat {
|
|
box-shadow: none;
|
|
}
|
|
.btn:active {
|
|
box-shadow: rgba(0, 0, 0, 0.13) 0 3px 5px inset;
|
|
}
|
|
.btn:focus {
|
|
outline-color: currentcolor;
|
|
}
|
|
.btn.btn-file > input[type="file"] {
|
|
outline-color: currentcolor;
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
}
|
|
.btn-default:hover,
|
|
.btn-default:active,
|
|
.btn-default.hover {
|
|
background-color: rgb(38, 41, 42);
|
|
}
|
|
.btn-primary:hover,
|
|
.btn-primary:active,
|
|
.btn-primary.hover {
|
|
background-color: rgb(43, 102, 135);
|
|
}
|
|
.btn-success:hover,
|
|
.btn-success:active,
|
|
.btn-success.hover {
|
|
background-color: rgb(0, 113, 61);
|
|
}
|
|
.btn-info:hover,
|
|
.btn-info:active,
|
|
.btn-info.hover {
|
|
background-color: rgb(0, 138, 171);
|
|
}
|
|
.btn-danger:hover,
|
|
.btn-danger:active,
|
|
.btn-danger.hover {
|
|
background-color: rgb(172, 46, 30);
|
|
}
|
|
.btn-warning:hover,
|
|
.btn-warning:active,
|
|
.btn-warning.hover {
|
|
background-color: rgb(179, 114, 9);
|
|
}
|
|
.btn-outline {
|
|
border-color: rgb(48, 52, 54);
|
|
background-color: transparent;
|
|
background-image: none;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.btn-outline:hover,
|
|
.btn-outline:focus,
|
|
.btn-outline:active {
|
|
color: rgba(232, 230, 227, 0.7);
|
|
border-color: rgba(48, 52, 54, 0.7);
|
|
}
|
|
.btn[class*="bg-"]:hover {
|
|
box-shadow: rgba(0, 0, 0, 0.2) 0 0 100 inset;
|
|
}
|
|
.btn-app {
|
|
color: rgb(168, 160, 149);
|
|
border-color: rgb(58, 62, 65);
|
|
background-color: rgb(30, 33, 34);
|
|
}
|
|
.btn-app:hover {
|
|
background-color: rgb(30, 33, 34);
|
|
background-image: none;
|
|
color: rgb(189, 183, 175);
|
|
border-color: rgb(72, 78, 81);
|
|
}
|
|
.btn-app:active,
|
|
.btn-app:focus {
|
|
box-shadow: rgba(0, 0, 0, 0.13) 0 3px 5px inset;
|
|
}
|
|
.callout {
|
|
border-left-color: rgb(53, 57, 59);
|
|
}
|
|
.callout a {
|
|
color: rgb(232, 230, 227);
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.callout a:hover {
|
|
color: rgb(221, 218, 214);
|
|
}
|
|
.callout code,
|
|
.callout .highlight {
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.callout.callout-danger {
|
|
border-color: rgb(160, 42, 27);
|
|
}
|
|
.callout.callout-warning {
|
|
border-color: rgb(183, 116, 9);
|
|
}
|
|
.callout.callout-info {
|
|
border-color: rgb(0, 160, 199);
|
|
}
|
|
.callout.callout-success {
|
|
border-color: rgb(0, 221, 119);
|
|
}
|
|
.alert .close {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.alert a {
|
|
color: rgb(232, 230, 227);
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.alert-danger,
|
|
.alert-error {
|
|
border-color: rgb(153, 41, 26);
|
|
}
|
|
.nav > li > a:hover,
|
|
.nav > li > a:active,
|
|
.nav > li > a:focus {
|
|
color: rgb(189, 183, 175);
|
|
background-color: rgb(29, 31, 32);
|
|
background-image: none;
|
|
}
|
|
.nav-pills > li > a {
|
|
border-top-color: transparent;
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.nav-stacked > li > a {
|
|
border-top-color: currentcolor;
|
|
border-left-color: transparent;
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.nav-stacked > li.active > a,
|
|
.nav-stacked > li.active > a:hover {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
color: rgb(189, 183, 175);
|
|
border-top-color: currentcolor;
|
|
border-left-color: rgb(44, 103, 137);
|
|
}
|
|
.nav-stacked > li.header {
|
|
border-bottom-color: rgb(58, 62, 65);
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.nav-tabs-custom {
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 1px;
|
|
}
|
|
.nav-tabs-custom > .nav-tabs {
|
|
background: rgb(30, 40, 44);
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li {
|
|
border-top-color: transparent;
|
|
margin-right: 1px;
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li.disabled > a {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li > a {
|
|
color: rgb(140, 144, 154);
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li > a.text-muted {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li > a,
|
|
.nav-tabs-custom > .nav-tabs > li > a:hover {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li > a:hover {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li:not(.active):hover {
|
|
background: rgb(24, 32, 35);
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li.active {
|
|
border-top-color: rgb(44, 103, 137);
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li.active > a,
|
|
.nav-tabs-custom > .nav-tabs > li.active:hover > a {
|
|
background-color: rgb(24, 26, 27);
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li.active > a {
|
|
border-top-color: transparent;
|
|
border-left-color: rgb(51, 55, 57);
|
|
border-right-color: rgb(51, 55, 57);
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
|
|
border-left-color: transparent;
|
|
}
|
|
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
|
|
border-left-color: rgb(51, 55, 57);
|
|
border-right-color: transparent;
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li.header {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.nav-tabs-custom > .tab-content {
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
}
|
|
.nav-tabs-custom .dropdown.open > a:active,
|
|
.nav-tabs-custom .dropdown.open > a:focus {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.nav-tabs-custom > .nav-tabs > li > a:focus,
|
|
.nav-tabs-custom > .nav-tabs > li.active > a:focus {
|
|
color: rgb(60, 140, 188);
|
|
}
|
|
|
|
.nav-tabs-custom.tab-primary > .nav-tabs > li.active {
|
|
border-top-color: rgb(44, 103, 137);
|
|
}
|
|
.nav-tabs-custom.tab-info > .nav-tabs > li.active {
|
|
border-top-color: rgb(0, 147, 183);
|
|
}
|
|
.nav-tabs-custom.tab-danger > .nav-tabs > li.active {
|
|
border-top-color: rgb(146, 38, 25);
|
|
}
|
|
.nav-tabs-custom.tab-warning > .nav-tabs > li.active {
|
|
border-top-color: rgb(168, 106, 9);
|
|
}
|
|
.nav-tabs-custom.tab-success > .nav-tabs > li.active {
|
|
border-top-color: rgb(0, 205, 111);
|
|
}
|
|
.nav-tabs-custom.tab-default > .nav-tabs > li.active {
|
|
border-top-color: rgb(59, 64, 66);
|
|
}
|
|
.pagination > li > a {
|
|
background-color: rgb(27, 29, 30);
|
|
background-image: none;
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.products-list {
|
|
list-style-image: none;
|
|
}
|
|
.products-list > .item {
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 1px;
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
}
|
|
.products-list .product-description {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.product-list-in-box > .item {
|
|
box-shadow: none;
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
}
|
|
.table.no-border,
|
|
.table.no-border td,
|
|
.table.no-border th {
|
|
border-color: currentcolor;
|
|
}
|
|
.direct-chat-text {
|
|
background-color: rgb(46, 50, 52);
|
|
background-image: none;
|
|
border-color: rgb(59, 64, 66);
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.direct-chat-text::after,
|
|
.direct-chat-text::before {
|
|
border-color: transparent rgb(59, 64, 66) transparent transparent;
|
|
}
|
|
.right .direct-chat-text::after,
|
|
.right .direct-chat-text::before {
|
|
border-right-color: transparent;
|
|
border-left-color: rgb(59, 64, 66);
|
|
}
|
|
.direct-chat-timestamp {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.direct-chat-contacts {
|
|
background-color: rgb(27, 36, 40);
|
|
background-image: none;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.contacts-list > li {
|
|
border-bottom-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.contacts-list > li:last-of-type {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.contacts-list-info {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.contacts-list-date {
|
|
color: rgb(178, 172, 162);
|
|
}
|
|
.contacts-list-msg {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.direct-chat-danger .right > .direct-chat-text {
|
|
background-color: rgb(162, 43, 28);
|
|
background-image: none;
|
|
border-color: rgb(146, 38, 25);
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.direct-chat-danger .right > .direct-chat-text::after,
|
|
.direct-chat-danger .right > .direct-chat-text::before {
|
|
border-left-color: rgb(146, 38, 25);
|
|
}
|
|
.direct-chat-primary .right > .direct-chat-text {
|
|
background-color: rgb(48, 113, 150);
|
|
background-image: none;
|
|
border-color: rgb(44, 103, 137);
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.direct-chat-primary .right > .direct-chat-text::after,
|
|
.direct-chat-primary .right > .direct-chat-text::before {
|
|
border-left-color: rgb(44, 103, 137);
|
|
}
|
|
.direct-chat-warning .right > .direct-chat-text {
|
|
background-color: rgb(191, 121, 10);
|
|
background-image: none;
|
|
border-color: rgb(168, 106, 9);
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.direct-chat-warning .right > .direct-chat-text::after,
|
|
.direct-chat-warning .right > .direct-chat-text::before {
|
|
border-left-color: rgb(168, 106, 9);
|
|
}
|
|
.direct-chat-info .right > .direct-chat-text {
|
|
background-color: rgb(0, 154, 191);
|
|
background-image: none;
|
|
border-color: rgb(0, 147, 183);
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.direct-chat-info .right > .direct-chat-text::after,
|
|
.direct-chat-info .right > .direct-chat-text::before {
|
|
border-left-color: rgb(0, 147, 183);
|
|
}
|
|
.direct-chat-success .right > .direct-chat-text {
|
|
background-color: rgb(0, 133, 72);
|
|
background-image: none;
|
|
border-color: rgb(0, 205, 111);
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.direct-chat-success .right > .direct-chat-text::after,
|
|
.direct-chat-success .right > .direct-chat-text::before {
|
|
border-left-color: rgb(0, 205, 111);
|
|
}
|
|
.users-list > li > a:hover,
|
|
.users-list > li > a:hover .users-list-name {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.users-list-name {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.users-list-date {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.carousel-control.left,
|
|
.carousel-control.right {
|
|
background-image: none;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.modal-content {
|
|
box-shadow: rgba(0, 0, 0, 0.13) 0 2px 3px;
|
|
}
|
|
}
|
|
.modal-primary .modal-header,
|
|
.modal-primary .modal-footer {
|
|
border-color: rgb(48, 111, 148);
|
|
}
|
|
.modal-warning .modal-header,
|
|
.modal-warning .modal-footer {
|
|
border-color: rgb(183, 116, 9);
|
|
}
|
|
.modal-info .modal-header,
|
|
.modal-info .modal-footer {
|
|
border-color: rgb(0, 160, 199);
|
|
}
|
|
.modal-success .modal-header,
|
|
.modal-success .modal-footer {
|
|
border-color: rgb(0, 221, 119);
|
|
}
|
|
.modal-danger .modal-header,
|
|
.modal-danger .modal-footer {
|
|
border-color: rgb(160, 42, 27);
|
|
}
|
|
.box-widget {
|
|
border-color: currentcolor;
|
|
}
|
|
.widget-user .widget-user-username {
|
|
text-shadow: rgba(0, 0, 0, 0.2) 0 1px 1px;
|
|
}
|
|
.widget-user .widget-user-image > img {
|
|
border-color: rgb(48, 52, 54);
|
|
}
|
|
.treeview-menu {
|
|
list-style-image: none;
|
|
}
|
|
.mailbox-controls.with-border {
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
}
|
|
.mailbox-read-info {
|
|
border-bottom-color: rgb(51, 55, 57);
|
|
}
|
|
.mailbox-read-time {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.mailbox-attachments li {
|
|
border-color: rgb(53, 57, 59);
|
|
}
|
|
.mailbox-attachment-name {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.mailbox-attachment-info {
|
|
background-color: rgb(30, 33, 34);
|
|
background-image: none;
|
|
}
|
|
.mailbox-attachment-size {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.mailbox-attachment-icon {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.lockscreen {
|
|
background-color: rgb(46, 50, 52);
|
|
background-image: none;
|
|
}
|
|
.lockscreen-logo a {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.lockscreen-item {
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
}
|
|
.lockscreen-image {
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
}
|
|
.lockscreen-credentials .form-control {
|
|
border-color: currentcolor;
|
|
}
|
|
.lockscreen-credentials .btn {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: currentcolor;
|
|
}
|
|
.login-logo a,
|
|
.register-logo a {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.login-page,
|
|
.register-page {
|
|
background-color: rgb(46, 50, 52);
|
|
}
|
|
.login-box-body,
|
|
.register-box-body {
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
border-top-color: currentcolor;
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.login-box-body .form-control-feedback,
|
|
.register-box-body .form-control-feedback {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
input[type="password"]::-webkit-caps-lock-indicator {
|
|
filter: invert(100%);
|
|
}
|
|
.invoice {
|
|
background-color: rgb(24, 26, 27);
|
|
background-image: none;
|
|
border-color: rgb(51, 55, 57);
|
|
}
|
|
.profile-user-img {
|
|
border-color: rgb(59, 64, 66);
|
|
}
|
|
.post {
|
|
border-bottom-color: rgb(59, 64, 66);
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.post:last-of-type {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.btn-social > :first-child {
|
|
border-right-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-social-icon > :first-child {
|
|
border-color: currentcolor;
|
|
border-right-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-adn {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(131, 50, 34);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-adn:focus,
|
|
.btn-adn.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(156, 58, 40);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-adn:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(156, 58, 40);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-adn:active,
|
|
.btn-adn.active,
|
|
.open > .dropdown-toggle.btn-adn {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(156, 58, 40);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-adn:active:hover,
|
|
.btn-adn.active:hover,
|
|
.open > .dropdown-toggle.btn-adn:hover,
|
|
.btn-adn:active:focus,
|
|
.btn-adn.active:focus,
|
|
.open > .dropdown-toggle.btn-adn:focus,
|
|
.btn-adn:active.focus,
|
|
.btn-adn.active.focus,
|
|
.open > .dropdown-toggle.btn-adn.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(148, 56, 38);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-adn.disabled:hover,
|
|
.btn-adn[disabled]:hover,
|
|
fieldset[disabled] .btn-adn:hover,
|
|
.btn-adn.disabled:focus,
|
|
.btn-adn[disabled]:focus,
|
|
fieldset[disabled] .btn-adn:focus,
|
|
.btn-adn.disabled.focus,
|
|
.btn-adn[disabled].focus,
|
|
fieldset[disabled] .btn-adn.focus {
|
|
background-color: rgb(131, 50, 34);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-adn .badge {
|
|
color: rgb(217, 126, 109);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-bitbucket {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(26, 64, 103);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-bitbucket:focus,
|
|
.btn-bitbucket.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(18, 44, 70);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-bitbucket:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(18, 44, 70);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-bitbucket:active,
|
|
.btn-bitbucket.active,
|
|
.open > .dropdown-toggle.btn-bitbucket {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(18, 44, 70);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-bitbucket:active:hover,
|
|
.btn-bitbucket.active:hover,
|
|
.open > .dropdown-toggle.btn-bitbucket:hover,
|
|
.btn-bitbucket:active:focus,
|
|
.btn-bitbucket.active:focus,
|
|
.open > .dropdown-toggle.btn-bitbucket:focus,
|
|
.btn-bitbucket:active.focus,
|
|
.btn-bitbucket.active.focus,
|
|
.open > .dropdown-toggle.btn-bitbucket.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(12, 30, 48);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-bitbucket.disabled:hover,
|
|
.btn-bitbucket[disabled]:hover,
|
|
fieldset[disabled] .btn-bitbucket:hover,
|
|
.btn-bitbucket.disabled:focus,
|
|
.btn-bitbucket[disabled]:focus,
|
|
fieldset[disabled] .btn-bitbucket:focus,
|
|
.btn-bitbucket.disabled.focus,
|
|
.btn-bitbucket[disabled].focus,
|
|
fieldset[disabled] .btn-bitbucket.focus {
|
|
background-color: rgb(26, 64, 103);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-bitbucket .badge {
|
|
color: rgb(137, 186, 226);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-dropbox {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(13, 108, 177);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-dropbox:focus,
|
|
.btn-dropbox.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(10, 85, 138);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-dropbox:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(10, 85, 138);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-dropbox:active,
|
|
.btn-dropbox.active,
|
|
.open > .dropdown-toggle.btn-dropbox {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(10, 85, 138);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-dropbox:active:hover,
|
|
.btn-dropbox.active:hover,
|
|
.open > .dropdown-toggle.btn-dropbox:hover,
|
|
.btn-dropbox:active:focus,
|
|
.btn-dropbox.active:focus,
|
|
.open > .dropdown-toggle.btn-dropbox:focus,
|
|
.btn-dropbox:active.focus,
|
|
.btn-dropbox.active.focus,
|
|
.open > .dropdown-toggle.btn-dropbox.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(8, 69, 112);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-dropbox.disabled:hover,
|
|
.btn-dropbox[disabled]:hover,
|
|
fieldset[disabled] .btn-dropbox:hover,
|
|
.btn-dropbox.disabled:focus,
|
|
.btn-dropbox[disabled]:focus,
|
|
fieldset[disabled] .btn-dropbox:focus,
|
|
.btn-dropbox.disabled.focus,
|
|
.btn-dropbox[disabled].focus,
|
|
fieldset[disabled] .btn-dropbox.focus {
|
|
background-color: rgb(13, 108, 177);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-dropbox .badge {
|
|
color: rgb(75, 172, 242);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-facebook {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(47, 71, 122);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-facebook:focus,
|
|
.btn-facebook.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(36, 54, 92);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-facebook:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(36, 54, 92);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-facebook:active,
|
|
.btn-facebook.active,
|
|
.open > .dropdown-toggle.btn-facebook {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(36, 54, 92);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-facebook:active:hover,
|
|
.btn-facebook.active:hover,
|
|
.open > .dropdown-toggle.btn-facebook:hover,
|
|
.btn-facebook:active:focus,
|
|
.btn-facebook.active:focus,
|
|
.open > .dropdown-toggle.btn-facebook:focus,
|
|
.btn-facebook:active.focus,
|
|
.btn-facebook.active.focus,
|
|
.open > .dropdown-toggle.btn-facebook.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(28, 42, 72);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-facebook.disabled:hover,
|
|
.btn-facebook[disabled]:hover,
|
|
fieldset[disabled] .btn-facebook:hover,
|
|
.btn-facebook.disabled:focus,
|
|
.btn-facebook[disabled]:focus,
|
|
fieldset[disabled] .btn-facebook:focus,
|
|
.btn-facebook.disabled.focus,
|
|
.btn-facebook[disabled].focus,
|
|
fieldset[disabled] .btn-facebook.focus {
|
|
background-color: rgb(47, 71, 122);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-facebook .badge {
|
|
color: rgb(127, 165, 205);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-flickr {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(204, 0, 106);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-flickr:focus,
|
|
.btn-flickr.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(163, 0, 85);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-flickr:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(163, 0, 85);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-flickr:active,
|
|
.btn-flickr.active,
|
|
.open > .dropdown-toggle.btn-flickr {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(163, 0, 85);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-flickr:active:hover,
|
|
.btn-flickr.active:hover,
|
|
.open > .dropdown-toggle.btn-flickr:hover,
|
|
.btn-flickr:active:focus,
|
|
.btn-flickr.active:focus,
|
|
.open > .dropdown-toggle.btn-flickr:focus,
|
|
.btn-flickr:active.focus,
|
|
.btn-flickr.active.focus,
|
|
.open > .dropdown-toggle.btn-flickr.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(134, 0, 70);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-flickr.disabled:hover,
|
|
.btn-flickr[disabled]:hover,
|
|
fieldset[disabled] .btn-flickr:hover,
|
|
.btn-flickr.disabled:focus,
|
|
.btn-flickr[disabled]:focus,
|
|
fieldset[disabled] .btn-flickr:focus,
|
|
.btn-flickr.disabled.focus,
|
|
.btn-flickr[disabled].focus,
|
|
fieldset[disabled] .btn-flickr.focus {
|
|
background-color: rgb(204, 0, 106);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-flickr .badge {
|
|
color: rgb(255, 26, 144);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-foursquare {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(159, 5, 46);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-foursquare:focus,
|
|
.btn-foursquare.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(189, 7, 54);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-foursquare:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(189, 7, 54);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-foursquare:active,
|
|
.btn-foursquare.active,
|
|
.open > .dropdown-toggle.btn-foursquare {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(189, 7, 54);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-foursquare:active:hover,
|
|
.btn-foursquare.active:hover,
|
|
.open > .dropdown-toggle.btn-foursquare:hover,
|
|
.btn-foursquare:active:focus,
|
|
.btn-foursquare.active:focus,
|
|
.open > .dropdown-toggle.btn-foursquare:focus,
|
|
.btn-foursquare:active.focus,
|
|
.btn-foursquare.active.focus,
|
|
.open > .dropdown-toggle.btn-foursquare.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(182, 6, 53);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-foursquare.disabled:hover,
|
|
.btn-foursquare[disabled]:hover,
|
|
fieldset[disabled] .btn-foursquare:hover,
|
|
.btn-foursquare.disabled:focus,
|
|
.btn-foursquare[disabled]:focus,
|
|
fieldset[disabled] .btn-foursquare:focus,
|
|
.btn-foursquare.disabled.focus,
|
|
.btn-foursquare[disabled].focus,
|
|
fieldset[disabled] .btn-foursquare.focus {
|
|
background-color: rgb(159, 5, 46);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-foursquare .badge {
|
|
color: rgb(249, 78, 123);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-github {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(51, 55, 58);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-github:focus,
|
|
.btn-github.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(32, 35, 36);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-github:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(32, 35, 36);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-github:active,
|
|
.btn-github.active,
|
|
.open > .dropdown-toggle.btn-github {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(32, 35, 36);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-github:active:hover,
|
|
.btn-github.active:hover,
|
|
.open > .dropdown-toggle.btn-github:hover,
|
|
.btn-github:active:focus,
|
|
.btn-github.active:focus,
|
|
.open > .dropdown-toggle.btn-github:focus,
|
|
.btn-github:active.focus,
|
|
.btn-github.active.focus,
|
|
.open > .dropdown-toggle.btn-github.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(19, 20, 21);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-github.disabled:hover,
|
|
.btn-github[disabled]:hover,
|
|
fieldset[disabled] .btn-github:hover,
|
|
.btn-github.disabled:focus,
|
|
.btn-github[disabled]:focus,
|
|
fieldset[disabled] .btn-github:focus,
|
|
.btn-github.disabled.focus,
|
|
.btn-github[disabled].focus,
|
|
fieldset[disabled] .btn-github.focus {
|
|
background-color: rgb(51, 55, 58);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-github .badge {
|
|
color: rgb(189, 183, 175);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-google {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(162, 43, 28);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-google:focus,
|
|
.btn-google.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(155, 41, 26);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-google:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(155, 41, 26);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-google:active,
|
|
.btn-google.active,
|
|
.open > .dropdown-toggle.btn-google {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(155, 41, 26);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-google:active:hover,
|
|
.btn-google.active:hover,
|
|
.open > .dropdown-toggle.btn-google:hover,
|
|
.btn-google:active:focus,
|
|
.btn-google.active:focus,
|
|
.open > .dropdown-toggle.btn-google:focus,
|
|
.btn-google:active.focus,
|
|
.btn-google.active.focus,
|
|
.open > .dropdown-toggle.btn-google.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(130, 34, 22);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-google.disabled:hover,
|
|
.btn-google[disabled]:hover,
|
|
fieldset[disabled] .btn-google:hover,
|
|
.btn-google.disabled:focus,
|
|
.btn-google[disabled]:focus,
|
|
fieldset[disabled] .btn-google:focus,
|
|
.btn-google.disabled.focus,
|
|
.btn-google[disabled].focus,
|
|
fieldset[disabled] .btn-google.focus {
|
|
background-color: rgb(162, 43, 28);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-google .badge {
|
|
color: rgb(224, 89, 73);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-instagram {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(50, 91, 124);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-instagram:focus,
|
|
.btn-instagram.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(38, 70, 95);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-instagram:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(38, 70, 95);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-instagram:active,
|
|
.btn-instagram.active,
|
|
.open > .dropdown-toggle.btn-instagram {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(38, 70, 95);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-instagram:active:hover,
|
|
.btn-instagram.active:hover,
|
|
.open > .dropdown-toggle.btn-instagram:hover,
|
|
.btn-instagram:active:focus,
|
|
.btn-instagram.active:focus,
|
|
.open > .dropdown-toggle.btn-instagram:focus,
|
|
.btn-instagram:active.focus,
|
|
.btn-instagram.active.focus,
|
|
.open > .dropdown-toggle.btn-instagram.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(30, 55, 74);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-instagram.disabled:hover,
|
|
.btn-instagram[disabled]:hover,
|
|
fieldset[disabled] .btn-instagram:hover,
|
|
.btn-instagram.disabled:focus,
|
|
.btn-instagram[disabled]:focus,
|
|
fieldset[disabled] .btn-instagram:focus,
|
|
.btn-instagram.disabled.focus,
|
|
.btn-instagram[disabled].focus,
|
|
fieldset[disabled] .btn-instagram.focus {
|
|
background-color: rgb(50, 91, 124);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-instagram .badge {
|
|
color: rgb(126, 170, 202);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-linkedin {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(0, 98, 146);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-linkedin:focus,
|
|
.btn-linkedin.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(0, 71, 105);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-linkedin:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(0, 71, 105);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-linkedin:active,
|
|
.btn-linkedin.active,
|
|
.open > .dropdown-toggle.btn-linkedin {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(0, 71, 105);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-linkedin:active:hover,
|
|
.btn-linkedin.active:hover,
|
|
.open > .dropdown-toggle.btn-linkedin:hover,
|
|
.btn-linkedin:active:focus,
|
|
.btn-linkedin.active:focus,
|
|
.open > .dropdown-toggle.btn-linkedin:focus,
|
|
.btn-linkedin:active.focus,
|
|
.btn-linkedin.active.focus,
|
|
.open > .dropdown-toggle.btn-linkedin.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(0, 51, 76);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-linkedin.disabled:hover,
|
|
.btn-linkedin[disabled]:hover,
|
|
fieldset[disabled] .btn-linkedin:hover,
|
|
.btn-linkedin.disabled:focus,
|
|
.btn-linkedin[disabled]:focus,
|
|
fieldset[disabled] .btn-linkedin:focus,
|
|
.btn-linkedin.disabled.focus,
|
|
.btn-linkedin[disabled].focus,
|
|
fieldset[disabled] .btn-linkedin.focus {
|
|
background-color: rgb(0, 98, 146);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-linkedin .badge {
|
|
color: rgb(77, 197, 255);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-microsoft {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(16, 78, 177);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-microsoft:focus,
|
|
.btn-microsoft.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(14, 72, 164);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-microsoft:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(14, 72, 164);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-microsoft:active,
|
|
.btn-microsoft.active,
|
|
.open > .dropdown-toggle.btn-microsoft {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(14, 72, 164);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-microsoft:active:hover,
|
|
.btn-microsoft.active:hover,
|
|
.open > .dropdown-toggle.btn-microsoft:hover,
|
|
.btn-microsoft:active:focus,
|
|
.btn-microsoft.active:focus,
|
|
.open > .dropdown-toggle.btn-microsoft:focus,
|
|
.btn-microsoft:active.focus,
|
|
.btn-microsoft.active.focus,
|
|
.open > .dropdown-toggle.btn-microsoft.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(12, 60, 138);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-microsoft.disabled:hover,
|
|
.btn-microsoft[disabled]:hover,
|
|
fieldset[disabled] .btn-microsoft:hover,
|
|
.btn-microsoft.disabled:focus,
|
|
.btn-microsoft[disabled]:focus,
|
|
fieldset[disabled] .btn-microsoft:focus,
|
|
.btn-microsoft.disabled.focus,
|
|
.btn-microsoft[disabled].focus,
|
|
fieldset[disabled] .btn-microsoft.focus {
|
|
background-color: rgb(16, 78, 177);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-microsoft .badge {
|
|
color: rgb(56, 148, 238);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-openid {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(184, 102, 7);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-openid:focus,
|
|
.btn-openid.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(174, 97, 6);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-openid:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(174, 97, 6);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-openid:active,
|
|
.btn-openid.active,
|
|
.open > .dropdown-toggle.btn-openid {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(174, 97, 6);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-openid:active:hover,
|
|
.btn-openid.active:hover,
|
|
.open > .dropdown-toggle.btn-openid:hover,
|
|
.btn-openid:active:focus,
|
|
.btn-openid.active:focus,
|
|
.open > .dropdown-toggle.btn-openid:focus,
|
|
.btn-openid:active.focus,
|
|
.btn-openid.active.focus,
|
|
.open > .dropdown-toggle.btn-openid.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(147, 82, 6);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-openid.disabled:hover,
|
|
.btn-openid[disabled]:hover,
|
|
fieldset[disabled] .btn-openid:hover,
|
|
.btn-openid.disabled:focus,
|
|
.btn-openid[disabled]:focus,
|
|
fieldset[disabled] .btn-openid:focus,
|
|
.btn-openid.disabled.focus,
|
|
.btn-openid[disabled].focus,
|
|
fieldset[disabled] .btn-openid.focus {
|
|
background-color: rgb(184, 102, 7);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-openid .badge {
|
|
color: rgb(248, 156, 48);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-pinterest {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(162, 26, 31);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-pinterest:focus,
|
|
.btn-pinterest.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(127, 20, 25);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-pinterest:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(127, 20, 25);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-pinterest:active,
|
|
.btn-pinterest.active,
|
|
.open > .dropdown-toggle.btn-pinterest {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(127, 20, 25);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-pinterest:active:hover,
|
|
.btn-pinterest.active:hover,
|
|
.open > .dropdown-toggle.btn-pinterest:hover,
|
|
.btn-pinterest:active:focus,
|
|
.btn-pinterest.active:focus,
|
|
.open > .dropdown-toggle.btn-pinterest:focus,
|
|
.btn-pinterest:active.focus,
|
|
.btn-pinterest.active.focus,
|
|
.open > .dropdown-toggle.btn-pinterest.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(102, 16, 20);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-pinterest.disabled:hover,
|
|
.btn-pinterest[disabled]:hover,
|
|
fieldset[disabled] .btn-pinterest:hover,
|
|
.btn-pinterest.disabled:focus,
|
|
.btn-pinterest[disabled]:focus,
|
|
fieldset[disabled] .btn-pinterest:focus,
|
|
.btn-pinterest.disabled.focus,
|
|
.btn-pinterest[disabled].focus,
|
|
fieldset[disabled] .btn-pinterest.focus {
|
|
background-color: rgb(162, 26, 31);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-pinterest .badge {
|
|
color: rgb(226, 69, 75);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-reddit {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(29, 31, 32);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-reddit:focus,
|
|
.btn-reddit.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(43, 46, 48);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-reddit:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(43, 46, 48);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-reddit:active,
|
|
.btn-reddit.active,
|
|
.open > .dropdown-toggle.btn-reddit {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(43, 46, 48);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-reddit:active:hover,
|
|
.btn-reddit.active:hover,
|
|
.open > .dropdown-toggle.btn-reddit:hover,
|
|
.btn-reddit:active:focus,
|
|
.btn-reddit.active:focus,
|
|
.open > .dropdown-toggle.btn-reddit:focus,
|
|
.btn-reddit:active.focus,
|
|
.btn-reddit.active.focus,
|
|
.open > .dropdown-toggle.btn-reddit.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(0, 57, 113);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-reddit.disabled:hover,
|
|
.btn-reddit[disabled]:hover,
|
|
fieldset[disabled] .btn-reddit:hover,
|
|
.btn-reddit.disabled:focus,
|
|
.btn-reddit[disabled]:focus,
|
|
fieldset[disabled] .btn-reddit:focus,
|
|
.btn-reddit.disabled.focus,
|
|
.btn-reddit[disabled].focus,
|
|
fieldset[disabled] .btn-reddit.focus {
|
|
background-color: rgb(29, 31, 32);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-reddit .badge {
|
|
color: rgb(193, 227, 255);
|
|
background-color: rgb(0, 0, 0);
|
|
}
|
|
.btn-soundcloud {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(204, 68, 0);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-soundcloud:focus,
|
|
.btn-soundcloud.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(163, 54, 0);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-soundcloud:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(163, 54, 0);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-soundcloud:active,
|
|
.btn-soundcloud.active,
|
|
.open > .dropdown-toggle.btn-soundcloud {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(163, 54, 0);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-soundcloud:active:hover,
|
|
.btn-soundcloud.active:hover,
|
|
.open > .dropdown-toggle.btn-soundcloud:hover,
|
|
.btn-soundcloud:active:focus,
|
|
.btn-soundcloud.active:focus,
|
|
.open > .dropdown-toggle.btn-soundcloud:focus,
|
|
.btn-soundcloud:active.focus,
|
|
.btn-soundcloud.active.focus,
|
|
.open > .dropdown-toggle.btn-soundcloud.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(134, 45, 0);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-soundcloud.disabled:hover,
|
|
.btn-soundcloud[disabled]:hover,
|
|
fieldset[disabled] .btn-soundcloud:hover,
|
|
.btn-soundcloud.disabled:focus,
|
|
.btn-soundcloud[disabled]:focus,
|
|
fieldset[disabled] .btn-soundcloud:focus,
|
|
.btn-soundcloud.disabled.focus,
|
|
.btn-soundcloud[disabled].focus,
|
|
fieldset[disabled] .btn-soundcloud.focus {
|
|
background-color: rgb(204, 68, 0);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-soundcloud .badge {
|
|
color: rgb(255, 102, 26);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-tumblr {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(35, 57, 78);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-tumblr:focus,
|
|
.btn-tumblr.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(22, 36, 50);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-tumblr:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(22, 36, 50);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-tumblr:active,
|
|
.btn-tumblr.active,
|
|
.open > .dropdown-toggle.btn-tumblr {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(22, 36, 50);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-tumblr:active:hover,
|
|
.btn-tumblr.active:hover,
|
|
.open > .dropdown-toggle.btn-tumblr:hover,
|
|
.btn-tumblr:active:focus,
|
|
.btn-tumblr.active:focus,
|
|
.open > .dropdown-toggle.btn-tumblr:focus,
|
|
.btn-tumblr:active.focus,
|
|
.btn-tumblr.active.focus,
|
|
.open > .dropdown-toggle.btn-tumblr.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(14, 22, 30);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-tumblr.disabled:hover,
|
|
.btn-tumblr[disabled]:hover,
|
|
fieldset[disabled] .btn-tumblr:hover,
|
|
.btn-tumblr.disabled:focus,
|
|
.btn-tumblr[disabled]:focus,
|
|
fieldset[disabled] .btn-tumblr:focus,
|
|
.btn-tumblr.disabled.focus,
|
|
.btn-tumblr[disabled].focus,
|
|
fieldset[disabled] .btn-tumblr.focus {
|
|
background-color: rgb(35, 57, 78);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-tumblr .badge {
|
|
color: rgb(161, 190, 213);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-twitter {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(15, 91, 148);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-twitter:focus,
|
|
.btn-twitter.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(18, 107, 176);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-twitter:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(18, 107, 176);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-twitter:active,
|
|
.btn-twitter.active,
|
|
.open > .dropdown-toggle.btn-twitter {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(18, 107, 176);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-twitter:active:hover,
|
|
.btn-twitter.active:hover,
|
|
.open > .dropdown-toggle.btn-twitter:hover,
|
|
.btn-twitter:active:focus,
|
|
.btn-twitter.active:focus,
|
|
.open > .dropdown-toggle.btn-twitter:focus,
|
|
.btn-twitter:active.focus,
|
|
.btn-twitter.active.focus,
|
|
.open > .dropdown-toggle.btn-twitter.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(17, 105, 172);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-twitter.disabled:hover,
|
|
.btn-twitter[disabled]:hover,
|
|
fieldset[disabled] .btn-twitter:hover,
|
|
.btn-twitter.disabled:focus,
|
|
.btn-twitter[disabled]:focus,
|
|
fieldset[disabled] .btn-twitter:focus,
|
|
.btn-twitter.disabled.focus,
|
|
.btn-twitter[disabled].focus,
|
|
fieldset[disabled] .btn-twitter.focus {
|
|
background-color: rgb(15, 91, 148);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-twitter .badge {
|
|
color: rgb(90, 176, 238);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-vimeo {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(17, 143, 184);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-vimeo:focus,
|
|
.btn-vimeo.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(14, 119, 153);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-vimeo:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(14, 119, 153);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-vimeo:active,
|
|
.btn-vimeo.active,
|
|
.open > .dropdown-toggle.btn-vimeo {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(14, 119, 153);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-vimeo:active:hover,
|
|
.btn-vimeo.active:hover,
|
|
.open > .dropdown-toggle.btn-vimeo:hover,
|
|
.btn-vimeo:active:focus,
|
|
.btn-vimeo.active:focus,
|
|
.open > .dropdown-toggle.btn-vimeo:focus,
|
|
.btn-vimeo:active.focus,
|
|
.btn-vimeo.active.focus,
|
|
.open > .dropdown-toggle.btn-vimeo.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(12, 98, 127);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-vimeo.disabled:hover,
|
|
.btn-vimeo[disabled]:hover,
|
|
fieldset[disabled] .btn-vimeo:hover,
|
|
.btn-vimeo.disabled:focus,
|
|
.btn-vimeo[disabled]:focus,
|
|
fieldset[disabled] .btn-vimeo:focus,
|
|
.btn-vimeo.disabled.focus,
|
|
.btn-vimeo[disabled].focus,
|
|
fieldset[disabled] .btn-vimeo.focus {
|
|
background-color: rgb(17, 143, 184);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-vimeo .badge {
|
|
color: rgb(48, 190, 236);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-vk {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(70, 101, 130);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-vk:focus,
|
|
.btn-vk.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(56, 80, 104);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-vk:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(56, 80, 104);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-vk:active,
|
|
.btn-vk.active,
|
|
.open > .dropdown-toggle.btn-vk {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(56, 80, 104);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-vk:active:hover,
|
|
.btn-vk.active:hover,
|
|
.open > .dropdown-toggle.btn-vk:hover,
|
|
.btn-vk:active:focus,
|
|
.btn-vk.active:focus,
|
|
.open > .dropdown-toggle.btn-vk:focus,
|
|
.btn-vk:active.focus,
|
|
.btn-vk.active.focus,
|
|
.open > .dropdown-toggle.btn-vk.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(46, 66, 86);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-vk.disabled:hover,
|
|
.btn-vk[disabled]:hover,
|
|
fieldset[disabled] .btn-vk:hover,
|
|
.btn-vk.disabled:focus,
|
|
.btn-vk[disabled]:focus,
|
|
fieldset[disabled] .btn-vk:focus,
|
|
.btn-vk.disabled.focus,
|
|
.btn-vk[disabled].focus,
|
|
fieldset[disabled] .btn-vk.focus {
|
|
background-color: rgb(70, 101, 130);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-vk .badge {
|
|
color: rgb(124, 157, 184);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.btn-yahoo {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(91, 11, 126);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-yahoo:focus,
|
|
.btn-yahoo.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(64, 8, 89);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-yahoo:hover {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(64, 8, 89);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-yahoo:active,
|
|
.btn-yahoo.active,
|
|
.open > .dropdown-toggle.btn-yahoo {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(64, 8, 89);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
background-image: none;
|
|
}
|
|
.btn-yahoo:active:hover,
|
|
.btn-yahoo.active:hover,
|
|
.open > .dropdown-toggle.btn-yahoo:hover,
|
|
.btn-yahoo:active:focus,
|
|
.btn-yahoo.active:focus,
|
|
.open > .dropdown-toggle.btn-yahoo:focus,
|
|
.btn-yahoo:active.focus,
|
|
.btn-yahoo.active.focus,
|
|
.open > .dropdown-toggle.btn-yahoo.focus {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(46, 6, 62);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-yahoo.disabled:hover,
|
|
.btn-yahoo[disabled]:hover,
|
|
fieldset[disabled] .btn-yahoo:hover,
|
|
.btn-yahoo.disabled:focus,
|
|
.btn-yahoo[disabled]:focus,
|
|
fieldset[disabled] .btn-yahoo:focus,
|
|
.btn-yahoo.disabled.focus,
|
|
.btn-yahoo[disabled].focus,
|
|
fieldset[disabled] .btn-yahoo.focus {
|
|
background-color: rgb(91, 11, 126);
|
|
border-color: rgba(140, 130, 115, 0.2);
|
|
}
|
|
.btn-yahoo .badge {
|
|
color: rgb(197, 98, 241);
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.fc-button {
|
|
background-color: rgb(30, 33, 34);
|
|
background-image: none;
|
|
color: rgb(189, 183, 175);
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
.fc-button:hover,
|
|
.fc-button:active,
|
|
.fc-button.hover {
|
|
background-color: rgb(36, 39, 41);
|
|
}
|
|
.fc-header-title h2 {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.fc-widget-header {
|
|
background-color: rgb(27, 29, 30);
|
|
background-image: none;
|
|
}
|
|
.fc-grid {
|
|
border-color: currentcolor;
|
|
}
|
|
.fc-widget-header:first-of-type,
|
|
.fc-widget-content:first-of-type {
|
|
border-left-color: currentcolor;
|
|
border-right-color: currentcolor;
|
|
}
|
|
.fc-widget-header:last-of-type,
|
|
.fc-widget-content:last-of-type {
|
|
border-right-color: currentcolor;
|
|
}
|
|
.fc-color-picker {
|
|
list-style-image: none;
|
|
}
|
|
.external-event {
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 1px;
|
|
text-shadow: rgba(0, 0, 0, 0.1) 0 1px 1px;
|
|
}
|
|
.external-event:hover {
|
|
box-shadow: rgba(0, 0, 0, 0.2) 0 0 90 inset;
|
|
}
|
|
.select2-container--default.select2-container--focus,
|
|
.select2-selection.select2-container--focus,
|
|
.select2-container--default:focus,
|
|
.select2-selection:focus,
|
|
.select2-container--default:active,
|
|
.select2-selection:active {
|
|
outline-color: currentcolor;
|
|
}
|
|
.select2-container--default .select2-selection--single,
|
|
.select2-selection .select2-selection--single {
|
|
border-color: rgb(59, 64, 66);
|
|
}
|
|
.select2-container--default.select2-container--open {
|
|
border-color: rgb(44, 103, 137);
|
|
}
|
|
.select2-dropdown {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(72, 78, 81);
|
|
}
|
|
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(4, 60, 150);
|
|
}
|
|
.select2-dropdown .select2-search__field,
|
|
.select2-search--inline .select2-search__field {
|
|
border-color: rgb(59, 64, 66);
|
|
}
|
|
.select2-dropdown .select2-search__field:focus,
|
|
.select2-search--inline .select2-search__field:focus {
|
|
outline-color: currentcolor;
|
|
}
|
|
.select2-container--default.select2-container--focus .select2-selection--multiple,
|
|
.select2-container--default .select2-search--dropdown .select2-search__field {
|
|
border-color: rgb(44, 103, 137) !important;
|
|
}
|
|
.select2-container--default .select2-results__option[aria-disabled="true"] {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.select2-container--default .select2-results__option[aria-selected="true"] {
|
|
background-color: rgb(43, 47, 49);
|
|
}
|
|
.select2-container--default .select2-results__option[aria-selected="true"],
|
|
.select2-container--default .select2-results__option[aria-selected="true"]:hover {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.select2-container--default .select2-selection--multiple {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(72, 78, 81);
|
|
}
|
|
.select2-container--default .select2-selection--multiple:focus {
|
|
border-color: rgb(44, 103, 137);
|
|
}
|
|
.select2-container--default.select2-container--focus .select2-selection--multiple {
|
|
border-color: rgb(140, 130, 115);
|
|
outline-color: currentcolor;
|
|
}
|
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(39, 43, 44);
|
|
border-color: rgb(72, 78, 81);
|
|
}
|
|
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
|
color: rgb(200, 195, 188);
|
|
}
|
|
.box .datepicker-inline td:hover,
|
|
.box .datepicker-inline .datepicker-days td:hover,
|
|
.box .datepicker-inline > table td:hover,
|
|
.box .datepicker-inline .datepicker-days > table td:hover {
|
|
background-color: rgba(24, 26, 27, 0.3);
|
|
}
|
|
.box .datepicker-inline td.day.old,
|
|
.box .datepicker-inline .datepicker-days td.day.old,
|
|
.box .datepicker-inline > table td.day.old,
|
|
.box .datepicker-inline .datepicker-days > table td.day.old,
|
|
.box .datepicker-inline td.day.new,
|
|
.box .datepicker-inline .datepicker-days td.day.new,
|
|
.box .datepicker-inline > table td.day.new,
|
|
.box .datepicker-inline .datepicker-days > table td.day.new {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.bg-red,
|
|
.bg-yellow,
|
|
.bg-aqua,
|
|
.bg-blue,
|
|
.bg-light-blue,
|
|
.bg-green,
|
|
.bg-navy,
|
|
.bg-teal,
|
|
.bg-olive,
|
|
.bg-lime,
|
|
.bg-orange,
|
|
.bg-fuchsia,
|
|
.bg-purple,
|
|
.bg-maroon,
|
|
.bg-black,
|
|
.bg-red-active,
|
|
.bg-yellow-active,
|
|
.bg-aqua-active,
|
|
.bg-blue-active,
|
|
.bg-light-blue-active,
|
|
.bg-green-active,
|
|
.bg-navy-active,
|
|
.bg-teal-active,
|
|
.bg-olive-active,
|
|
.bg-lime-active,
|
|
.bg-orange-active,
|
|
.bg-fuchsia-active,
|
|
.bg-purple-active,
|
|
.bg-maroon-active,
|
|
.bg-black-active,
|
|
.callout.callout-danger,
|
|
.callout.callout-warning,
|
|
.callout.callout-info,
|
|
.callout.callout-success,
|
|
.alert-success,
|
|
.alert-danger,
|
|
.alert-error,
|
|
.alert-warning,
|
|
.alert-info,
|
|
.label-danger,
|
|
.label-info,
|
|
.label-warning,
|
|
.label-primary,
|
|
.label-success,
|
|
.modal-primary .modal-body,
|
|
.modal-primary .modal-header,
|
|
.modal-primary .modal-footer,
|
|
.modal-warning .modal-body,
|
|
.modal-warning .modal-header,
|
|
.modal-warning .modal-footer,
|
|
.modal-info .modal-body,
|
|
.modal-info .modal-header,
|
|
.modal-info .modal-footer,
|
|
.modal-success .modal-body,
|
|
.modal-success .modal-header,
|
|
.modal-success .modal-footer,
|
|
.modal-danger .modal-body,
|
|
.modal-danger .modal-header,
|
|
.modal-danger .modal-footer {
|
|
color: rgb(232, 230, 227) !important;
|
|
}
|
|
.bg-gray {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(46, 50, 52) !important;
|
|
}
|
|
.bg-gray-light {
|
|
background-color: rgb(29, 31, 32);
|
|
}
|
|
.bg-black {
|
|
background-color: rgb(13, 14, 14) !important;
|
|
}
|
|
.bg-red,
|
|
.callout.callout-danger,
|
|
.alert-danger,
|
|
.alert-error,
|
|
.label-danger,
|
|
.modal-danger .modal-body {
|
|
background-color: rgb(162, 43, 28) !important;
|
|
}
|
|
.bg-yellow,
|
|
.callout.callout-warning,
|
|
.alert-warning,
|
|
.label-warning,
|
|
.modal-warning .modal-body {
|
|
background-color: rgb(191, 121, 10) !important;
|
|
}
|
|
.bg-aqua,
|
|
.callout.callout-info,
|
|
.alert-info,
|
|
.label-info,
|
|
.modal-info .modal-body {
|
|
background-color: rgb(0, 154, 191) !important;
|
|
}
|
|
.bg-blue {
|
|
background-color: rgb(0, 92, 146) !important;
|
|
}
|
|
.bg-light-blue,
|
|
.label-primary,
|
|
.modal-primary .modal-body {
|
|
background-color: rgb(48, 113, 150) !important;
|
|
}
|
|
.bg-green,
|
|
.callout.callout-success,
|
|
.alert-success,
|
|
.label-success,
|
|
.modal-success .modal-body {
|
|
background-color: rgb(0, 133, 72) !important;
|
|
}
|
|
.bg-navy {
|
|
background-color: rgb(0, 25, 50) !important;
|
|
}
|
|
.bg-teal {
|
|
background-color: rgb(41, 159, 159) !important;
|
|
}
|
|
.bg-olive {
|
|
background-color: rgb(49, 122, 90) !important;
|
|
}
|
|
.bg-lime {
|
|
background-color: rgb(0, 203, 118) !important;
|
|
}
|
|
.bg-orange {
|
|
background-color: rgb(188, 87, 0) !important;
|
|
}
|
|
.bg-fuchsia {
|
|
background-color: rgb(190, 12, 150) !important;
|
|
}
|
|
.bg-purple {
|
|
background-color: rgb(73, 70, 131) !important;
|
|
}
|
|
.bg-maroon {
|
|
background-color: rgb(173, 22, 77) !important;
|
|
}
|
|
.bg-gray-active {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(55, 61, 74) !important;
|
|
}
|
|
.bg-black-active {
|
|
background-color: rgb(0, 0, 0) !important;
|
|
}
|
|
.bg-red-active,
|
|
.modal-danger .modal-header,
|
|
.modal-danger .modal-footer {
|
|
background-color: rgb(169, 44, 29) !important;
|
|
}
|
|
.bg-yellow-active,
|
|
.modal-warning .modal-header,
|
|
.modal-warning .modal-footer {
|
|
background-color: rgb(175, 111, 9) !important;
|
|
}
|
|
.bg-aqua-active,
|
|
.modal-info .modal-header,
|
|
.modal-info .modal-footer {
|
|
background-color: rgb(0, 134, 166) !important;
|
|
}
|
|
.bg-blue-active {
|
|
background-color: rgb(0, 66, 106) !important;
|
|
}
|
|
.bg-light-blue-active,
|
|
.modal-primary .modal-header,
|
|
.modal-primary .modal-footer {
|
|
background-color: rgb(42, 99, 132) !important;
|
|
}
|
|
.bg-green-active,
|
|
.modal-success .modal-header,
|
|
.modal-success .modal-footer {
|
|
background-color: rgb(0, 113, 61) !important;
|
|
}
|
|
.bg-navy-active {
|
|
background-color: rgb(0, 21, 42) !important;
|
|
}
|
|
.bg-teal-active {
|
|
background-color: rgb(38, 150, 150) !important;
|
|
}
|
|
.bg-olive-active {
|
|
background-color: rgb(43, 108, 79) !important;
|
|
}
|
|
.bg-lime-active {
|
|
background-color: rgb(0, 185, 81) !important;
|
|
}
|
|
.bg-orange-active {
|
|
background-color: rgb(203, 94, 0) !important;
|
|
}
|
|
.bg-fuchsia-active {
|
|
background-color: rgb(175, 11, 138) !important;
|
|
}
|
|
.bg-purple-active {
|
|
background-color: rgb(68, 66, 122) !important;
|
|
}
|
|
.bg-maroon-active {
|
|
background-color: rgb(162, 20, 72) !important;
|
|
}
|
|
.text-red {
|
|
color: rgb(255, 26, 26) !important;
|
|
}
|
|
.text-yellow {
|
|
color: rgb(244, 165, 41) !important;
|
|
}
|
|
.text-aqua {
|
|
color: rgb(37, 212, 255) !important;
|
|
}
|
|
.text-blue {
|
|
color: rgb(76, 188, 255) !important;
|
|
}
|
|
.text-black {
|
|
color: rgb(232, 230, 227) !important;
|
|
}
|
|
.text-light-blue {
|
|
color: rgb(85, 158, 201) !important;
|
|
}
|
|
.text-green {
|
|
color: rgb(109, 255, 109) !important;
|
|
}
|
|
.text-gray {
|
|
color: rgb(207, 203, 197) !important;
|
|
}
|
|
.text-navy {
|
|
color: rgb(212, 208, 203) !important;
|
|
}
|
|
.text-teal {
|
|
color: rgb(76, 209, 209) !important;
|
|
}
|
|
.text-olive {
|
|
color: rgb(111, 198, 159) !important;
|
|
}
|
|
.text-lime {
|
|
color: rgb(26, 255, 126) !important;
|
|
}
|
|
.text-fuchsia {
|
|
color: rgb(241, 41, 196) !important;
|
|
}
|
|
.text-purple {
|
|
color: rgb(108, 131, 176) !important;
|
|
}
|
|
.text-maroon {
|
|
color: rgb(230, 58, 121) !important;
|
|
}
|
|
.text-orange {
|
|
color: rgb(255, 174, 26) !important;
|
|
}
|
|
link-muted {
|
|
color: rgb(159, 151, 138);
|
|
}
|
|
.link-muted:hover,
|
|
.link-muted:focus {
|
|
color: rgb(160, 152, 139);
|
|
}
|
|
.link-black {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.link-black:hover,
|
|
.link-black:focus {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.no-border {
|
|
border-color: currentcolor !important;
|
|
}
|
|
.no-shadow {
|
|
box-shadow: none !important;
|
|
}
|
|
.list-unstyled,
|
|
.chart-legend,
|
|
.contacts-list,
|
|
.users-list,
|
|
.mailbox-attachments {
|
|
list-style-image: none;
|
|
}
|
|
.list-group-unbordered > .list-group-item {
|
|
border-left-color: currentcolor;
|
|
border-right-color: currentcolor;
|
|
}
|
|
.bg-teal-gradient {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-image: linear-gradient(
|
|
to top,
|
|
rgb(41, 159, 159) 0%,
|
|
rgb(31, 120, 120) 100%
|
|
) !important;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.bg-light-blue-gradient {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-image: linear-gradient(to top, rgb(48, 113, 150) 0%, rgb(42, 97, 130) 100%) !important;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.bg-blue-gradient {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-image: linear-gradient(to top, rgb(0, 92, 146) 0%, rgb(0, 110, 175) 100%) !important;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.bg-aqua-gradient {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-image: linear-gradient(to top, rgb(0, 154, 191) 0%, rgb(0, 154, 192) 100%) !important;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.bg-yellow-gradient {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-image: linear-gradient(to top, rgb(191, 121, 10) 0%, rgb(144, 91, 7) 100%) !important;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.bg-purple-gradient {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-image: linear-gradient(to top, rgb(73, 70, 131) 0%, rgb(56, 53, 99) 100%) !important;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.bg-green-gradient {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-image: linear-gradient(to top, rgb(0, 133, 72) 0%, rgb(0, 162, 87) 100%) !important;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.bg-red-gradient {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-image: linear-gradient(to top, rgb(162, 43, 28) 0%, rgb(136, 36, 24) 100%) !important;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.bg-black-gradient {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-image: linear-gradient(to top, rgb(13, 14, 14) 0%, rgb(32, 35, 36) 100%) !important;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.bg-maroon-gradient {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-image: linear-gradient(to top, rgb(173, 22, 77) 0%, rgb(161, 20, 71) 100%) !important;
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.list-header {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.list-seperator {
|
|
background-color: rgb(30, 33, 34);
|
|
background-image: none;
|
|
}
|
|
.list-link > a {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.list-link > a:hover {
|
|
color: rgb(211, 207, 201);
|
|
}
|
|
.user-block .description {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.img-bordered {
|
|
border-color: rgb(59, 64, 66);
|
|
}
|
|
.img-bordered-sm {
|
|
border-color: rgb(59, 64, 66);
|
|
}
|
|
.attachment-block {
|
|
border-color: rgb(51, 55, 57);
|
|
background-color: rgb(29, 31, 32);
|
|
background-image: none;
|
|
}
|
|
.attachment-block .attachment-text {
|
|
color: rgb(178, 172, 162);
|
|
}
|
|
.ui-helper-hidden-accessible {
|
|
border-color: currentcolor;
|
|
}
|
|
.sort-highlight {
|
|
background-color: rgb(30, 33, 34);
|
|
background-image: none;
|
|
border-color: rgb(58, 62, 65);
|
|
}
|
|
#red .slider-selection {
|
|
background-color: rgb(151, 27, 9);
|
|
background-image: none;
|
|
}
|
|
#blue .slider-selection {
|
|
background-color: rgb(48, 113, 150);
|
|
background-image: none;
|
|
}
|
|
#green .slider-selection {
|
|
background-color: rgb(0, 133, 72);
|
|
background-image: none;
|
|
}
|
|
#yellow .slider-selection {
|
|
background-color: rgb(191, 121, 10);
|
|
background-image: none;
|
|
}
|
|
#aqua .slider-selection {
|
|
background-color: rgb(0, 154, 191);
|
|
background-image: none;
|
|
}
|
|
#purple .slider-selection {
|
|
background-color: rgb(118, 34, 146);
|
|
background-image: none;
|
|
}
|
|
.select2-container .select2-search--inline .select2-search__field {
|
|
border-color: currentcolor;
|
|
}
|
|
|
|
.select2-results__options {
|
|
list-style-image: none;
|
|
}
|
|
.select2-container--open .select2-dropdown--above {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.select2-container--open .select2-dropdown--below {
|
|
border-top-color: currentcolor;
|
|
}
|
|
.select2-close-mask {
|
|
border-color: currentcolor;
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.select2-hidden-accessible {
|
|
border-color: currentcolor !important;
|
|
}
|
|
.select2-container--default .select2-selection--single {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(72, 78, 81);
|
|
}
|
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.select2-container--default .select2-selection--single .select2-selection__placeholder {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.select2-container--default .select2-selection--single .select2-selection__arrow b {
|
|
border-color: rgb(82, 88, 92) transparent transparent;
|
|
}
|
|
.select2-container--default.select2-container--disabled .select2-selection--single {
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.select2-container--default.select2-container--open
|
|
.select2-selection--single
|
|
.select2-selection__arrow
|
|
b {
|
|
border-color: transparent transparent rgb(82, 88, 92);
|
|
}
|
|
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
|
list-style-image: none;
|
|
}
|
|
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
|
list-style-image: none;
|
|
}
|
|
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.select2-container--default .select2-search--dropdown .select2-search__field {
|
|
border-color: rgb(72, 78, 81);
|
|
}
|
|
.select2-container--default .select2-search--inline .select2-search__field {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
border-color: currentcolor;
|
|
outline-color: currentcolor;
|
|
box-shadow: none;
|
|
}
|
|
.select2-container--classic .select2-selection--single {
|
|
background-color: rgb(29, 31, 32);
|
|
border-color: rgb(72, 78, 81);
|
|
outline-color: currentcolor;
|
|
background-image: linear-gradient(rgb(24, 26, 27) 50%, rgb(34, 36, 38) 100%);
|
|
}
|
|
.select2-container--classic .select2-selection--single:focus {
|
|
border-color: rgb(4, 60, 150);
|
|
}
|
|
.select2-container--classic .select2-selection--single .select2-selection__rendered {
|
|
color: rgb(189, 183, 175);
|
|
}
|
|
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.select2-container--classic .select2-selection--single .select2-selection__arrow {
|
|
background-color: rgb(43, 47, 49);
|
|
border-color: currentcolor currentcolor currentcolor rgb(72, 78, 81);
|
|
background-image: linear-gradient(rgb(34, 36, 38) 50%, rgb(53, 57, 59) 100%);
|
|
}
|
|
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
|
|
border-color: rgb(82, 88, 92) transparent transparent;
|
|
}
|
|
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
|
border-color: currentcolor rgb(72, 78, 81) currentcolor currentcolor;
|
|
}
|
|
.select2-container--classic.select2-container--open .select2-selection--single {
|
|
border-color: rgb(4, 60, 150);
|
|
}
|
|
.select2-container--classic.select2-container--open
|
|
.select2-selection--single
|
|
.select2-selection__arrow {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
border-color: currentcolor;
|
|
}
|
|
.select2-container--classic.select2-container--open
|
|
.select2-selection--single
|
|
.select2-selection__arrow
|
|
b {
|
|
border-color: transparent transparent rgb(82, 88, 92);
|
|
}
|
|
.select2-container--classic.select2-container--open.select2-container--above
|
|
.select2-selection--single {
|
|
border-top-color: currentcolor;
|
|
background-image: linear-gradient(rgb(24, 26, 27) 0%, rgb(34, 36, 38) 50%);
|
|
}
|
|
.select2-container--classic.select2-container--open.select2-container--below
|
|
.select2-selection--single {
|
|
border-bottom-color: currentcolor;
|
|
background-image: linear-gradient(rgb(34, 36, 38) 50%, rgb(24, 26, 27) 100%);
|
|
}
|
|
.select2-container--classic .select2-selection--multiple {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: rgb(72, 78, 81);
|
|
outline-color: currentcolor;
|
|
}
|
|
.select2-container--classic .select2-selection--multiple:focus {
|
|
border-color: rgb(4, 60, 150);
|
|
}
|
|
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
|
|
list-style-image: none;
|
|
}
|
|
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
|
|
background-color: rgb(39, 43, 44);
|
|
border-color: rgb(72, 78, 81);
|
|
}
|
|
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
|
|
color: rgb(157, 148, 136);
|
|
}
|
|
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
|
|
color: rgb(178, 172, 162);
|
|
}
|
|
.select2-container--classic.select2-container--open .select2-selection--multiple {
|
|
border-color: rgb(4, 60, 150);
|
|
}
|
|
.select2-container--classic.select2-container--open.select2-container--above
|
|
.select2-selection--multiple {
|
|
border-top-color: currentcolor;
|
|
}
|
|
.select2-container--classic.select2-container--open.select2-container--below
|
|
.select2-selection--multiple {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.select2-container--classic .select2-search--dropdown .select2-search__field {
|
|
border-color: rgb(72, 78, 81);
|
|
outline-color: currentcolor;
|
|
}
|
|
.select2-container--classic .select2-search--inline .select2-search__field {
|
|
outline-color: currentcolor;
|
|
box-shadow: none;
|
|
}
|
|
.select2-container--classic .select2-dropdown {
|
|
background-color: rgb(24, 26, 27);
|
|
border-color: transparent;
|
|
}
|
|
.select2-container--classic .select2-dropdown--above {
|
|
border-bottom-color: currentcolor;
|
|
}
|
|
.select2-container--classic .select2-dropdown--below {
|
|
border-top-color: currentcolor;
|
|
}
|
|
.select2-container--classic .select2-results__option[aria-disabled="true"] {
|
|
color: rgb(152, 143, 129);
|
|
}
|
|
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
|
|
background-color: rgb(33, 82, 162);
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.select2-container--classic.select2-container--open .select2-dropdown {
|
|
border-color: rgb(4, 60, 150);
|
|
}
|
|
.alSpinner {
|
|
border-color: rgb(66, 71, 74) transparent rgb(66, 71, 74) rgb(66, 71, 74);
|
|
}
|
|
.chartjs-tooltip {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
}
|
|
.chartjs-tooltip .arrow {
|
|
border-color: transparent;
|
|
}
|
|
.chartjs-tooltip.bottom .arrow {
|
|
border-top-color: rgba(140, 130, 115, 0.8);
|
|
}
|
|
.chartjs-tooltip.top .arrow {
|
|
border-bottom-color: rgba(140, 130, 115, 0.8);
|
|
}
|
|
.chartjs-tooltip.right.center .arrow {
|
|
border-left-color: rgba(140, 130, 115, 0.8);
|
|
}
|
|
.chartjs-tooltip.left.center .arrow {
|
|
border-right-color: rgba(140, 130, 115, 0.8);
|
|
}
|
|
.text-underline {
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.sidebar-toggle-svg {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgba(0, 0, 0, 0);
|
|
background-image: none;
|
|
}
|
|
.sidebar-toggle-svg:hover {
|
|
color: rgb(226, 224, 220);
|
|
background-color: rgb(43, 102, 135);
|
|
background-image: none;
|
|
}
|
|
.main-header .navbar .nav > li > a,
|
|
.main-header .navbar .nav > li > .navbar-text {
|
|
color: rgb(232, 230, 227);
|
|
max-height: 50px;
|
|
}
|
|
.main-header .navbar .nav > li > a:hover,
|
|
.main-header .navbar .nav > li > a:active,
|
|
.main-header .navbar .nav > li > a:focus,
|
|
.main-header .navbar .nav .open > a,
|
|
.main-header .navbar .nav .open > a:hover,
|
|
.main-header .navbar .nav .open > a:focus {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
color: rgb(226, 224, 220);
|
|
}
|
|
.main-header .navbar .sidebar-toggle {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.main-header .navbar .sidebar-toggle:hover {
|
|
color: rgb(226, 224, 220);
|
|
background-color: rgb(43, 102, 135);
|
|
}
|
|
@media (max-width: 767px) {
|
|
.main-header .navbar .dropdown-menu li.divider {
|
|
background-color: rgba(24, 26, 27, 0.1);
|
|
}
|
|
.main-header .navbar .dropdown-menu li a {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.main-header .navbar .dropdown-menu li a:hover {
|
|
background-color: rgb(43, 102, 135);
|
|
}
|
|
}
|
|
.main-header .logo {
|
|
background-color: rgb(43, 102, 135);
|
|
color: rgb(232, 230, 227);
|
|
border-bottom-color: transparent;
|
|
}
|
|
.main-header .logo:hover {
|
|
background-color: rgb(42, 99, 132);
|
|
}
|
|
.content-header {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.wrapper,
|
|
.main-sidebar,
|
|
.left-side {
|
|
background-color: rgb(27, 36, 40);
|
|
}
|
|
.user-panel > .info,
|
|
.user-panel > .info > a {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
.sidebar-menu > li.header {
|
|
color: rgb(173, 166, 156);
|
|
background-color: rgb(21, 27, 30);
|
|
}
|
|
.sidebar-menu > li > a {
|
|
border-left: 3px solid transparent;
|
|
}
|
|
.sidebar-menu > li:hover > a,
|
|
.sidebar-menu > li > a:focus,
|
|
.sidebar-menu > li.active > a {
|
|
color: rgb(232, 230, 227);
|
|
background-color: rgb(24, 32, 35);
|
|
border-left-color: rgb(44, 103, 137);
|
|
}
|
|
.sidebar-menu > li > .treeview-menu {
|
|
background-color: rgb(35, 47, 52);
|
|
}
|
|
.sidebar a {
|
|
color: rgb(194, 189, 181);
|
|
}
|
|
.sidebar a:hover {
|
|
text-decoration-color: currentcolor;
|
|
}
|
|
.treeview-menu > li > a {
|
|
color: rgb(170, 162, 151);
|
|
}
|
|
.treeview-menu > li.active > a,
|
|
.treeview-menu > li > a:hover,
|
|
.treeview-menu > li > a:focus {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
/* "Donate" sidebar button */
|
|
.sidebar-menu > li.menu-donate:hover > a,
|
|
.sidebar-menu > li.menu-donate > a:focus {
|
|
background-color: #2b6687;
|
|
border-left-color: rgb(232, 230, 227);
|
|
}
|
|
|
|
.sidebar-form {
|
|
border-color: rgb(118, 109, 97);
|
|
}
|
|
.sidebar-form input[type="text"],
|
|
.sidebar-form .btn {
|
|
box-shadow: none;
|
|
background-color: rgb(44, 58, 64);
|
|
border-color: transparent;
|
|
}
|
|
.sidebar-form input[type="text"] {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.sidebar-form input[type="text"]:focus,
|
|
.sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
|
background-color: rgb(24, 26, 27);
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
|
border-left-color: rgb(48, 52, 54);
|
|
}
|
|
.sidebar-form .btn {
|
|
color: rgb(168, 160, 149);
|
|
}
|
|
.layout-top-nav .main-header > .logo {
|
|
background-color: rgb(48, 113, 150);
|
|
color: rgb(232, 230, 227);
|
|
border-bottom-color: transparent;
|
|
}
|
|
.layout-top-nav .main-header > .logo:hover {
|
|
background-color: rgb(47, 110, 147);
|
|
}
|
|
.not-used {
|
|
background-color: rgb(34, 36, 38);
|
|
}
|
|
.not-used:hover {
|
|
background-color: rgb(57, 61, 64);
|
|
}
|
|
.used {
|
|
background-color: rgb(24, 26, 27);
|
|
}
|
|
.used:hover {
|
|
background-color: rgb(43, 47, 49);
|
|
}
|
|
.graphs-grid {
|
|
background-color: rgba(232, 230, 227, 0.1);
|
|
}
|
|
.graphs-ticks {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
|
|
.text-green-light {
|
|
color: rgb(140, 255, 26) !important;
|
|
}
|
|
.text-vivid-blue {
|
|
color: rgb(61, 150, 255) !important;
|
|
}
|
|
td.highlight {
|
|
background-color: rgba(204, 163, 0, 0.33);
|
|
}
|
|
.network-never {
|
|
background-color: rgb(102, 25, 0);
|
|
}
|
|
.network-recent {
|
|
background-color: rgb(32, 71, 0);
|
|
}
|
|
.network-old {
|
|
background-color: rgb(70, 70, 0);
|
|
}
|
|
.network-older {
|
|
background-color: rgb(74, 39, 0);
|
|
}
|
|
.network-gradient {
|
|
background-image: linear-gradient(to right, rgb(32, 71, 0) 0%, rgb(70, 70, 0) 100%);
|
|
}
|
|
[class*="icheck-"] > input:first-child + input[type="hidden"] + label::before,
|
|
[class*="icheck-"] > input:first-child + label::before {
|
|
border-color: rgb(62, 67, 70);
|
|
}
|
|
[class*="icheck-"] > input:first-child:checked + input[type="hidden"] + label::after,
|
|
[class*="icheck-"] > input:first-child:checked + label::after {
|
|
border-color: currentcolor rgb(48, 52, 54) rgb(48, 52, 54) currentcolor;
|
|
}
|
|
[class*="icheck-"] > input:first-child:disabled + input[type="hidden"] + label,
|
|
[class*="icheck-"] > input:first-child:disabled + input[type="hidden"] + label::before,
|
|
[class*="icheck-"] > input:first-child:disabled + label,
|
|
[class*="icheck-"] > input:first-child:disabled + label::before {
|
|
box-shadow: none;
|
|
}
|
|
.icheck-primary
|
|
> input:first-child:not(:checked):not(:disabled):hover
|
|
+ input[type="hidden"]
|
|
+ label::before,
|
|
.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before {
|
|
border-color: rgb(42, 100, 150);
|
|
}
|
|
.icheck-primary > input:first-child:checked + input[type="hidden"] + label::before,
|
|
.icheck-primary > input:first-child:checked + label::before {
|
|
background-color: rgb(41, 98, 146);
|
|
border-color: rgb(42, 100, 150);
|
|
}
|
|
|
|
/* Override Style */
|
|
.vimvixen-hint {
|
|
background-color: #7b5300 !important;
|
|
border-color: #d8b013 !important;
|
|
color: #f3e8c8 !important;
|
|
}
|
|
|
|
/* Used in debug log page */
|
|
.log-red {
|
|
color: #e22;
|
|
}
|
|
.log-green {
|
|
color: #0b0;
|
|
}
|
|
.log-yellow {
|
|
color: #fb0;
|
|
}
|
|
.log-blue {
|
|
color: #08c;
|
|
}
|
|
.log-purple {
|
|
color: #c6f;
|
|
}
|
|
.log-cyan {
|
|
color: #0df;
|
|
}
|
|
.log-gray {
|
|
color: #999;
|
|
}
|