first commit
This commit is contained in:
@@ -0,0 +1,251 @@
|
||||
.checkbox {
|
||||
padding-left: 20px;
|
||||
}
|
||||
.checkbox label {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
position: relative;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.checkbox label::before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
width: 17px;
|
||||
height: 17px;
|
||||
left: 0;
|
||||
margin-left: -20px;
|
||||
border: 1px solid #cccccc;
|
||||
border-radius: 3px;
|
||||
background-color: #fff;
|
||||
-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
|
||||
-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
|
||||
transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
|
||||
}
|
||||
.checkbox label::after {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
left: 0;
|
||||
top: 0;
|
||||
margin-left: -20px;
|
||||
padding-left: 3px;
|
||||
padding-top: 1px;
|
||||
font-size: 11px;
|
||||
color: #555555;
|
||||
}
|
||||
.checkbox input[type="checkbox"],
|
||||
.checkbox input[type="radio"] {
|
||||
opacity: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
.checkbox input[type="checkbox"]:focus + label::before,
|
||||
.checkbox input[type="radio"]:focus + label::before {
|
||||
outline: thin dotted;
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
.checkbox input[type="checkbox"]:checked + label::after,
|
||||
.checkbox input[type="radio"]:checked + label::after {
|
||||
font-family: "FontAwesome";
|
||||
content: "\f00c";
|
||||
}
|
||||
.checkbox input[type="checkbox"]:disabled + label,
|
||||
.checkbox input[type="radio"]:disabled + label {
|
||||
opacity: 0.65;
|
||||
}
|
||||
.checkbox input[type="checkbox"]:disabled + label::before,
|
||||
.checkbox input[type="radio"]:disabled + label::before {
|
||||
background-color: #eeeeee;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.checkbox.checkbox-circle label::before {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.checkbox.checkbox-inline {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.checkbox-primary input[type="checkbox"]:checked + label::before,
|
||||
.checkbox-primary input[type="radio"]:checked + label::before {
|
||||
background-color: #337ab7;
|
||||
border-color: #337ab7;
|
||||
}
|
||||
.checkbox-primary input[type="checkbox"]:checked + label::after,
|
||||
.checkbox-primary input[type="radio"]:checked + label::after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.checkbox-danger input[type="checkbox"]:checked + label::before,
|
||||
.checkbox-danger input[type="radio"]:checked + label::before {
|
||||
background-color: #d9534f;
|
||||
border-color: #d9534f;
|
||||
}
|
||||
.checkbox-danger input[type="checkbox"]:checked + label::after,
|
||||
.checkbox-danger input[type="radio"]:checked + label::after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.checkbox-info input[type="checkbox"]:checked + label::before,
|
||||
.checkbox-info input[type="radio"]:checked + label::before {
|
||||
background-color: #5bc0de;
|
||||
border-color: #5bc0de;
|
||||
}
|
||||
.checkbox-info input[type="checkbox"]:checked + label::after,
|
||||
.checkbox-info input[type="radio"]:checked + label::after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.checkbox-warning input[type="checkbox"]:checked + label::before,
|
||||
.checkbox-warning input[type="radio"]:checked + label::before {
|
||||
background-color: #f0ad4e;
|
||||
border-color: #f0ad4e;
|
||||
}
|
||||
.checkbox-warning input[type="checkbox"]:checked + label::after,
|
||||
.checkbox-warning input[type="radio"]:checked + label::after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.checkbox-success input[type="checkbox"]:checked + label::before,
|
||||
.checkbox-success input[type="radio"]:checked + label::before {
|
||||
background-color: #5cb85c;
|
||||
border-color: #5cb85c;
|
||||
}
|
||||
.checkbox-success input[type="checkbox"]:checked + label::after,
|
||||
.checkbox-success input[type="radio"]:checked + label::after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.radio {
|
||||
padding-left: 20px;
|
||||
}
|
||||
.radio label {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
position: relative;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.radio label::before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
width: 17px;
|
||||
height: 17px;
|
||||
left: 0;
|
||||
margin-left: -20px;
|
||||
border: 1px solid #cccccc;
|
||||
border-radius: 50%;
|
||||
background-color: #fff;
|
||||
-webkit-transition: border 0.15s ease-in-out;
|
||||
-o-transition: border 0.15s ease-in-out;
|
||||
transition: border 0.15s ease-in-out;
|
||||
}
|
||||
.radio label::after {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
content: " ";
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
left: 3px;
|
||||
top: 3px;
|
||||
margin-left: -20px;
|
||||
border-radius: 50%;
|
||||
background-color: #555555;
|
||||
-webkit-transform: scale(0, 0);
|
||||
-ms-transform: scale(0, 0);
|
||||
-o-transform: scale(0, 0);
|
||||
transform: scale(0, 0);
|
||||
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
|
||||
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
|
||||
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
|
||||
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
|
||||
}
|
||||
.radio input[type="radio"] {
|
||||
opacity: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
.radio input[type="radio"]:focus + label::before {
|
||||
outline: thin dotted;
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
.radio input[type="radio"]:checked + label::after {
|
||||
-webkit-transform: scale(1, 1);
|
||||
-ms-transform: scale(1, 1);
|
||||
-o-transform: scale(1, 1);
|
||||
transform: scale(1, 1);
|
||||
}
|
||||
.radio input[type="radio"]:disabled + label {
|
||||
opacity: 0.65;
|
||||
}
|
||||
.radio input[type="radio"]:disabled + label::before {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.radio.radio-inline {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.radio-primary input[type="radio"] + label::after {
|
||||
background-color: #337ab7;
|
||||
}
|
||||
.radio-primary input[type="radio"]:checked + label::before {
|
||||
border-color: #337ab7;
|
||||
}
|
||||
.radio-primary input[type="radio"]:checked + label::after {
|
||||
background-color: #337ab7;
|
||||
}
|
||||
|
||||
.radio-danger input[type="radio"] + label::after {
|
||||
background-color: #d9534f;
|
||||
}
|
||||
.radio-danger input[type="radio"]:checked + label::before {
|
||||
border-color: #d9534f;
|
||||
}
|
||||
.radio-danger input[type="radio"]:checked + label::after {
|
||||
background-color: #d9534f;
|
||||
}
|
||||
|
||||
.radio-info input[type="radio"] + label::after {
|
||||
background-color: #5bc0de;
|
||||
}
|
||||
.radio-info input[type="radio"]:checked + label::before {
|
||||
border-color: #5bc0de;
|
||||
}
|
||||
.radio-info input[type="radio"]:checked + label::after {
|
||||
background-color: #5bc0de;
|
||||
}
|
||||
|
||||
.radio-warning input[type="radio"] + label::after {
|
||||
background-color: #f0ad4e;
|
||||
}
|
||||
.radio-warning input[type="radio"]:checked + label::before {
|
||||
border-color: #f0ad4e;
|
||||
}
|
||||
.radio-warning input[type="radio"]:checked + label::after {
|
||||
background-color: #f0ad4e;
|
||||
}
|
||||
|
||||
.radio-success input[type="radio"] + label::after {
|
||||
background-color: #5cb85c;
|
||||
}
|
||||
.radio-success input[type="radio"]:checked + label::before {
|
||||
border-color: #5cb85c;
|
||||
}
|
||||
.radio-success input[type="radio"]:checked + label::after {
|
||||
background-color: #5cb85c;
|
||||
}
|
||||
|
||||
input[type="checkbox"].styled:checked + label:after,
|
||||
input[type="radio"].styled:checked + label:after {
|
||||
font-family: 'FontAwesome';
|
||||
content: "\f00c";
|
||||
}
|
||||
input[type="checkbox"] .styled:checked + label::before,
|
||||
input[type="radio"] .styled:checked + label::before {
|
||||
color: #fff;
|
||||
}
|
||||
input[type="checkbox"] .styled:checked + label::after,
|
||||
input[type="radio"] .styled:checked + label::after {
|
||||
color: #fff;
|
||||
}
|
||||
Vendored
+263
@@ -0,0 +1,263 @@
|
||||
/*!
|
||||
* Bootstrap-select v1.7.2 (http://silviomoreto.github.io/bootstrap-select)
|
||||
*
|
||||
* Copyright 2013-2015 bootstrap-select
|
||||
* Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
|
||||
*/
|
||||
|
||||
.bootstrap-select {
|
||||
width: 220px \0;
|
||||
/*IE9 and below*/
|
||||
}
|
||||
.bootstrap-select > .dropdown-toggle {
|
||||
width: 100%;
|
||||
padding-right: 25px;
|
||||
}
|
||||
.has-error .bootstrap-select .dropdown-toggle,
|
||||
.error .bootstrap-select .dropdown-toggle {
|
||||
border-color: #b94a48;
|
||||
}
|
||||
.bootstrap-select.fit-width {
|
||||
width: auto !important;
|
||||
}
|
||||
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
|
||||
width: 220px;
|
||||
}
|
||||
.bootstrap-select .dropdown-toggle:focus {
|
||||
outline: thin dotted #333333 !important;
|
||||
outline: 5px auto -webkit-focus-ring-color !important;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
.bootstrap-select.form-control {
|
||||
margin-bottom: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
}
|
||||
.bootstrap-select.form-control:not([class*="col-"]) {
|
||||
width: 100%;
|
||||
}
|
||||
.bootstrap-select.form-control.input-group-btn {
|
||||
z-index: auto;
|
||||
}
|
||||
.bootstrap-select.btn-group:not(.input-group-btn),
|
||||
.bootstrap-select.btn-group[class*="col-"] {
|
||||
float: none;
|
||||
display: inline-block;
|
||||
margin-left: 0;
|
||||
}
|
||||
.bootstrap-select.btn-group.dropdown-menu-right,
|
||||
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
|
||||
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
|
||||
float: right;
|
||||
}
|
||||
.form-inline .bootstrap-select.btn-group,
|
||||
.form-horizontal .bootstrap-select.btn-group,
|
||||
.form-group .bootstrap-select.btn-group {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.form-group-lg .bootstrap-select.btn-group.form-control,
|
||||
.form-group-sm .bootstrap-select.btn-group.form-control {
|
||||
padding: 0;
|
||||
}
|
||||
.form-inline .bootstrap-select.btn-group .form-control {
|
||||
width: 100%;
|
||||
}
|
||||
.bootstrap-select.btn-group.disabled,
|
||||
.bootstrap-select.btn-group > .disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.bootstrap-select.btn-group.disabled:focus,
|
||||
.bootstrap-select.btn-group > .disabled:focus {
|
||||
outline: none !important;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-toggle .caret {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 12px;
|
||||
margin-top: -2px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
|
||||
width: 100%;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu {
|
||||
min-width: 100%;
|
||||
z-index: 1035;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu.inner {
|
||||
position: static;
|
||||
float: none;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border-radius: 0;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu li {
|
||||
position: relative;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu li.active small {
|
||||
color: #fff;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu li a {
|
||||
cursor: pointer;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu li a.opt {
|
||||
position: relative;
|
||||
padding-left: 2.25em;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
|
||||
display: none;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu li a span.text {
|
||||
display: inline-block;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu li small {
|
||||
padding-left: 0.5em;
|
||||
}
|
||||
.bootstrap-select.btn-group .dropdown-menu .notify {
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
width: 96%;
|
||||
margin: 0 2%;
|
||||
min-height: 26px;
|
||||
padding: 3px 5px;
|
||||
background: #f5f5f5;
|
||||
border: 1px solid #e3e3e3;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
||||
pointer-events: none;
|
||||
opacity: 0.9;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.bootstrap-select.btn-group .no-results {
|
||||
padding: 3px;
|
||||
background: #f5f5f5;
|
||||
margin: 0 5px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
|
||||
position: static;
|
||||
}
|
||||
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
|
||||
position: static;
|
||||
top: auto;
|
||||
margin-top: -1px;
|
||||
}
|
||||
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
right: 15px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
|
||||
margin-right: 34px;
|
||||
}
|
||||
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
|
||||
z-index: 1036;
|
||||
}
|
||||
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
|
||||
content: '';
|
||||
border-left: 7px solid transparent;
|
||||
border-right: 7px solid transparent;
|
||||
border-bottom: 7px solid rgba(204, 204, 204, 0.2);
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 9px;
|
||||
display: none;
|
||||
}
|
||||
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
|
||||
content: '';
|
||||
border-left: 6px solid transparent;
|
||||
border-right: 6px solid transparent;
|
||||
border-bottom: 6px solid white;
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 10px;
|
||||
display: none;
|
||||
}
|
||||
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
|
||||
bottom: auto;
|
||||
top: -3px;
|
||||
border-top: 7px solid rgba(204, 204, 204, 0.2);
|
||||
border-bottom: 0;
|
||||
}
|
||||
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
|
||||
bottom: auto;
|
||||
top: -3px;
|
||||
border-top: 6px solid white;
|
||||
border-bottom: 0;
|
||||
}
|
||||
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
|
||||
right: 12px;
|
||||
left: auto;
|
||||
}
|
||||
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
|
||||
right: 13px;
|
||||
left: auto;
|
||||
}
|
||||
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
|
||||
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
|
||||
display: block;
|
||||
}
|
||||
.bs-searchbox,
|
||||
.bs-actionsbox,
|
||||
.bs-donebutton {
|
||||
padding: 4px 8px;
|
||||
}
|
||||
.bs-actionsbox {
|
||||
float: left;
|
||||
width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.bs-actionsbox .btn-group button {
|
||||
width: 50%;
|
||||
}
|
||||
.bs-donebutton {
|
||||
float: left;
|
||||
width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.bs-donebutton .btn-group button {
|
||||
width: 100%;
|
||||
}
|
||||
.bs-searchbox + .bs-actionsbox {
|
||||
padding: 0 8px 4px;
|
||||
}
|
||||
.bs-searchbox .form-control {
|
||||
margin-bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
select.bs-select-hidden,
|
||||
select.selectpicker {
|
||||
display: none !important;
|
||||
}
|
||||
select.mobile-device {
|
||||
position: absolute !important;
|
||||
top: 0;
|
||||
left: 0;
|
||||
display: block !important;
|
||||
width: 100%;
|
||||
height: 100% !important;
|
||||
opacity: 0;
|
||||
}
|
||||
/*# sourceMappingURL=bootstrap-select.css.map */
|
||||
Vendored
+147
@@ -0,0 +1,147 @@
|
||||
/*
|
||||
* Social Buttons for Bootstrap
|
||||
*
|
||||
* Copyright 2013-2015 Panayiotis Lipiridis
|
||||
* Licensed under the MIT License
|
||||
*
|
||||
* https://github.com/lipis/bootstrap-social
|
||||
*/
|
||||
|
||||
.btn-social{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-social>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
|
||||
.btn-social.btn-lg{padding-left:61px}.btn-social.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em}
|
||||
.btn-social.btn-sm{padding-left:38px}.btn-social.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em}
|
||||
.btn-social.btn-xs{padding-left:30px}.btn-social.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em}
|
||||
.btn-social-icon{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;height:34px;width:34px;padding:0}.btn-social-icon>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
|
||||
.btn-social-icon.btn-lg{padding-left:61px}.btn-social-icon.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em}
|
||||
.btn-social-icon.btn-sm{padding-left:38px}.btn-social-icon.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em}
|
||||
.btn-social-icon.btn-xs{padding-left:30px}.btn-social-icon.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em}
|
||||
.btn-social-icon>:first-child{border:none;text-align:center;width:100% !important}
|
||||
.btn-social-icon.btn-lg{height:45px;width:45px;padding-left:0;padding-right:0}
|
||||
.btn-social-icon.btn-sm{height:30px;width:30px;padding-left:0;padding-right:0}
|
||||
.btn-social-icon.btn-xs{height:22px;width:22px;padding-left:0;padding-right:0}
|
||||
.btn-adn{color:#fff;background-color:#d87a68;border-color:rgba(0,0,0,0.2)}.btn-adn:focus,.btn-adn.focus{color:#fff;background-color:#ce563f;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-adn:hover{color:#fff;background-color:#ce563f;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-adn:active,.btn-adn.active,.open>.dropdown-toggle.btn-adn{color:#fff;background-color:#ce563f;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#b94630;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-adn:active,.btn-adn.active,.open>.dropdown-toggle.btn-adn{background-image:none}
|
||||
.btn-adn.disabled,.btn-adn[disabled],fieldset[disabled] .btn-adn,.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,.btn-adn.disabled:active,.btn-adn[disabled]:active,fieldset[disabled] .btn-adn:active,.btn-adn.disabled.active,.btn-adn[disabled].active,fieldset[disabled] .btn-adn.active{background-color:#d87a68;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-adn .badge{color:#d87a68;background-color:#fff}
|
||||
.btn-bitbucket{color:#fff;background-color:#205081;border-color:rgba(0,0,0,0.2)}.btn-bitbucket:focus,.btn-bitbucket.focus{color:#fff;background-color:#163758;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-bitbucket:hover{color:#fff;background-color:#163758;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-bitbucket:active,.btn-bitbucket.active,.open>.dropdown-toggle.btn-bitbucket{color:#fff;background-color:#163758;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#0f253c;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-bitbucket:active,.btn-bitbucket.active,.open>.dropdown-toggle.btn-bitbucket{background-image:none}
|
||||
.btn-bitbucket.disabled,.btn-bitbucket[disabled],fieldset[disabled] .btn-bitbucket,.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,.btn-bitbucket.disabled:active,.btn-bitbucket[disabled]:active,fieldset[disabled] .btn-bitbucket:active,.btn-bitbucket.disabled.active,.btn-bitbucket[disabled].active,fieldset[disabled] .btn-bitbucket.active{background-color:#205081;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-bitbucket .badge{color:#205081;background-color:#fff}
|
||||
.btn-dropbox{color:#fff;background-color:#1087dd;border-color:rgba(0,0,0,0.2)}.btn-dropbox:focus,.btn-dropbox.focus{color:#fff;background-color:#0d6aad;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-dropbox:hover{color:#fff;background-color:#0d6aad;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-dropbox:active,.btn-dropbox.active,.open>.dropdown-toggle.btn-dropbox{color:#fff;background-color:#0d6aad;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#0a568c;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-dropbox:active,.btn-dropbox.active,.open>.dropdown-toggle.btn-dropbox{background-image:none}
|
||||
.btn-dropbox.disabled,.btn-dropbox[disabled],fieldset[disabled] .btn-dropbox,.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,.btn-dropbox.disabled:active,.btn-dropbox[disabled]:active,fieldset[disabled] .btn-dropbox:active,.btn-dropbox.disabled.active,.btn-dropbox[disabled].active,fieldset[disabled] .btn-dropbox.active{background-color:#1087dd;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-dropbox .badge{color:#1087dd;background-color:#fff}
|
||||
.btn-facebook{color:#fff;background-color:#3b5998;border-color:rgba(0,0,0,0.2)}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-facebook:hover{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#23345a;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{background-image:none}
|
||||
.btn-facebook.disabled,.btn-facebook[disabled],fieldset[disabled] .btn-facebook,.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,.btn-facebook.disabled:active,.btn-facebook[disabled]:active,fieldset[disabled] .btn-facebook:active,.btn-facebook.disabled.active,.btn-facebook[disabled].active,fieldset[disabled] .btn-facebook.active{background-color:#3b5998;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-facebook .badge{color:#3b5998;background-color:#fff}
|
||||
.btn-flickr{color:#fff;background-color:#ff0084;border-color:rgba(0,0,0,0.2)}.btn-flickr:focus,.btn-flickr.focus{color:#fff;background-color:#cc006a;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-flickr:hover{color:#fff;background-color:#cc006a;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-flickr:active,.btn-flickr.active,.open>.dropdown-toggle.btn-flickr{color:#fff;background-color:#cc006a;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#a80057;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-flickr:active,.btn-flickr.active,.open>.dropdown-toggle.btn-flickr{background-image:none}
|
||||
.btn-flickr.disabled,.btn-flickr[disabled],fieldset[disabled] .btn-flickr,.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,.btn-flickr.disabled:active,.btn-flickr[disabled]:active,fieldset[disabled] .btn-flickr:active,.btn-flickr.disabled.active,.btn-flickr[disabled].active,fieldset[disabled] .btn-flickr.active{background-color:#ff0084;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-flickr .badge{color:#ff0084;background-color:#fff}
|
||||
.btn-foursquare{color:#fff;background-color:#f94877;border-color:rgba(0,0,0,0.2)}.btn-foursquare:focus,.btn-foursquare.focus{color:#fff;background-color:#f71752;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-foursquare:hover{color:#fff;background-color:#f71752;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-foursquare:active,.btn-foursquare.active,.open>.dropdown-toggle.btn-foursquare{color:#fff;background-color:#f71752;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#e30742;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-foursquare:active,.btn-foursquare.active,.open>.dropdown-toggle.btn-foursquare{background-image:none}
|
||||
.btn-foursquare.disabled,.btn-foursquare[disabled],fieldset[disabled] .btn-foursquare,.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,.btn-foursquare.disabled:active,.btn-foursquare[disabled]:active,fieldset[disabled] .btn-foursquare:active,.btn-foursquare.disabled.active,.btn-foursquare[disabled].active,fieldset[disabled] .btn-foursquare.active{background-color:#f94877;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-foursquare .badge{color:#f94877;background-color:#fff}
|
||||
.btn-github{color:#fff;background-color:#444;border-color:rgba(0,0,0,0.2)}.btn-github:focus,.btn-github.focus{color:#fff;background-color:#2b2b2b;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-github:hover{color:#fff;background-color:#2b2b2b;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-github:active,.btn-github.active,.open>.dropdown-toggle.btn-github{color:#fff;background-color:#2b2b2b;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#191919;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-github:active,.btn-github.active,.open>.dropdown-toggle.btn-github{background-image:none}
|
||||
.btn-github.disabled,.btn-github[disabled],fieldset[disabled] .btn-github,.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,.btn-github.disabled:active,.btn-github[disabled]:active,fieldset[disabled] .btn-github:active,.btn-github.disabled.active,.btn-github[disabled].active,fieldset[disabled] .btn-github.active{background-color:#444;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-github .badge{color:#444;background-color:#fff}
|
||||
.btn-google{color:#fff;background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}.btn-google:focus,.btn-google.focus{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-google:hover{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-google:active,.btn-google.active,.open>.dropdown-toggle.btn-google{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#a32b1c;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-google:active,.btn-google.active,.open>.dropdown-toggle.btn-google{background-image:none}
|
||||
.btn-google.disabled,.btn-google[disabled],fieldset[disabled] .btn-google,.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,.btn-google.disabled:active,.btn-google[disabled]:active,fieldset[disabled] .btn-google:active,.btn-google.disabled.active,.btn-google[disabled].active,fieldset[disabled] .btn-google.active{background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-google .badge{color:#dd4b39;background-color:#fff}
|
||||
.btn-instagram{color:#fff;background-color:#3f729b;border-color:rgba(0,0,0,0.2)}.btn-instagram:focus,.btn-instagram.focus{color:#fff;background-color:#305777;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-instagram:hover{color:#fff;background-color:#305777;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-instagram:active,.btn-instagram.active,.open>.dropdown-toggle.btn-instagram{color:#fff;background-color:#305777;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#26455d;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-instagram:active,.btn-instagram.active,.open>.dropdown-toggle.btn-instagram{background-image:none}
|
||||
.btn-instagram.disabled,.btn-instagram[disabled],fieldset[disabled] .btn-instagram,.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,.btn-instagram.disabled:active,.btn-instagram[disabled]:active,fieldset[disabled] .btn-instagram:active,.btn-instagram.disabled.active,.btn-instagram[disabled].active,fieldset[disabled] .btn-instagram.active{background-color:#3f729b;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-instagram .badge{color:#3f729b;background-color:#fff}
|
||||
.btn-linkedin{color:#fff;background-color:#007bb6;border-color:rgba(0,0,0,0.2)}.btn-linkedin:focus,.btn-linkedin.focus{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-linkedin:hover{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-linkedin:active,.btn-linkedin.active,.open>.dropdown-toggle.btn-linkedin{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#00405f;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-linkedin:active,.btn-linkedin.active,.open>.dropdown-toggle.btn-linkedin{background-image:none}
|
||||
.btn-linkedin.disabled,.btn-linkedin[disabled],fieldset[disabled] .btn-linkedin,.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,.btn-linkedin.disabled:active,.btn-linkedin[disabled]:active,fieldset[disabled] .btn-linkedin:active,.btn-linkedin.disabled.active,.btn-linkedin[disabled].active,fieldset[disabled] .btn-linkedin.active{background-color:#007bb6;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-linkedin .badge{color:#007bb6;background-color:#fff}
|
||||
.btn-microsoft{color:#fff;background-color:#2672ec;border-color:rgba(0,0,0,0.2)}.btn-microsoft:focus,.btn-microsoft.focus{color:#fff;background-color:#125acd;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-microsoft:hover{color:#fff;background-color:#125acd;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-microsoft:active,.btn-microsoft.active,.open>.dropdown-toggle.btn-microsoft{color:#fff;background-color:#125acd;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#0f4bac;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-microsoft:active,.btn-microsoft.active,.open>.dropdown-toggle.btn-microsoft{background-image:none}
|
||||
.btn-microsoft.disabled,.btn-microsoft[disabled],fieldset[disabled] .btn-microsoft,.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,.btn-microsoft.disabled:active,.btn-microsoft[disabled]:active,fieldset[disabled] .btn-microsoft:active,.btn-microsoft.disabled.active,.btn-microsoft[disabled].active,fieldset[disabled] .btn-microsoft.active{background-color:#2672ec;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-microsoft .badge{color:#2672ec;background-color:#fff}
|
||||
.btn-odnoklassniki{color:#fff;background-color:#f4731c;border-color:rgba(0,0,0,0.2)}.btn-odnoklassniki:focus,.btn-odnoklassniki.focus{color:#fff;background-color:#d35b0a;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-odnoklassniki:hover{color:#fff;background-color:#d35b0a;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-odnoklassniki:active,.btn-odnoklassniki.active,.open>.dropdown-toggle.btn-odnoklassniki{color:#fff;background-color:#d35b0a;border-color:rgba(0,0,0,0.2)}.btn-odnoklassniki:active:hover,.btn-odnoklassniki.active:hover,.open>.dropdown-toggle.btn-odnoklassniki:hover,.btn-odnoklassniki:active:focus,.btn-odnoklassniki.active:focus,.open>.dropdown-toggle.btn-odnoklassniki:focus,.btn-odnoklassniki:active.focus,.btn-odnoklassniki.active.focus,.open>.dropdown-toggle.btn-odnoklassniki.focus{color:#fff;background-color:#b14c09;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-odnoklassniki:active,.btn-odnoklassniki.active,.open>.dropdown-toggle.btn-odnoklassniki{background-image:none}
|
||||
.btn-odnoklassniki.disabled,.btn-odnoklassniki[disabled],fieldset[disabled] .btn-odnoklassniki,.btn-odnoklassniki.disabled:hover,.btn-odnoklassniki[disabled]:hover,fieldset[disabled] .btn-odnoklassniki:hover,.btn-odnoklassniki.disabled:focus,.btn-odnoklassniki[disabled]:focus,fieldset[disabled] .btn-odnoklassniki:focus,.btn-odnoklassniki.disabled.focus,.btn-odnoklassniki[disabled].focus,fieldset[disabled] .btn-odnoklassniki.focus,.btn-odnoklassniki.disabled:active,.btn-odnoklassniki[disabled]:active,fieldset[disabled] .btn-odnoklassniki:active,.btn-odnoklassniki.disabled.active,.btn-odnoklassniki[disabled].active,fieldset[disabled] .btn-odnoklassniki.active{background-color:#f4731c;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-odnoklassniki .badge{color:#f4731c;background-color:#fff}
|
||||
.btn-openid{color:#fff;background-color:#f7931e;border-color:rgba(0,0,0,0.2)}.btn-openid:focus,.btn-openid.focus{color:#fff;background-color:#da7908;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-openid:hover{color:#fff;background-color:#da7908;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-openid:active,.btn-openid.active,.open>.dropdown-toggle.btn-openid{color:#fff;background-color:#da7908;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#b86607;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-openid:active,.btn-openid.active,.open>.dropdown-toggle.btn-openid{background-image:none}
|
||||
.btn-openid.disabled,.btn-openid[disabled],fieldset[disabled] .btn-openid,.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,.btn-openid.disabled:active,.btn-openid[disabled]:active,fieldset[disabled] .btn-openid:active,.btn-openid.disabled.active,.btn-openid[disabled].active,fieldset[disabled] .btn-openid.active{background-color:#f7931e;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-openid .badge{color:#f7931e;background-color:#fff}
|
||||
.btn-pinterest{color:#fff;background-color:#cb2027;border-color:rgba(0,0,0,0.2)}.btn-pinterest:focus,.btn-pinterest.focus{color:#fff;background-color:#9f191f;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-pinterest:hover{color:#fff;background-color:#9f191f;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-pinterest:active,.btn-pinterest.active,.open>.dropdown-toggle.btn-pinterest{color:#fff;background-color:#9f191f;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#801419;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-pinterest:active,.btn-pinterest.active,.open>.dropdown-toggle.btn-pinterest{background-image:none}
|
||||
.btn-pinterest.disabled,.btn-pinterest[disabled],fieldset[disabled] .btn-pinterest,.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,.btn-pinterest.disabled:active,.btn-pinterest[disabled]:active,fieldset[disabled] .btn-pinterest:active,.btn-pinterest.disabled.active,.btn-pinterest[disabled].active,fieldset[disabled] .btn-pinterest.active{background-color:#cb2027;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-pinterest .badge{color:#cb2027;background-color:#fff}
|
||||
.btn-reddit{color:#000;background-color:#eff7ff;border-color:rgba(0,0,0,0.2)}.btn-reddit:focus,.btn-reddit.focus{color:#000;background-color:#bcddff;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-reddit:hover{color:#000;background-color:#bcddff;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-reddit:active,.btn-reddit.active,.open>.dropdown-toggle.btn-reddit{color:#000;background-color:#bcddff;border-color:rgba(0,0,0,0.2)}.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:#000;background-color:#98ccff;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-reddit:active,.btn-reddit.active,.open>.dropdown-toggle.btn-reddit{background-image:none}
|
||||
.btn-reddit.disabled,.btn-reddit[disabled],fieldset[disabled] .btn-reddit,.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,.btn-reddit.disabled:active,.btn-reddit[disabled]:active,fieldset[disabled] .btn-reddit:active,.btn-reddit.disabled.active,.btn-reddit[disabled].active,fieldset[disabled] .btn-reddit.active{background-color:#eff7ff;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-reddit .badge{color:#eff7ff;background-color:#000}
|
||||
.btn-soundcloud{color:#fff;background-color:#f50;border-color:rgba(0,0,0,0.2)}.btn-soundcloud:focus,.btn-soundcloud.focus{color:#fff;background-color:#c40;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-soundcloud:hover{color:#fff;background-color:#c40;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-soundcloud:active,.btn-soundcloud.active,.open>.dropdown-toggle.btn-soundcloud{color:#fff;background-color:#c40;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#a83800;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-soundcloud:active,.btn-soundcloud.active,.open>.dropdown-toggle.btn-soundcloud{background-image:none}
|
||||
.btn-soundcloud.disabled,.btn-soundcloud[disabled],fieldset[disabled] .btn-soundcloud,.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,.btn-soundcloud.disabled:active,.btn-soundcloud[disabled]:active,fieldset[disabled] .btn-soundcloud:active,.btn-soundcloud.disabled.active,.btn-soundcloud[disabled].active,fieldset[disabled] .btn-soundcloud.active{background-color:#f50;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-soundcloud .badge{color:#f50;background-color:#fff}
|
||||
.btn-tumblr{color:#fff;background-color:#2c4762;border-color:rgba(0,0,0,0.2)}.btn-tumblr:focus,.btn-tumblr.focus{color:#fff;background-color:#1c2d3f;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-tumblr:hover{color:#fff;background-color:#1c2d3f;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-tumblr:active,.btn-tumblr.active,.open>.dropdown-toggle.btn-tumblr{color:#fff;background-color:#1c2d3f;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#111c26;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-tumblr:active,.btn-tumblr.active,.open>.dropdown-toggle.btn-tumblr{background-image:none}
|
||||
.btn-tumblr.disabled,.btn-tumblr[disabled],fieldset[disabled] .btn-tumblr,.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,.btn-tumblr.disabled:active,.btn-tumblr[disabled]:active,fieldset[disabled] .btn-tumblr:active,.btn-tumblr.disabled.active,.btn-tumblr[disabled].active,fieldset[disabled] .btn-tumblr.active{background-color:#2c4762;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-tumblr .badge{color:#2c4762;background-color:#fff}
|
||||
.btn-twitter{color:#fff;background-color:#55acee;border-color:rgba(0,0,0,0.2)}.btn-twitter:focus,.btn-twitter.focus{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-twitter:hover{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-twitter:active,.btn-twitter.active,.open>.dropdown-toggle.btn-twitter{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#1583d7;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-twitter:active,.btn-twitter.active,.open>.dropdown-toggle.btn-twitter{background-image:none}
|
||||
.btn-twitter.disabled,.btn-twitter[disabled],fieldset[disabled] .btn-twitter,.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,.btn-twitter.disabled:active,.btn-twitter[disabled]:active,fieldset[disabled] .btn-twitter:active,.btn-twitter.disabled.active,.btn-twitter[disabled].active,fieldset[disabled] .btn-twitter.active{background-color:#55acee;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-twitter .badge{color:#55acee;background-color:#fff}
|
||||
.btn-vimeo{color:#fff;background-color:#1ab7ea;border-color:rgba(0,0,0,0.2)}.btn-vimeo:focus,.btn-vimeo.focus{color:#fff;background-color:#1295bf;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-vimeo:hover{color:#fff;background-color:#1295bf;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-vimeo:active,.btn-vimeo.active,.open>.dropdown-toggle.btn-vimeo{color:#fff;background-color:#1295bf;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#0f7b9f;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-vimeo:active,.btn-vimeo.active,.open>.dropdown-toggle.btn-vimeo{background-image:none}
|
||||
.btn-vimeo.disabled,.btn-vimeo[disabled],fieldset[disabled] .btn-vimeo,.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,.btn-vimeo.disabled:active,.btn-vimeo[disabled]:active,fieldset[disabled] .btn-vimeo:active,.btn-vimeo.disabled.active,.btn-vimeo[disabled].active,fieldset[disabled] .btn-vimeo.active{background-color:#1ab7ea;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-vimeo .badge{color:#1ab7ea;background-color:#fff}
|
||||
.btn-vk{color:#fff;background-color:#587ea3;border-color:rgba(0,0,0,0.2)}.btn-vk:focus,.btn-vk.focus{color:#fff;background-color:#466482;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-vk:hover{color:#fff;background-color:#466482;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-vk:active,.btn-vk.active,.open>.dropdown-toggle.btn-vk{color:#fff;background-color:#466482;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#3a526b;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-vk:active,.btn-vk.active,.open>.dropdown-toggle.btn-vk{background-image:none}
|
||||
.btn-vk.disabled,.btn-vk[disabled],fieldset[disabled] .btn-vk,.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,.btn-vk.disabled:active,.btn-vk[disabled]:active,fieldset[disabled] .btn-vk:active,.btn-vk.disabled.active,.btn-vk[disabled].active,fieldset[disabled] .btn-vk.active{background-color:#587ea3;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-vk .badge{color:#587ea3;background-color:#fff}
|
||||
.btn-yahoo{color:#fff;background-color:#720e9e;border-color:rgba(0,0,0,0.2)}.btn-yahoo:focus,.btn-yahoo.focus{color:#fff;background-color:#500a6f;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-yahoo:hover{color:#fff;background-color:#500a6f;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-yahoo:active,.btn-yahoo.active,.open>.dropdown-toggle.btn-yahoo{color:#fff;background-color:#500a6f;border-color:rgba(0,0,0,0.2)}.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:#fff;background-color:#39074e;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-yahoo:active,.btn-yahoo.active,.open>.dropdown-toggle.btn-yahoo{background-image:none}
|
||||
.btn-yahoo.disabled,.btn-yahoo[disabled],fieldset[disabled] .btn-yahoo,.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,.btn-yahoo.disabled:active,.btn-yahoo[disabled]:active,fieldset[disabled] .btn-yahoo:active,.btn-yahoo.disabled.active,.btn-yahoo[disabled].active,fieldset[disabled] .btn-yahoo.active{background-color:#720e9e;border-color:rgba(0,0,0,0.2)}
|
||||
.btn-yahoo .badge{color:#720e9e;background-color:#fff}
|
||||
Vendored
+11
File diff suppressed because one or more lines are too long
@@ -0,0 +1,2 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,900,100italic,300italic,400italic);
|
||||
@import url(https://fonts.googleapis.com/css?family=Oswald:700,400,300);
|
||||
+1
@@ -0,0 +1 @@
|
||||
table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:75px;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:0.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:8px;white-space:nowrap}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1em 0}table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting{padding-right:30px}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{position:absolute;bottom:8px;right:8px;display:block;font-family:'Glyphicons Halflings';opacity:0.5}table.dataTable thead .sorting:after{opacity:0.2;content:"\e150"}table.dataTable thead .sorting_asc:after{content:"\e155"}table.dataTable thead .sorting_desc:after{content:"\e156"}table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{color:#eee}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody table thead .sorting:after,div.dataTables_scrollBody table thead .sorting_asc:after,div.dataTables_scrollBody table thead .sorting_desc:after{display:none}div.dataTables_scrollBody table tbody tr:first-child th,div.dataTables_scrollBody table tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}}table.dataTable.table-condensed>thead>tr>th{padding-right:20px}table.dataTable.table-condensed .sorting:after,table.dataTable.table-condensed .sorting_asc:after,table.dataTable.table-condensed .sorting_desc:after{top:6px;right:6px}table.table-bordered.dataTable{border-collapse:separate !important}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:0}table.table-bordered.dataTable tbody th,table.table-bordered.dataTable tbody td{border-bottom-width:0}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:last-child{padding-right:0}
|
||||
Vendored
+21
File diff suppressed because one or more lines are too long
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
/*!
|
||||
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015
|
||||
* @package bootstrap-fileinput
|
||||
* @version 4.2.6
|
||||
*
|
||||
* File input styling for Bootstrap 3.0
|
||||
* Built for Yii Framework 2.0
|
||||
* Author: Kartik Visweswaran
|
||||
* Year: 2015
|
||||
* For more Yii related demos visit http://demos.krajee.com
|
||||
*/.file-input{overflow-x:auto}.file-loading{top:0;right:0;width:25px;height:25px;font-size:999px;text-align:right;color:#fff;background:transparent url(../img/loading.gif) top left no-repeat;border:none}.btn-file{position:relative;overflow:hidden}.btn-file input[type=file]{position:absolute;top:0;right:0;min-width:100%;min-height:100%;text-align:right;filter:alpha(opacity=0);opacity:0;background:none repeat scroll 0 0 transparent;cursor:inherit;display:block}.file-caption .glyphicon{display:inline-block;min-width:18px;margin-top:2px}.file-caption-name{display:inline-block;overflow:hidden;padding-right:10px;word-break:break-all}.file-caption-ellipsis{position:absolute;right:10px;margin-top:-6px;font-size:1.2em;display:none;font-weight:700;cursor:default}.kv-has-ellipsis .file-caption-ellipsis{display:inline}.kv-has-ellipsis{padding-right:17px}.kv-search-container .kv-search-clear{position:absolute;padding:10px;right:0}.file-error-message{background-color:#f2dede;color:#a94442;text-align:center;border-radius:5px;padding:5px}.file-error-message pre,.file-error-message ul{margin:5px 0;text-align:left}.file-caption-disabled{background-color:#EEE;cursor:not-allowed;opacity:1}.file-input .btn .disabled,.file-input .btn[disabled]{cursor:not-allowed}.file-preview{border-radius:5px;border:1px solid #ddd;padding:5px;width:100%;margin-bottom:5px}.file-preview-frame{display:table;margin:8px;height:160px;border:1px solid #ddd;box-shadow:1px 1px 5px 0 #a2958a;padding:6px;float:left;text-align:center;vertical-align:middle}.file-preview-frame:hover{box-shadow:3px 3px 5px 0 #333}.file-preview-image{height:160px;vertical-align:text-center}.file-preview-text{width:160px;color:#428bca;font-size:11px;text-align:center}.file-preview-other{padding-top:48px;text-align:center}.file-preview-other i{font-size:2.4em}.file-other-error{width:100%;padding-top:30px;text-align:right}.file-input-ajax-new .fileinput-remove-button,.file-input-ajax-new .fileinput-upload-button,.file-input-new .close,.file-input-new .file-preview,.file-input-new .fileinput-remove-button,.file-input-new .fileinput-upload-button,.file-input-new .glyphicon-file{display:none}.loading{background:transparent url(../img/loading.gif) no-repeat scroll center center content-box!important}.wrap-indicator{font-weight:700;color:#245269;cursor:pointer}.file-actions{text-align:left}.file-footer-buttons{float:right}.file-thumbnail-footer .file-caption-name{padding-top:4px;font-size:11px;color:#777}.file-upload-indicator{padding-top:2px;cursor:default}.file-upload-indicator:hover{font-size:1.2em;font-weight:700;padding-top:0}.file-drop-zone{border:1px dashed #aaa;border-radius:4px;height:100%;text-align:center;vertical-align:middle;margin:12px 15px 12px 12px;padding:5px}.file-drop-zone-title{color:#aaa;font-size:40px;padding:85px 10px}.highlighted{border:2px dashed #999!important;background-color:#f0f0f0}.file-uploading{background-image:url(../img/loading-sm.gif);background-position:center bottom 10px;background-repeat:no-repeat;opacity:.6}.file-icon-large{font-size:1.2em}
|
||||
Vendored
+4
File diff suppressed because one or more lines are too long
Vendored
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,495 @@
|
||||
@import 'less/vars';
|
||||
|
||||
/****************************
|
||||
* FOR RESPONSIVENESS *
|
||||
****************************/
|
||||
|
||||
::selection {
|
||||
background: @selection; /* WebKit/Blink Browsers */
|
||||
color: #fff;
|
||||
}
|
||||
::-moz-selection {
|
||||
background: @selection; /* Gecko Browsers */
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
@media only screen and (min-width: 480px) {
|
||||
html {
|
||||
font-size: 17px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1024px) {
|
||||
html {
|
||||
// font-size: 20px;
|
||||
}
|
||||
p {
|
||||
font-size: 1em;
|
||||
margin-bottom: 1.8em;
|
||||
}
|
||||
}
|
||||
|
||||
/****************************
|
||||
* BODY DEFAULTS *
|
||||
****************************/
|
||||
|
||||
body {
|
||||
font-size: 1em;
|
||||
// font-family: @secondary-font;
|
||||
// background: @background;
|
||||
}
|
||||
a {
|
||||
color: @color1;
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
color: lighten(@color1, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.clearfix() {
|
||||
&:before,
|
||||
&:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
&:after {
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
|
||||
h1,h2,h3,h4,h5,h6,
|
||||
.h1,.h2,.h3,.h4,.h5,.h6{
|
||||
// font-family: @primary-font;
|
||||
// font-weight: bold;
|
||||
}
|
||||
|
||||
/****************************
|
||||
* Buttons *
|
||||
****************************/
|
||||
|
||||
.btn{
|
||||
font-family: @primary-font;
|
||||
i{
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn.text-left{
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.btn-brand {
|
||||
background: @color1;
|
||||
color: #fff;
|
||||
&:hover {
|
||||
color: #fff;
|
||||
background: darken(@color1, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-dark {
|
||||
background: #272727;
|
||||
color: #fff;
|
||||
&:hover {
|
||||
color: #fff;
|
||||
background: darken(@color1, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-red {
|
||||
background: @selection;
|
||||
color: #fff;
|
||||
&:hover {
|
||||
color: #fff;
|
||||
background: darken(@selection, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-alt {
|
||||
background: #f0f0f0;
|
||||
color: #222;
|
||||
&:hover {
|
||||
color: #fff;
|
||||
background: darken(@color1, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
/****************************
|
||||
* Background Colors *
|
||||
****************************/
|
||||
|
||||
// bk because to prevent conflick from orifinal names
|
||||
.bk-primary{
|
||||
background: @color-primary;
|
||||
}
|
||||
.bk-success{
|
||||
background: @color-success;
|
||||
}
|
||||
.bk-warning{
|
||||
background: @color-warning;
|
||||
}
|
||||
.bk-danger{
|
||||
background: @color-danger;
|
||||
}
|
||||
.bk-info{
|
||||
background: @color-info;
|
||||
}
|
||||
|
||||
.bk-white,
|
||||
.bk-light {
|
||||
background: #fff;
|
||||
}
|
||||
.bk-brand {
|
||||
background: @color1;
|
||||
}
|
||||
.bk-dark {
|
||||
background: #222;
|
||||
}
|
||||
.bk-blue {
|
||||
background: #0010ce;
|
||||
}
|
||||
.bk-alt {
|
||||
background: #f7f7f7;
|
||||
}
|
||||
.bk-ghost {
|
||||
background: transparent;
|
||||
}
|
||||
.bk-img {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-image: url(../../img/login-bg.jpg);
|
||||
}
|
||||
.bk-fixed{
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
.hr-green{
|
||||
height: 2px;
|
||||
background: @color1;
|
||||
}
|
||||
.hr-grey{
|
||||
height: 2px;
|
||||
background: #f0f0f0;
|
||||
}
|
||||
.hr-dashed {
|
||||
background-color: transparent;
|
||||
border-top: 1px dotted #edf0f5;
|
||||
color: transparent;
|
||||
height: 1px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.panel{
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
/****************************
|
||||
* Border *
|
||||
****************************/
|
||||
.brdr{
|
||||
border: 1px solid #f0f0f0;
|
||||
}
|
||||
|
||||
|
||||
/****************************
|
||||
* Text size color *
|
||||
****************************/
|
||||
|
||||
.font-one{
|
||||
font-family: @primary-font;
|
||||
}
|
||||
|
||||
.text-bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
.text-normal{
|
||||
font-weight: normal;
|
||||
}
|
||||
.text-thin{
|
||||
font-weight: 100;
|
||||
}
|
||||
.text-lowercase{
|
||||
text-transform: none;
|
||||
}
|
||||
.text-sm {
|
||||
font-size: 13px;
|
||||
}
|
||||
.text-lg {
|
||||
font-size: 18px;
|
||||
}
|
||||
.text-xl{
|
||||
font-size: 1.6em;
|
||||
}
|
||||
.text-2x{
|
||||
font-size: 2em;
|
||||
}
|
||||
.text-3x{
|
||||
font-size: 2.4em;
|
||||
}
|
||||
.text-4x{
|
||||
font-size: 3em;
|
||||
}
|
||||
.text-white,
|
||||
.text-light {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.link-white a{
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.text-grey{
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.text-dgrey{
|
||||
color: #818181;
|
||||
}
|
||||
|
||||
.text-brand {
|
||||
color: @color1;
|
||||
}
|
||||
.text-yellow {
|
||||
color: #ffff00;
|
||||
}
|
||||
|
||||
.title{
|
||||
.line{
|
||||
display: inline-block;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 3px solid #222;
|
||||
}
|
||||
}
|
||||
|
||||
/****************************
|
||||
* Margins *
|
||||
****************************/
|
||||
.mt {
|
||||
margin-top: 18px;
|
||||
&-0x{
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
&-2x{
|
||||
margin-top: 36px;
|
||||
}
|
||||
&-3x{
|
||||
margin-top: 54px;
|
||||
}
|
||||
&-4x{
|
||||
margin-top: 90px;
|
||||
}
|
||||
&-5x{
|
||||
margin-top: 144px;
|
||||
}
|
||||
}
|
||||
.mb {
|
||||
margin-bottom: 18px;
|
||||
&-0x{
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
&-2x{
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
&-3x{
|
||||
margin-bottom: 54px;
|
||||
}
|
||||
&-4x{
|
||||
margin-bottom: 90px;
|
||||
}
|
||||
&-5x{
|
||||
margin-bottom: 144px;
|
||||
}
|
||||
}
|
||||
.pt{
|
||||
padding-top: 18px;
|
||||
&-2x{
|
||||
padding-top: 36px;
|
||||
}
|
||||
&-3x{
|
||||
padding-top: 54px;
|
||||
}
|
||||
&-4x{
|
||||
padding-top: 90px;
|
||||
}
|
||||
&-5x{
|
||||
padding-top: 144px;
|
||||
}
|
||||
}
|
||||
.pb{
|
||||
padding-bottom: 18px;
|
||||
&-2x{
|
||||
padding-bottom: 36px;
|
||||
}
|
||||
&-3x{
|
||||
padding-bottom: 54px;
|
||||
}
|
||||
&-4x{
|
||||
padding-bottom: 90px;
|
||||
}
|
||||
&-5x{
|
||||
padding-bottom: 144px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Content boxes */
|
||||
.content-box{
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.block-anchor{
|
||||
display: block;
|
||||
}
|
||||
|
||||
/****************************
|
||||
* Content Typography *
|
||||
****************************/
|
||||
.content-format{
|
||||
line-height: 1.6em;
|
||||
font-weight: 400;
|
||||
letter-spacing: .01em;
|
||||
font-style: normal;
|
||||
word-wrap: break-word;
|
||||
.h1,.h2,.h3,.h4,.h5,.h6,
|
||||
h1,h2,h3,h4,h5,h6{
|
||||
font-family: @primary-font;
|
||||
font-weight: 700;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
color: rgba(0,0,0,0.8);
|
||||
margin-top: 40px;
|
||||
a{
|
||||
font-size: inherit;
|
||||
}
|
||||
}
|
||||
.h2,
|
||||
h2{
|
||||
font-size: 3em;
|
||||
line-height: 1;
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 4px solid #f0f0f0;
|
||||
}
|
||||
.h3,
|
||||
h3{
|
||||
font-size: 2em;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 4px;
|
||||
margin: 1em 0 0.5em;
|
||||
}
|
||||
.h4,
|
||||
h4{
|
||||
font-size: 1.7em;
|
||||
line-height: 1.4;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.h5,
|
||||
h5{
|
||||
font-size: 1.5em;
|
||||
line-height: 1.4;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.h6,
|
||||
h6{
|
||||
font-size: 1.3em;
|
||||
line-height: 1.4;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
strong{
|
||||
font-weight: bold;
|
||||
}
|
||||
ul:not(.social-awesome){
|
||||
list-style: disc outside;
|
||||
margin: 1.714285714rem 0 1.714285714rem;
|
||||
line-height: 1.714285714;
|
||||
li{
|
||||
margin: 0 0 0 36px;
|
||||
margin: 0 1rem 0 2.571428571rem;
|
||||
}
|
||||
&.list-unstyled{
|
||||
list-style: none;
|
||||
li{
|
||||
margin: 0 0 0 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
em{
|
||||
font-style: italic;
|
||||
}
|
||||
p{
|
||||
margin-bottom: 1.8em;
|
||||
}
|
||||
figure{
|
||||
.caption{
|
||||
color: #999;
|
||||
font-size: 14px;
|
||||
}
|
||||
margin-bottom: 42px;
|
||||
}
|
||||
img{
|
||||
border: 0;
|
||||
height: auto;
|
||||
max-width: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.fa{
|
||||
color: @color1;
|
||||
margin-right: 10px;
|
||||
}
|
||||
blockquote {
|
||||
border-left: 4px solid #c3c3c3;
|
||||
border-left: 4px solid rgba(51, 51, 51, 0.17);
|
||||
color: #707070;
|
||||
color: rgba(51, 51, 51, 0.7);
|
||||
font-size: 1.2em;
|
||||
font-style: italic;
|
||||
line-height: 1.6667;
|
||||
margin-bottom: 1em;
|
||||
padding-left: 0.7778em;
|
||||
&.double-quote{
|
||||
border-left: none;
|
||||
padding-left: 1em;
|
||||
}
|
||||
}
|
||||
pre{
|
||||
background: #fff;
|
||||
border: 1px solid #ededed;
|
||||
color: #666;
|
||||
font-family: Consolas, Monaco, Lucida Console, monospace;
|
||||
font-size: .9em;
|
||||
line-height: 1.714285714;
|
||||
margin: 24px 0;
|
||||
margin: 1.714285714rem 0;
|
||||
overflow: auto;
|
||||
}
|
||||
ol{
|
||||
margin: 24px 0 24px;
|
||||
margin: 1.714285714rem 0 1.714285714rem;
|
||||
line-height: 1.714285714;
|
||||
list-style: decimal outside;
|
||||
}
|
||||
img.wp-smiley, img.emoji {
|
||||
display: inline !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
height: 1em !important;
|
||||
width: 1em !important;
|
||||
margin: 0 .07em !important;
|
||||
vertical-align: -0.1em !important;
|
||||
background: none !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
// Import Fonts
|
||||
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,900,100italic,300italic,400italic);
|
||||
@import url(https://fonts.googleapis.com/css?family=Oswald:700,400,300);
|
||||
|
||||
@secondary-font: 'Lato', sans-serif;
|
||||
//@secondary-font: 'Oswald', sans-serif;
|
||||
@primary-font: 'Oswald', sans-serif;
|
||||
|
||||
|
||||
// Layout Breakpoints
|
||||
@highdensity: ~"only screen and (-webkit-min-device-pixel-ratio: 1.5)",
|
||||
~"only screen and (min--moz-device-pixel-ratio: 1.5)",
|
||||
~"only screen and (-o-min-device-pixel-ratio: 3/2)",
|
||||
~"only screen and (min-device-pixel-ratio: 1.5)";
|
||||
@mobile: ~"only screen and (max-width: 479px)";
|
||||
@tablet: ~"only screen and (min-width: 480px)";
|
||||
@desktop: ~"only screen and (min-width: 992px)";
|
||||
@desktop-xl: ~"only screen and (min-width: 1200px)";
|
||||
|
||||
// Brand Colors
|
||||
@background: #fff;
|
||||
@color1: #37a6c4;
|
||||
@color2: #ff962f;
|
||||
@color3: #25292a;
|
||||
|
||||
|
||||
@color-primary: #325d88;
|
||||
@color-success: #93c54b;
|
||||
@color-warning: #f47c3c;
|
||||
@color-danger: #d9534f;
|
||||
@color-info: #29abe0;
|
||||
|
||||
@selection: #4f5362;
|
||||
@@ -0,0 +1,747 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,900,100italic,300italic,400italic);
|
||||
@import url(https://fonts.googleapis.com/css?family=Oswald:700,400,300);
|
||||
/****************************
|
||||
* FOR RESPONSIVENESS *
|
||||
****************************/
|
||||
::selection {
|
||||
background: #4f5362;
|
||||
/* WebKit/Blink Browsers */
|
||||
color: #fff;
|
||||
}
|
||||
::-moz-selection {
|
||||
background: #4f5362;
|
||||
/* Gecko Browsers */
|
||||
color: #fff;
|
||||
}
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
@media only screen and (min-width: 480px) {
|
||||
html {
|
||||
font-size: 17px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1024px) {
|
||||
p {
|
||||
font-size: 1em;
|
||||
margin-bottom: 1.8em;
|
||||
}
|
||||
}
|
||||
/****************************
|
||||
* BODY DEFAULTS *
|
||||
****************************/
|
||||
body {
|
||||
font-size: 1em;
|
||||
}
|
||||
a {
|
||||
color: #37a6c4;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: #5db9d1;
|
||||
}
|
||||
/****************************
|
||||
* Buttons *
|
||||
****************************/
|
||||
.btn {
|
||||
font-family: 'Oswald', sans-serif;
|
||||
}
|
||||
.btn i {
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
.btn.text-left {
|
||||
text-align: left;
|
||||
}
|
||||
.btn-brand {
|
||||
background: #37a6c4;
|
||||
color: #fff;
|
||||
}
|
||||
.btn-brand:hover {
|
||||
color: #fff;
|
||||
background: #2c849c;
|
||||
}
|
||||
.btn-dark {
|
||||
background: #272727;
|
||||
color: #fff;
|
||||
}
|
||||
.btn-dark:hover {
|
||||
color: #fff;
|
||||
background: #2c849c;
|
||||
}
|
||||
.btn-red {
|
||||
background: #4f5362;
|
||||
color: #fff;
|
||||
}
|
||||
.btn-red:hover {
|
||||
color: #fff;
|
||||
background: #383b46;
|
||||
}
|
||||
.btn-alt {
|
||||
background: #f0f0f0;
|
||||
color: #222;
|
||||
}
|
||||
.btn-alt:hover {
|
||||
color: #fff;
|
||||
background: #2c849c;
|
||||
}
|
||||
/****************************
|
||||
* Background Colors *
|
||||
****************************/
|
||||
.bk-primary {
|
||||
background: #325d88;
|
||||
}
|
||||
.bk-success {
|
||||
background: #93c54b;
|
||||
}
|
||||
.bk-warning {
|
||||
background: #f47c3c;
|
||||
}
|
||||
.bk-danger {
|
||||
background: #d9534f;
|
||||
}
|
||||
.bk-info {
|
||||
background: #29abe0;
|
||||
}
|
||||
.bk-white,
|
||||
.bk-light {
|
||||
background: #fff;
|
||||
}
|
||||
.bk-brand {
|
||||
background: #37a6c4;
|
||||
}
|
||||
.bk-dark {
|
||||
background: #222;
|
||||
}
|
||||
.bk-blue {
|
||||
background: #0010ce;
|
||||
}
|
||||
.bk-alt {
|
||||
background: #f7f7f7;
|
||||
}
|
||||
.bk-ghost {
|
||||
background: transparent;
|
||||
}
|
||||
.bk-img {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-image: url(../../img/login-bg.jpg);
|
||||
}
|
||||
.bk-fixed {
|
||||
background-attachment: fixed;
|
||||
}
|
||||
.hr-green {
|
||||
height: 2px;
|
||||
background: #37a6c4;
|
||||
}
|
||||
.hr-grey {
|
||||
height: 2px;
|
||||
background: #f0f0f0;
|
||||
}
|
||||
.hr-dashed {
|
||||
background-color: transparent;
|
||||
border-top: 1px dotted #edf0f5;
|
||||
color: transparent;
|
||||
height: 1px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.panel {
|
||||
overflow: hidden;
|
||||
}
|
||||
/****************************
|
||||
* Border *
|
||||
****************************/
|
||||
.brdr {
|
||||
border: 1px solid #f0f0f0;
|
||||
}
|
||||
/****************************
|
||||
* Text size color *
|
||||
****************************/
|
||||
.font-one {
|
||||
font-family: 'Oswald', sans-serif;
|
||||
}
|
||||
.text-bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
.text-normal {
|
||||
font-weight: normal;
|
||||
}
|
||||
.text-thin {
|
||||
font-weight: 100;
|
||||
}
|
||||
.text-lowercase {
|
||||
text-transform: none;
|
||||
}
|
||||
.text-sm {
|
||||
font-size: 13px;
|
||||
}
|
||||
.text-lg {
|
||||
font-size: 18px;
|
||||
}
|
||||
.text-xl {
|
||||
font-size: 1.6em;
|
||||
}
|
||||
.text-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
.text-3x {
|
||||
font-size: 2.4em;
|
||||
}
|
||||
.text-4x {
|
||||
font-size: 3em;
|
||||
}
|
||||
.text-white,
|
||||
.text-light {
|
||||
color: #fff !important;
|
||||
}
|
||||
.link-white a {
|
||||
color: #fff;
|
||||
}
|
||||
.text-grey {
|
||||
color: #ccc;
|
||||
}
|
||||
.text-dgrey {
|
||||
color: #818181;
|
||||
}
|
||||
.text-brand {
|
||||
color: #37a6c4;
|
||||
}
|
||||
.text-yellow {
|
||||
color: #ffff00;
|
||||
}
|
||||
.title .line {
|
||||
display: inline-block;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 3px solid #222;
|
||||
}
|
||||
/****************************
|
||||
* Margins *
|
||||
****************************/
|
||||
.mt {
|
||||
margin-top: 18px;
|
||||
}
|
||||
.mt-0x {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
.mt-2x {
|
||||
margin-top: 36px;
|
||||
}
|
||||
.mt-3x {
|
||||
margin-top: 54px;
|
||||
}
|
||||
.mt-4x {
|
||||
margin-top: 90px;
|
||||
}
|
||||
.mt-5x {
|
||||
margin-top: 144px;
|
||||
}
|
||||
.mb {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
.mb-0x {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
.mb-2x {
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
.mb-3x {
|
||||
margin-bottom: 54px;
|
||||
}
|
||||
.mb-4x {
|
||||
margin-bottom: 90px;
|
||||
}
|
||||
.mb-5x {
|
||||
margin-bottom: 144px;
|
||||
}
|
||||
.pt {
|
||||
padding-top: 18px;
|
||||
}
|
||||
.pt-2x {
|
||||
padding-top: 36px;
|
||||
}
|
||||
.pt-3x {
|
||||
padding-top: 54px;
|
||||
}
|
||||
.pt-4x {
|
||||
padding-top: 90px;
|
||||
}
|
||||
.pt-5x {
|
||||
padding-top: 144px;
|
||||
}
|
||||
.pb {
|
||||
padding-bottom: 18px;
|
||||
}
|
||||
.pb-2x {
|
||||
padding-bottom: 36px;
|
||||
}
|
||||
.pb-3x {
|
||||
padding-bottom: 54px;
|
||||
}
|
||||
.pb-4x {
|
||||
padding-bottom: 90px;
|
||||
}
|
||||
.pb-5x {
|
||||
padding-bottom: 144px;
|
||||
}
|
||||
/* Content boxes */
|
||||
.content-box {
|
||||
padding: 15px;
|
||||
}
|
||||
.block-anchor {
|
||||
display: block;
|
||||
}
|
||||
/****************************
|
||||
* Content Typography *
|
||||
****************************/
|
||||
.content-format {
|
||||
line-height: 1.6em;
|
||||
font-weight: 400;
|
||||
letter-spacing: .01em;
|
||||
font-style: normal;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.content-format .h1,
|
||||
.content-format .h2,
|
||||
.content-format .h3,
|
||||
.content-format .h4,
|
||||
.content-format .h5,
|
||||
.content-format .h6,
|
||||
.content-format h1,
|
||||
.content-format h2,
|
||||
.content-format h3,
|
||||
.content-format h4,
|
||||
.content-format h5,
|
||||
.content-format h6 {
|
||||
font-family: 'Oswald', sans-serif;
|
||||
font-weight: 700;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
color: rgba(0, 0, 0, 0.8);
|
||||
margin-top: 40px;
|
||||
}
|
||||
.content-format .h1 a,
|
||||
.content-format .h2 a,
|
||||
.content-format .h3 a,
|
||||
.content-format .h4 a,
|
||||
.content-format .h5 a,
|
||||
.content-format .h6 a,
|
||||
.content-format h1 a,
|
||||
.content-format h2 a,
|
||||
.content-format h3 a,
|
||||
.content-format h4 a,
|
||||
.content-format h5 a,
|
||||
.content-format h6 a {
|
||||
font-size: inherit;
|
||||
}
|
||||
.content-format .h2,
|
||||
.content-format h2 {
|
||||
font-size: 3em;
|
||||
line-height: 1;
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 4px solid #f0f0f0;
|
||||
}
|
||||
.content-format .h3,
|
||||
.content-format h3 {
|
||||
font-size: 2em;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 4px;
|
||||
margin: 1em 0 0.5em;
|
||||
}
|
||||
.content-format .h4,
|
||||
.content-format h4 {
|
||||
font-size: 1.7em;
|
||||
line-height: 1.4;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.content-format .h5,
|
||||
.content-format h5 {
|
||||
font-size: 1.5em;
|
||||
line-height: 1.4;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.content-format .h6,
|
||||
.content-format h6 {
|
||||
font-size: 1.3em;
|
||||
line-height: 1.4;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.content-format strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
.content-format ul:not(.social-awesome) {
|
||||
list-style: disc outside;
|
||||
margin: 1.714285714rem 0 1.714285714rem;
|
||||
line-height: 1.714285714;
|
||||
}
|
||||
.content-format ul:not(.social-awesome) li {
|
||||
margin: 0 0 0 36px;
|
||||
margin: 0 1rem 0 2.571428571rem;
|
||||
}
|
||||
.content-format ul:not(.social-awesome).list-unstyled {
|
||||
list-style: none;
|
||||
}
|
||||
.content-format ul:not(.social-awesome).list-unstyled li {
|
||||
margin: 0 0 0 24px;
|
||||
}
|
||||
.content-format em {
|
||||
font-style: italic;
|
||||
}
|
||||
.content-format p {
|
||||
margin-bottom: 1.8em;
|
||||
}
|
||||
.content-format figure {
|
||||
margin-bottom: 42px;
|
||||
}
|
||||
.content-format figure .caption {
|
||||
color: #999;
|
||||
font-size: 14px;
|
||||
}
|
||||
.content-format img {
|
||||
border: 0;
|
||||
height: auto;
|
||||
max-width: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.content-format .fa {
|
||||
color: #37a6c4;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.content-format blockquote {
|
||||
border-left: 4px solid #c3c3c3;
|
||||
border-left: 4px solid rgba(51, 51, 51, 0.17);
|
||||
color: #707070;
|
||||
color: rgba(51, 51, 51, 0.7);
|
||||
font-size: 1.2em;
|
||||
font-style: italic;
|
||||
line-height: 1.6667;
|
||||
margin-bottom: 1em;
|
||||
padding-left: 0.7778em;
|
||||
}
|
||||
.content-format blockquote.double-quote {
|
||||
border-left: none;
|
||||
padding-left: 1em;
|
||||
}
|
||||
.content-format pre {
|
||||
background: #fff;
|
||||
border: 1px solid #ededed;
|
||||
color: #666;
|
||||
font-family: Consolas, Monaco, Lucida Console, monospace;
|
||||
font-size: .9em;
|
||||
line-height: 1.714285714;
|
||||
margin: 24px 0;
|
||||
margin: 1.714285714rem 0;
|
||||
overflow: auto;
|
||||
}
|
||||
.content-format ol {
|
||||
margin: 24px 0 24px;
|
||||
margin: 1.714285714rem 0 1.714285714rem;
|
||||
line-height: 1.714285714;
|
||||
list-style: decimal outside;
|
||||
}
|
||||
.content-format img.wp-smiley,
|
||||
.content-format img.emoji {
|
||||
display: inline !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
height: 1em !important;
|
||||
width: 1em !important;
|
||||
margin: 0 .07em !important;
|
||||
vertical-align: -0.1em !important;
|
||||
background: none !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
/*
|
||||
* Theme Struck - Harmony - Free responsive Bootstrap admin template by Themestruck.com (http://themestruck.com)
|
||||
* Code licensed under the MIT
|
||||
* For details, see #
|
||||
*/
|
||||
ul,
|
||||
li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
/* Social Button Modifications */
|
||||
.btn {
|
||||
text-transform: none;
|
||||
}
|
||||
.btn-social > :first-child {
|
||||
width: 42px;
|
||||
line-height: 46px;
|
||||
}
|
||||
.btn-social {
|
||||
padding-left: 58px;
|
||||
}
|
||||
/* Circle buttons */
|
||||
.btn-circle {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
padding: 6px 0;
|
||||
border-radius: 15px;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
line-height: 1.428571429;
|
||||
}
|
||||
.btn-circle.btn-lg {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
padding: 10px 16px;
|
||||
border-radius: 25px;
|
||||
font-size: 18px;
|
||||
line-height: 1.33;
|
||||
}
|
||||
.btn-circle.btn-xl {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
padding: 10px 16px;
|
||||
border-radius: 35px;
|
||||
font-size: 24px;
|
||||
line-height: 1.33;
|
||||
}
|
||||
/* Chart design */
|
||||
/* Charts */
|
||||
.chart-dot-list {
|
||||
display: block;
|
||||
margin-top: 60px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
.chart-dot-list li {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.chart-dot-list li:before {
|
||||
content: '';
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
margin-right: 6px;
|
||||
display: inline-block;
|
||||
background: #222;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.chart-dot-list li.a1:before {
|
||||
background: #F7464A;
|
||||
}
|
||||
.chart-dot-list li.a2:before {
|
||||
background: #46BFBD;
|
||||
}
|
||||
.chart-dot-list li.a3:before {
|
||||
background: #FDB45C;
|
||||
}
|
||||
.chart-doughnut {
|
||||
padding: 41px 0;
|
||||
}
|
||||
/* component */
|
||||
.page-title {
|
||||
padding-bottom: 15px;
|
||||
margin-bottom: 20px;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.brand {
|
||||
background: #3e454c;
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
}
|
||||
.brand .logo {
|
||||
box-sizing: border-box;
|
||||
padding: 20px;
|
||||
float: left;
|
||||
display: block;
|
||||
width: 200px;
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
.brand .logo {
|
||||
width: 250px;
|
||||
}
|
||||
}
|
||||
.brand .logo img {
|
||||
height: 20px;
|
||||
}
|
||||
.brand .menu-btn {
|
||||
float: right;
|
||||
background: #232d3b;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
padding: 20px 20px;
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
.brand .menu-btn {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.brand .ts-profile-nav {
|
||||
float: right;
|
||||
display: none;
|
||||
}
|
||||
.brand .ts-profile-nav li {
|
||||
float: left;
|
||||
position: relative;
|
||||
}
|
||||
.brand .ts-profile-nav li a {
|
||||
display: block;
|
||||
padding: 20px;
|
||||
color: #fff;
|
||||
}
|
||||
.brand .ts-profile-nav li ul {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
right: 0;
|
||||
position: absolute;
|
||||
}
|
||||
.brand .ts-profile-nav li ul li {
|
||||
float: none;
|
||||
width: 180px;
|
||||
}
|
||||
.brand .ts-profile-nav li ul li a {
|
||||
padding: 10px 20px;
|
||||
background: #222;
|
||||
}
|
||||
.brand .ts-profile-nav .ts-account .fa-angle-down {
|
||||
float: right;
|
||||
}
|
||||
.brand .ts-profile-nav .ts-account > a {
|
||||
width: 180px;
|
||||
background: #2c3136;
|
||||
}
|
||||
.brand .ts-profile-nav .ts-account .ts-avatar {
|
||||
border-radius: 50%;
|
||||
height: 28px;
|
||||
margin: -10px 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.brand .ts-profile-nav .ts-account:hover ul {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
.brand .ts-profile-nav {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.ts-sidebar::-webkit-scrollbar-track {
|
||||
background-color: transparent;
|
||||
}
|
||||
.ts-sidebar::-webkit-scrollbar {
|
||||
width: 5px;
|
||||
background-color: transparent;
|
||||
}
|
||||
.ts-sidebar::-webkit-scrollbar-thumb {
|
||||
background-color: #b4b4b4;
|
||||
}
|
||||
.ts-sidebar {
|
||||
background: #2c3136;
|
||||
max-height: 0;
|
||||
transition: max-height 0.3s;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
z-index: 2;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
top: 60px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.ts-sidebar .hidden-side {
|
||||
display: none;
|
||||
}
|
||||
.ts-sidebar .ts-sidebar-search {
|
||||
width: 100%;
|
||||
background: #25292a;
|
||||
border: none;
|
||||
padding: 10px 15px;
|
||||
color: #fff;
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
.ts-sidebar .ts-profile-nav {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
.ts-sidebar {
|
||||
max-height: 100%;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
.ts-sidebar-menu .ts-label {
|
||||
color: #585c64;
|
||||
font-weight: bold;
|
||||
padding: 8px 15px;
|
||||
text-transform: uppercase;
|
||||
font-size: 10px;
|
||||
letter-spacing: 3px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.ts-sidebar-menu a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
padding: 12px 15px;
|
||||
color: #fff;
|
||||
}
|
||||
.ts-sidebar-menu li {
|
||||
position: relative;
|
||||
}
|
||||
.ts-sidebar-menu li i {
|
||||
color: #585c64;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.ts-sidebar-menu li ul {
|
||||
display: block;
|
||||
background: rgba(255, 0, 0, 0.12);
|
||||
background: rgba(0, 0, 0, 0.32);
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.menu-open,
|
||||
.ts-sidebar-menu .open > ul {
|
||||
max-height: 2000px;
|
||||
}
|
||||
.ts-sidebar-menu .open > a {
|
||||
background: rgba(51, 56, 62, 0.35);
|
||||
}
|
||||
.ts-sidebar-menu > .open > a {
|
||||
background: #33383e;
|
||||
border-left: 3px solid #37a6c4;
|
||||
}
|
||||
.ts-sidebar-menu .open > .more i {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
.more i {
|
||||
color: #fff;
|
||||
padding: 15px;
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
.more {
|
||||
float: right;
|
||||
min-width: 10%;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ts-main-content .content-wrapper {
|
||||
padding-top: 15px;
|
||||
margin-top: 60px;
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
.ts-main-content .ts-sidebar {
|
||||
width: 250px;
|
||||
float: left;
|
||||
}
|
||||
.ts-main-content .content-wrapper {
|
||||
margin-left: 250px;
|
||||
}
|
||||
}
|
||||
/* Login page */
|
||||
.login-page {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
@@ -0,0 +1,322 @@
|
||||
@import 'less/vars';
|
||||
@import 'less/components';
|
||||
|
||||
/*
|
||||
* Theme Struck - Harmony - Free responsive Bootstrap admin template by Themestruck.com (http://themestruck.com)
|
||||
* Code licensed under the MIT
|
||||
* For details, see #
|
||||
*/
|
||||
|
||||
ul,
|
||||
li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/* Social Button Modifications */
|
||||
.btn{
|
||||
text-transform: none;
|
||||
}
|
||||
.btn-social>:first-child {
|
||||
width: 42px;
|
||||
line-height: 46px;
|
||||
}
|
||||
.btn-social {
|
||||
padding-left: 58px;
|
||||
}
|
||||
|
||||
/* Circle buttons */
|
||||
.btn-circle {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
padding: 6px 0;
|
||||
border-radius: 15px;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
line-height: 1.428571429;
|
||||
}
|
||||
.btn-circle.btn-lg {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
padding: 10px 16px;
|
||||
border-radius: 25px;
|
||||
font-size: 18px;
|
||||
line-height: 1.33;
|
||||
}
|
||||
.btn-circle.btn-xl {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
padding: 10px 16px;
|
||||
border-radius: 35px;
|
||||
font-size: 24px;
|
||||
line-height: 1.33;
|
||||
}
|
||||
|
||||
/* Chart design */
|
||||
/* Charts */
|
||||
.chart-dot-list {
|
||||
display: block;
|
||||
margin-top: 60px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
.chart-dot-list li {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.chart-dot-list li:before {
|
||||
content: '';
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
margin-right: 6px;
|
||||
display: inline-block;
|
||||
background: #222;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.chart-dot-list li.a1:before {
|
||||
background: #F7464A;
|
||||
}
|
||||
.chart-dot-list li.a2:before {
|
||||
background: #46BFBD;
|
||||
}
|
||||
.chart-dot-list li.a3:before {
|
||||
background: #FDB45C;
|
||||
}
|
||||
.chart-doughnut {
|
||||
padding: 41px 0;
|
||||
}
|
||||
|
||||
/* component */
|
||||
|
||||
.page-title{
|
||||
padding-bottom: 15px;
|
||||
margin-bottom: 20px;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
|
||||
.brand{
|
||||
// padding: 10px;
|
||||
background: #3e454c;
|
||||
.logo{
|
||||
box-sizing: border-box;
|
||||
padding: 20px;
|
||||
float: left;
|
||||
display: block;
|
||||
width: 200px;
|
||||
@media @desktop{
|
||||
width: 250px;
|
||||
}
|
||||
img{
|
||||
height: 20px;
|
||||
}
|
||||
}
|
||||
.menu-btn {
|
||||
float: right;
|
||||
background: #232d3b;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
padding: 20px 20px;
|
||||
@media @desktop{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.ts-profile-nav{
|
||||
float: right;
|
||||
li{
|
||||
float: left;
|
||||
a{
|
||||
display: block;
|
||||
padding: 20px;
|
||||
color: #fff;
|
||||
}
|
||||
position: relative;
|
||||
ul{
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
right: 0;
|
||||
position: absolute;
|
||||
li{
|
||||
float: none;
|
||||
width: 180px;
|
||||
a{
|
||||
padding: 10px 20px;
|
||||
background: #222;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ts-account{
|
||||
.fa-angle-down{
|
||||
float: right;
|
||||
}
|
||||
&>a{
|
||||
width: 180px;
|
||||
background: #2c3136;
|
||||
}
|
||||
.ts-avatar{
|
||||
border-radius: 50%;
|
||||
height: 28px;
|
||||
margin: -10px 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
&:hover{
|
||||
ul{
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
display: none;
|
||||
@media @desktop{
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.ts-sidebar::-webkit-scrollbar-track
|
||||
{
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.ts-sidebar::-webkit-scrollbar
|
||||
{
|
||||
width: 5px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.ts-sidebar::-webkit-scrollbar-thumb
|
||||
{
|
||||
background-color: #b4b4b4;
|
||||
}
|
||||
|
||||
.ts-sidebar{
|
||||
background: #2c3136;
|
||||
.hidden-side{
|
||||
display: none;
|
||||
}
|
||||
.ts-sidebar-search{
|
||||
width: 100%;
|
||||
background: #25292a;
|
||||
border: none;
|
||||
padding: 10px 15px;
|
||||
color: #fff;
|
||||
}
|
||||
.ts-profile-nav{
|
||||
@media @desktop{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
max-height: 0;
|
||||
transition: max-height 0.3s;
|
||||
overflow: hidden;
|
||||
|
||||
|
||||
position: fixed;
|
||||
z-index: 2;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
top: 60px;
|
||||
overflow-y: auto;
|
||||
|
||||
@media @desktop{
|
||||
// height: 100vh;
|
||||
max-height: 100%;
|
||||
// position: relative;
|
||||
// top: 0;
|
||||
bottom: 0;
|
||||
// top: 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.ts-sidebar-menu {
|
||||
.ts-label{
|
||||
color: #585c64;
|
||||
font-weight: bold;
|
||||
padding: 8px 15px;
|
||||
text-transform: uppercase;
|
||||
font-size: 10px;
|
||||
letter-spacing: 3px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
padding: 12px 15px;
|
||||
color: #fff;
|
||||
}
|
||||
li {
|
||||
position: relative;
|
||||
i{
|
||||
color: #585c64;
|
||||
margin-right: 10px;
|
||||
}
|
||||
ul {
|
||||
display: block;
|
||||
background: rgba(255, 0, 0, 0.12);
|
||||
background: rgba(0, 0, 0, 0.32);
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.menu-open,
|
||||
.ts-sidebar-menu .open > ul {
|
||||
max-height: 2000px;
|
||||
}
|
||||
.ts-sidebar-menu .open{
|
||||
&>a{
|
||||
background: rgba(51, 56, 62, 0.35);
|
||||
}
|
||||
}
|
||||
.ts-sidebar-menu > .open{
|
||||
&>a{
|
||||
background: #33383e;
|
||||
border-left: 3px solid @color1;
|
||||
}
|
||||
}
|
||||
|
||||
.ts-sidebar-menu .open > .more i {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
.more i {
|
||||
color: #fff;
|
||||
padding: 15px;
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
.more {
|
||||
float: right;
|
||||
min-width: 10%;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ts-main-content{
|
||||
.content-wrapper{
|
||||
padding-top: 15px;
|
||||
margin-top: 60px;
|
||||
}
|
||||
@media @desktop{
|
||||
.ts-sidebar{
|
||||
width: 250px;
|
||||
float: left;
|
||||
}
|
||||
.content-wrapper{
|
||||
margin-left: 250px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Login page */
|
||||
.login-page{
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
Reference in New Issue
Block a user