added css
parent
81e48e4c1b
commit
60fe54855d
|
@ -0,0 +1,2 @@
|
||||||
|
.idea
|
||||||
|
.vscode
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,660 @@
|
||||||
|
/*-------------------------------------------------------------------------------------------*/
|
||||||
|
/* SHORTCODE DEFINATIONS */
|
||||||
|
/*-------------------------------------------------------------------------------------------*/
|
||||||
|
/* ==================================================
|
||||||
|
Tabs
|
||||||
|
================================================== */
|
||||||
|
.tabs {
|
||||||
|
margin-bottom: 25px; }
|
||||||
|
|
||||||
|
.nav-tabs li {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
margin-right: 1px; }
|
||||||
|
|
||||||
|
.nav-tabs li a {
|
||||||
|
display: block;
|
||||||
|
padding: 10px 20px;
|
||||||
|
background: #f8f8f8;
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
|
.nav-tabs li a:hover {
|
||||||
|
color: #fff;
|
||||||
|
background: #666;
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
|
.nav-tabs li a:active, .nav-tabs li a.active {
|
||||||
|
color: #fff;
|
||||||
|
background: #666; }
|
||||||
|
|
||||||
|
.tab-content {
|
||||||
|
padding: 20px 0;
|
||||||
|
background: #ffffff; }
|
||||||
|
|
||||||
|
.tab-content > .tab-pane {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
|
.tab-content > .active {
|
||||||
|
display: block; }
|
||||||
|
|
||||||
|
/* ==================================================
|
||||||
|
Accordion & Toggle
|
||||||
|
================================================== */
|
||||||
|
.accordion {
|
||||||
|
margin-bottom: 35px; }
|
||||||
|
|
||||||
|
.accordion-group {
|
||||||
|
margin-bottom: 8px !important;
|
||||||
|
border: none;
|
||||||
|
-webkit-border-radius: 0;
|
||||||
|
-moz-border-radius: 0;
|
||||||
|
border-radius: 0; }
|
||||||
|
|
||||||
|
.accordion-heading {
|
||||||
|
border-bottom: 0 none; }
|
||||||
|
|
||||||
|
.accordion-heading .accordion-toggle {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
padding: 15px;
|
||||||
|
background: #f8f8f8;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 13px;
|
||||||
|
-webkit-transition: all 0.1s linear 0s;
|
||||||
|
-moz-transition: all 0.1s linear 0s;
|
||||||
|
-ms-transition: all 0.1s linear 0s;
|
||||||
|
-o-transition: all 0.1s linear 0s;
|
||||||
|
transition: all 0.1s linear 0s; }
|
||||||
|
|
||||||
|
.accordion-toggle {
|
||||||
|
cursor: pointer; }
|
||||||
|
|
||||||
|
.accordion-toggle:hover {
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
|
.accordion-heading:hover .accordion-toggle,
|
||||||
|
.accordion-heading:hover .accordion-toggle.inactive {
|
||||||
|
background: #666;
|
||||||
|
color: #fff; }
|
||||||
|
|
||||||
|
.accordion-heading .accordion-toggle.active {
|
||||||
|
color: #fff;
|
||||||
|
background: #666; }
|
||||||
|
|
||||||
|
.accordion-heading .accordion-toggle.inactive {
|
||||||
|
background: #f8f8f8; }
|
||||||
|
|
||||||
|
.accordion-heading.accordionize .accordion-toggle i,
|
||||||
|
.accordion-heading.togglize .accordion-toggle i {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
right: 20px;
|
||||||
|
margin: -8px 0 0 0;
|
||||||
|
color: #666;
|
||||||
|
font-size: 18px;
|
||||||
|
-webkit-transition: all 0.1s linear 0s;
|
||||||
|
-moz-transition: all 0.1s linear 0s;
|
||||||
|
-ms-transition: all 0.1s linear 0s;
|
||||||
|
-o-transition: all 0.1s linear 0s;
|
||||||
|
transition: all 0.1s linear 0s; }
|
||||||
|
|
||||||
|
.accordion-heading:hover .accordion-toggle i {
|
||||||
|
color: #fff; }
|
||||||
|
|
||||||
|
.accordion-heading .accordion-toggle.active i,
|
||||||
|
.accordion-heading:hover .accordion-toggle.inactive i {
|
||||||
|
color: #666; }
|
||||||
|
|
||||||
|
.accordion-heading.accordionize .accordion-toggle.active i,
|
||||||
|
.accordion-heading.togglize .accordion-toggle.active i {
|
||||||
|
color: #fff;
|
||||||
|
-webkit-transform: rotate(180deg);
|
||||||
|
-moz-transform: rotate(180deg);
|
||||||
|
-ms-transform: rotate(180deg);
|
||||||
|
-o-transform: rotate(180deg);
|
||||||
|
transform: rotate(180deg); }
|
||||||
|
|
||||||
|
.accordion-heading.togglize .accordion-toggle i {
|
||||||
|
margin: -8px 0 0 0;
|
||||||
|
font-size: 18px; }
|
||||||
|
|
||||||
|
.accordion-heading.togglize .accordion-toggle .fa-plus-circle {
|
||||||
|
display: block; }
|
||||||
|
|
||||||
|
.accordion-heading.togglize .accordion-toggle.active .fa-plus-circle {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
|
.accordion-heading.togglize .accordion-toggle .fa-minus-circle {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
|
.accordion-heading.togglize .accordion-toggle.active .fa-minus-circle {
|
||||||
|
display: block; }
|
||||||
|
|
||||||
|
.accordion-inner {
|
||||||
|
padding: 16px;
|
||||||
|
border: 1px solid #efefef;
|
||||||
|
background: #fff; }
|
||||||
|
|
||||||
|
/* ==================================================
|
||||||
|
Alerts
|
||||||
|
================================================== */
|
||||||
|
.alert {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
padding: 15px 35px 15px 15px;
|
||||||
|
border: 1px solid #efefef;
|
||||||
|
-webkit-border-radius: 0px;
|
||||||
|
-moz-border-radius: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
text-shadow: none; }
|
||||||
|
|
||||||
|
.alert .close,.modal .close {
|
||||||
|
position: absolute;
|
||||||
|
top: 14px;
|
||||||
|
text-decoration: none;
|
||||||
|
right: 22px;
|
||||||
|
text-shadow: none;
|
||||||
|
line-height: 20px;
|
||||||
|
-webkit-transition: opacity 0.1s linear 0s;
|
||||||
|
-moz-transition: opacity 0.1s linear 0s;
|
||||||
|
-ms-transition: opacity 0.1s linear 0s;
|
||||||
|
-o-transition: opacity 0.1s linear 0s;
|
||||||
|
transition: opacity 0.1s linear 0s; }
|
||||||
|
|
||||||
|
.alert .close:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
opacity: 1; }
|
||||||
|
|
||||||
|
.alert-standard {
|
||||||
|
border-color: #efefef;
|
||||||
|
background-color: #f8f8f8; }
|
||||||
|
|
||||||
|
.alert-standard, .alert-standard .close {
|
||||||
|
color: #666; }
|
||||||
|
|
||||||
|
.alert-success {
|
||||||
|
border-color: #d6e9c6;
|
||||||
|
background-color: #dff0d8; }
|
||||||
|
|
||||||
|
.alert-success, .alert-success .close {
|
||||||
|
color: #468847; }
|
||||||
|
|
||||||
|
.alert-danger,
|
||||||
|
.alert-error {
|
||||||
|
border-color: #ebccd1;
|
||||||
|
background-color: #f2dede; }
|
||||||
|
|
||||||
|
.alert-danger, .alert-danger .close,
|
||||||
|
.alert-error, .alert-error .close {
|
||||||
|
color: #b94a48; }
|
||||||
|
|
||||||
|
.alert-info {
|
||||||
|
border-color: #bce8f1;
|
||||||
|
background-color: #d9edf7; }
|
||||||
|
|
||||||
|
.alert-info, .alert-info .close {
|
||||||
|
color: #3a87ad; }
|
||||||
|
|
||||||
|
.alert-warning {
|
||||||
|
border-color: #faebcc;
|
||||||
|
background-color: #fcf8e3; }
|
||||||
|
|
||||||
|
.alert-warning, .alert-warning .close {
|
||||||
|
color: #c09853; }
|
||||||
|
|
||||||
|
.nav-pills > li {
|
||||||
|
float: left; }
|
||||||
|
|
||||||
|
.nav > li {
|
||||||
|
position: relative;
|
||||||
|
display: block; }
|
||||||
|
|
||||||
|
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #428bca; }
|
||||||
|
|
||||||
|
.nav-pills > li > a {
|
||||||
|
border-radius: 3px;
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
|
.nav > li > a {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
padding: 10px 15px;
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
|
.input-group {
|
||||||
|
position: relative;
|
||||||
|
display: table;
|
||||||
|
border-collapse: separate; }
|
||||||
|
|
||||||
|
.input-group-addon:first-child {
|
||||||
|
border-right: 0; }
|
||||||
|
|
||||||
|
.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0; }
|
||||||
|
|
||||||
|
.input-group-addon {
|
||||||
|
padding: 6px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: normal;
|
||||||
|
line-height: 1;
|
||||||
|
color: #555;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #f8f7f3;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
border-right-color: #cccccc;
|
||||||
|
border-right-style: solid;
|
||||||
|
border-right-width: 1px;
|
||||||
|
border-radius: 3px;
|
||||||
|
border-top-right-radius: 3px;
|
||||||
|
border-bottom-right-radius: 3px; }
|
||||||
|
|
||||||
|
.input-group-addon, .input-group-btn {
|
||||||
|
white-space: nowrap;
|
||||||
|
vertical-align: middle; }
|
||||||
|
|
||||||
|
.input-group-addon, .input-group-btn, .input-group .form-control {
|
||||||
|
display: table-cell; }
|
||||||
|
|
||||||
|
.form-control {
|
||||||
|
display: block;
|
||||||
|
width: 100% !important;
|
||||||
|
height: 34px;
|
||||||
|
padding: 6px 12px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.428571429;
|
||||||
|
color: #555555;
|
||||||
|
vertical-align: middle;
|
||||||
|
background-color: #ffffff;
|
||||||
|
background-image: none;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 3px;
|
||||||
|
border-top-left-radius: 3px;
|
||||||
|
border-bottom-left-radius: 3px;
|
||||||
|
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.075);
|
||||||
|
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.075);
|
||||||
|
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
||||||
|
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
|
||||||
|
|
||||||
|
.navigation {
|
||||||
|
width: 1010px; }
|
||||||
|
|
||||||
|
.panel {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
border-top-color: transparent;
|
||||||
|
border-right-color: transparent;
|
||||||
|
border-bottom-color: transparent;
|
||||||
|
border-left-color: transparent;
|
||||||
|
border-radius: 3px;
|
||||||
|
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
||||||
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
|
||||||
|
|
||||||
|
.panel-default {
|
||||||
|
border-color: #eceae4; }
|
||||||
|
|
||||||
|
.panel-heading {
|
||||||
|
padding: 10px 15px;
|
||||||
|
border-bottom: 1px solid transparent;
|
||||||
|
border-bottom-color: transparent;
|
||||||
|
border-top-right-radius: 3px;
|
||||||
|
border-top-left-radius: 3px; }
|
||||||
|
|
||||||
|
.panel-title {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
font-size: 16px;
|
||||||
|
color: inherit; }
|
||||||
|
|
||||||
|
.list-group-item > .badge {
|
||||||
|
float: right; }
|
||||||
|
|
||||||
|
.badge {
|
||||||
|
display: inline-block;
|
||||||
|
min-width: 10px;
|
||||||
|
padding: 3px 7px;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 1;
|
||||||
|
color: #ffffff;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
vertical-align: baseline;
|
||||||
|
background-color: #999999;
|
||||||
|
border-radius: 10px; }
|
||||||
|
|
||||||
|
.btn-block {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
padding-right: 0;
|
||||||
|
padding-left: 0; }
|
||||||
|
|
||||||
|
.label-default {
|
||||||
|
background-color: #999999; }
|
||||||
|
|
||||||
|
label {
|
||||||
|
display: inline-block;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
font-weight: bold; }
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
float: right !important; }
|
||||||
|
|
||||||
|
.pagination {
|
||||||
|
display: inline-block;
|
||||||
|
padding-left: 0;
|
||||||
|
margin: 20px 0;
|
||||||
|
border-radius: 3px; }
|
||||||
|
.pagination li {
|
||||||
|
display: inline; }
|
||||||
|
.pagination li a,
|
||||||
|
.pagination li span {
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
padding: 6px 12px;
|
||||||
|
margin-left: -1px;
|
||||||
|
line-height: 1.428571429;
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border: 1px solid #eceae4;
|
||||||
|
text-decoration: none; }
|
||||||
|
.pagination li a:hover,
|
||||||
|
.pagination li span:hover,
|
||||||
|
.pagination li a:focus,
|
||||||
|
.pagination li span:focus {
|
||||||
|
background-color: #f8f7f3; }
|
||||||
|
.pagination li:first-child a,
|
||||||
|
.pagination li:first-child span {
|
||||||
|
margin-left: 0;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
border-top-left-radius: 4px; }
|
||||||
|
.pagination li:last-child a,
|
||||||
|
.pagination li:last-child span {
|
||||||
|
border-top-right-radius: 4px;
|
||||||
|
border-bottom-right-radius: 4px; }
|
||||||
|
|
||||||
|
.pagination .active a,
|
||||||
|
.pagination .active span,
|
||||||
|
.pagination .active a:hover,
|
||||||
|
.pagination .active span:hover,
|
||||||
|
.pagination .active a:focus,
|
||||||
|
.pagination .active span:focus {
|
||||||
|
z-index: 2;
|
||||||
|
color: #ffffff;
|
||||||
|
cursor: default;
|
||||||
|
background-color: #428bca;
|
||||||
|
border-color: #428bca; }
|
||||||
|
|
||||||
|
.pagination .disabled span,
|
||||||
|
.pagination .disabled span:hover,
|
||||||
|
.pagination .disabled span:focus,
|
||||||
|
.pagination .disabled a,
|
||||||
|
.pagination .disabled a:hover,
|
||||||
|
.pagination .disabled a:focus {
|
||||||
|
color: #999999;
|
||||||
|
cursor: not-allowed;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border-color: #eceae4; }
|
||||||
|
|
||||||
|
.pagination-lg li a,
|
||||||
|
.pagination-lg li span {
|
||||||
|
padding: 10px 16px;
|
||||||
|
font-size: 18px; }
|
||||||
|
.pagination-lg li:first-child a,
|
||||||
|
.pagination-lg li:first-child span {
|
||||||
|
border-bottom-left-radius: 6px;
|
||||||
|
border-top-left-radius: 6px; }
|
||||||
|
.pagination-lg li:last-child a,
|
||||||
|
.pagination-lg li:last-child span {
|
||||||
|
border-top-right-radius: 6px;
|
||||||
|
border-bottom-right-radius: 6px; }
|
||||||
|
|
||||||
|
.pagination-sm li a,
|
||||||
|
.pagination-sm li span {
|
||||||
|
padding: 5px 10px;
|
||||||
|
font-size: 12px; }
|
||||||
|
.pagination-sm li:first-child a,
|
||||||
|
.pagination-sm li:first-child span {
|
||||||
|
border-bottom-left-radius: 3px;
|
||||||
|
border-top-left-radius: 3px; }
|
||||||
|
.pagination-sm li:last-child a,
|
||||||
|
.pagination-sm li:last-child span {
|
||||||
|
border-top-right-radius: 3px;
|
||||||
|
border-bottom-right-radius: 3px; }
|
||||||
|
|
||||||
|
.input-group-btn {
|
||||||
|
position: relative;
|
||||||
|
white-space: nowrap;
|
||||||
|
vertical-align: middle;
|
||||||
|
display: table-cell; }
|
||||||
|
|
||||||
|
.btn:focus, .btn.focus {
|
||||||
|
box-shadow: none;
|
||||||
|
color: #fff; }
|
||||||
|
|
||||||
|
.btn-default:hover,
|
||||||
|
.btn-default:focus,
|
||||||
|
.btn-default:active,
|
||||||
|
.btn-default.active,
|
||||||
|
.open .dropdown-toggle.btn-default {
|
||||||
|
color: #333333;
|
||||||
|
background-color: #ebebeb;
|
||||||
|
border-color: #adadad; }
|
||||||
|
|
||||||
|
@media screen and (min-width: 576px) {
|
||||||
|
.modal-dialog {
|
||||||
|
max-width: 600px;
|
||||||
|
margin: 30px auto; }
|
||||||
|
|
||||||
|
.modal-content {
|
||||||
|
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||||||
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } }
|
||||||
|
.modal-header {
|
||||||
|
display: block; }
|
||||||
|
|
||||||
|
.modal-body {
|
||||||
|
padding: 20px; }
|
||||||
|
|
||||||
|
.modal-footer {
|
||||||
|
margin-top: 15px;
|
||||||
|
padding: 19px 20px 20px; }
|
||||||
|
|
||||||
|
.close {
|
||||||
|
opacity: 0.2; }
|
||||||
|
|
||||||
|
small, .small {
|
||||||
|
font-size: 85%; }
|
||||||
|
|
||||||
|
.list-group {
|
||||||
|
margin-bottom: 20px; }
|
||||||
|
.list-group .list-group-item {
|
||||||
|
padding: 10px 15px; }
|
||||||
|
.list-group .list-group-item .badge {
|
||||||
|
float: right;
|
||||||
|
min-width: 10px;
|
||||||
|
padding: 3px 7px;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 12px;
|
||||||
|
border-radius: 10px; }
|
||||||
|
|
||||||
|
.text-muted {
|
||||||
|
color: #999 !important;
|
||||||
|
font-size: 14px !important; }
|
||||||
|
|
||||||
|
blockquote p {
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 1.25; }
|
||||||
|
|
||||||
|
.input-group {
|
||||||
|
position: relative;
|
||||||
|
display: table;
|
||||||
|
border-collapse: separate; }
|
||||||
|
|
||||||
|
.input-group-addon:first-child {
|
||||||
|
border-right: 0; }
|
||||||
|
|
||||||
|
.input-group .form-control:first-child,
|
||||||
|
.input-group-addon:first-child,
|
||||||
|
.input-group-btn:first-child > .btn,
|
||||||
|
.input-group-btn:first-child > .dropdown-toggle,
|
||||||
|
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0; }
|
||||||
|
|
||||||
|
.input-group-addon {
|
||||||
|
padding: 6px 12px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: normal;
|
||||||
|
line-height: 1;
|
||||||
|
color: #555555;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #f8f7f3;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 3px; }
|
||||||
|
|
||||||
|
.input-group-addon,
|
||||||
|
.input-group-btn {
|
||||||
|
width: 1%;
|
||||||
|
white-space: nowrap;
|
||||||
|
vertical-align: middle; }
|
||||||
|
|
||||||
|
.input-group-addon,
|
||||||
|
.input-group-btn,
|
||||||
|
.input-group .form-control {
|
||||||
|
display: table-cell; }
|
||||||
|
|
||||||
|
.label {
|
||||||
|
display: inline;
|
||||||
|
padding: .2em .6em .3em;
|
||||||
|
font-size: 75%;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 1;
|
||||||
|
color: #ffffff;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
vertical-align: baseline;
|
||||||
|
border-radius: .25em; }
|
||||||
|
|
||||||
|
.input-group .form-control {
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 0; }
|
||||||
|
|
||||||
|
.input-group-lg > .form-control,
|
||||||
|
.input-group-lg > .input-group-btn > .btn {
|
||||||
|
height: 46px !important;
|
||||||
|
padding: 10px 16px;
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 1.33;
|
||||||
|
border-radius: 3px; }
|
||||||
|
|
||||||
|
.input-group-btn:last-child > .btn {
|
||||||
|
margin-left: -1px; }
|
||||||
|
|
||||||
|
.form-control {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 34px;
|
||||||
|
padding: 6px 12px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.428571429;
|
||||||
|
color: #555555;
|
||||||
|
vertical-align: middle;
|
||||||
|
background-color: #ffffff;
|
||||||
|
background-image: none;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 3px;
|
||||||
|
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.075);
|
||||||
|
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.075);
|
||||||
|
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
||||||
|
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
|
||||||
|
|
||||||
|
.input-lg {
|
||||||
|
height: 46px;
|
||||||
|
padding: 10px 16px;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.33;
|
||||||
|
border-radius: 3px; }
|
||||||
|
|
||||||
|
.pager {
|
||||||
|
padding-left: 0;
|
||||||
|
margin: 20px 0;
|
||||||
|
text-align: center;
|
||||||
|
list-style: none; }
|
||||||
|
|
||||||
|
.pager li {
|
||||||
|
display: inline; }
|
||||||
|
|
||||||
|
.pager li > a,
|
||||||
|
.pager li > span {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 5px 14px;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border: 1px solid #eceae4;
|
||||||
|
border-radius: 15px;
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
|
.pager li > a:hover,
|
||||||
|
.pager li > a:focus {
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: #f8f7f3; }
|
||||||
|
|
||||||
|
.btn-xs {
|
||||||
|
padding: 1px 5px;
|
||||||
|
font-size: 11px;
|
||||||
|
line-height: 1.5;
|
||||||
|
border-radius: 3px;
|
||||||
|
text-transform: none; }
|
||||||
|
|
||||||
|
.nav-pills > li {
|
||||||
|
float: left; }
|
||||||
|
|
||||||
|
.nav > li {
|
||||||
|
position: relative;
|
||||||
|
display: block; }
|
||||||
|
|
||||||
|
.nav-pills > li.active > a,
|
||||||
|
.nav-pills > li.active > a:hover,
|
||||||
|
.nav-pills > li.active > a:focus {
|
||||||
|
color: #fff; }
|
||||||
|
|
||||||
|
.nav-pills > li > a {
|
||||||
|
border-radius: 3px;
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
|
.nav > li > a {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
padding: 10px 15px;
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
|
.lead {
|
||||||
|
font-size: 21px; }
|
||||||
|
|
||||||
|
.input-group .form-control {
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 0; }
|
||||||
|
|
||||||
|
.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
|
||||||
|
height: 41px;
|
||||||
|
padding: 10px 16px;
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 1.33;
|
||||||
|
border-radius: 3px;
|
||||||
|
border-top-left-radius: 3px;
|
||||||
|
border-bottom-left-radius: 3px; }
|
||||||
|
|
||||||
|
.img-thumbnail {
|
||||||
|
display: inline-block;
|
||||||
|
height: auto;
|
||||||
|
max-width: 100%;
|
||||||
|
padding: 4px;
|
||||||
|
line-height: 1.428571429;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border: 1px solid #eceae4;
|
||||||
|
border-radius: 3px;
|
||||||
|
-webkit-transition: all 0.2s ease-in-out;
|
||||||
|
transition: all 0.2s ease-in-out; }
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,85 @@
|
||||||
|
.text-primary, .btn-primary .badge, .btn-link, a.list-group-item.active > .badge, .nav-pills > .active > a > .badge, p.drop-caps:first-child:first-letter, .accent-color, .events-listing .event-detail h4 a, .featured-sermon h4 a, .page-header h1, .post-more, ul.nav-list-primary > li a:hover, .widget_recent_comments a, .navigation .megamenu-container .megamenu-sub-title, .cause-item .progress-label, .payment-to-cause a, .products-list li .product-price, .products-list li .product-details h3 a:hover {
|
||||||
|
color: #779324; }
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #779324; }
|
||||||
|
|
||||||
|
.events-listing .event-detail h4 a:hover, .featured-sermon h4 a:hover, .featured-gallery p, .post-more:hover, .widget_recent_comments a:hover {
|
||||||
|
opacity: 0.9; }
|
||||||
|
|
||||||
|
p.drop-caps.secondary:first-child:first-letter, .accent-bg, .fa.accent-color, .btn-primary,
|
||||||
|
.btn-primary.disabled,
|
||||||
|
.btn-primary[disabled],
|
||||||
|
fieldset[disabled] .btn-primary,
|
||||||
|
.btn-primary.disabled:hover,
|
||||||
|
.btn-primary[disabled]:hover,
|
||||||
|
fieldset[disabled] .btn-primary:hover,
|
||||||
|
.btn-primary.disabled:focus,
|
||||||
|
.btn-primary[disabled]:focus,
|
||||||
|
fieldset[disabled] .btn-primary:focus,
|
||||||
|
.btn-primary.disabled:active,
|
||||||
|
.btn-primary[disabled]:active,
|
||||||
|
fieldset[disabled] .btn-primary:active,
|
||||||
|
.btn-primary.disabled.active,
|
||||||
|
.btn-primary[disabled].active,
|
||||||
|
fieldset[disabled] .btn-primary.active,
|
||||||
|
.dropdown-menu > .active > a,
|
||||||
|
.dropdown-menu > .active > a:hover,
|
||||||
|
.dropdown-menu > .active > a:focus,
|
||||||
|
.nav-pills > li.active > a,
|
||||||
|
.nav-pills > li.active > a:hover,
|
||||||
|
.nav-pills > li.active > a:focus,
|
||||||
|
.pagination > .active > a,
|
||||||
|
.pagination > .active > span,
|
||||||
|
.pagination > .active > a:hover,
|
||||||
|
.pagination > .active > span:hover,
|
||||||
|
.pagination > .active > a:focus,
|
||||||
|
.pagination > .active > span:focus,
|
||||||
|
.label-primary,
|
||||||
|
.progress-bar,
|
||||||
|
a.list-group-item.active,
|
||||||
|
a.list-group-item.active:hover,
|
||||||
|
a.list-group-item.active:focus,
|
||||||
|
.panel-primary > .panel-heading, .carousel-indicators .active, .owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span, hr.sm, .flex-control-nav a:hover, .flex-control-nav a.flex-active, .title-note, .timer-col #days, .featured-block strong, .featured-gallery, .nav-backed-header, .next-prev-nav a, .event-description .panel-heading, .media-box .media-box-wrapper, .staff-item .social-icons a, .accordion-heading .accordion-toggle.active, .accordion-heading:hover .accordion-toggle, .accordion-heading:hover .accordion-toggle.inactive, .nav-tabs li a:hover, .nav-tabs li a:active, .nav-tabs li a.active, .fc-event, .timeline > li > .timeline-badge, .header-style3 .toprow, .featured-star, .featured-event-time, .goingon-events-floater-inner, .products-list .product-image .add-to-cart {
|
||||||
|
background-color: #779324; }
|
||||||
|
|
||||||
|
.mejs-controls .mejs-time-rail .mejs-time-loaded {
|
||||||
|
background: #779324; }
|
||||||
|
|
||||||
|
.btn-primary:hover,
|
||||||
|
.btn-primary:focus,
|
||||||
|
.btn-primary:active,
|
||||||
|
.btn-primary.active,
|
||||||
|
.open .dropdown-toggle.btn-primary, .next-prev-nav a:hover, .staff-item .social-icons a:hover {
|
||||||
|
background: #779324;
|
||||||
|
opacity: 0.9; }
|
||||||
|
|
||||||
|
.nav .open > a,
|
||||||
|
.nav .open > a:hover,
|
||||||
|
.nav .open > a:focus,
|
||||||
|
.pagination > .active > a,
|
||||||
|
.pagination > .active > span,
|
||||||
|
.pagination > .active > a:hover,
|
||||||
|
.pagination > .active > span:hover,
|
||||||
|
.pagination > .active > a:focus,
|
||||||
|
.pagination > .active > span:focus,
|
||||||
|
a.thumbnail:hover,
|
||||||
|
a.thumbnail:focus,
|
||||||
|
a.thumbnail.active,
|
||||||
|
a.list-group-item.active,
|
||||||
|
a.list-group-item.active:hover,
|
||||||
|
a.list-group-item.active:focus,
|
||||||
|
.panel-primary,
|
||||||
|
.panel-primary > .panel-heading, .fc-event {
|
||||||
|
border-color: #779324; }
|
||||||
|
|
||||||
|
.panel-primary > .panel-heading + .panel-collapse .panel-body {
|
||||||
|
border-top-color: #779324; }
|
||||||
|
|
||||||
|
.panel-primary > .panel-footer + .panel-collapse .panel-body {
|
||||||
|
border-bottom-color: #779324; }
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
border-left-color: #779324; }
|
||||||
|
|
||||||
|
/* Color Scheme Specific Classes */
|
|
@ -0,0 +1,351 @@
|
||||||
|
/* Magnific Popup CSS */
|
||||||
|
.mfp-bg {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 1042;
|
||||||
|
overflow: hidden;
|
||||||
|
position: fixed;
|
||||||
|
background: #0b0b0b;
|
||||||
|
opacity: 0.8; }
|
||||||
|
|
||||||
|
.mfp-wrap {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 1043;
|
||||||
|
position: fixed;
|
||||||
|
outline: none !important;
|
||||||
|
-webkit-backface-visibility: hidden; }
|
||||||
|
|
||||||
|
.mfp-container {
|
||||||
|
text-align: center;
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
padding: 0 8px;
|
||||||
|
box-sizing: border-box; }
|
||||||
|
|
||||||
|
.mfp-container:before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
height: 100%;
|
||||||
|
vertical-align: middle; }
|
||||||
|
|
||||||
|
.mfp-align-top .mfp-container:before {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
|
.mfp-content {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: left;
|
||||||
|
z-index: 1045; }
|
||||||
|
|
||||||
|
.mfp-inline-holder .mfp-content,
|
||||||
|
.mfp-ajax-holder .mfp-content {
|
||||||
|
width: 100%;
|
||||||
|
cursor: auto; }
|
||||||
|
|
||||||
|
.mfp-ajax-cur {
|
||||||
|
cursor: progress; }
|
||||||
|
|
||||||
|
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
|
||||||
|
cursor: -moz-zoom-out;
|
||||||
|
cursor: -webkit-zoom-out;
|
||||||
|
cursor: zoom-out; }
|
||||||
|
|
||||||
|
.mfp-zoom {
|
||||||
|
cursor: pointer;
|
||||||
|
cursor: -webkit-zoom-in;
|
||||||
|
cursor: -moz-zoom-in;
|
||||||
|
cursor: zoom-in; }
|
||||||
|
|
||||||
|
.mfp-auto-cursor .mfp-content {
|
||||||
|
cursor: auto; }
|
||||||
|
|
||||||
|
.mfp-close,
|
||||||
|
.mfp-arrow,
|
||||||
|
.mfp-preloader,
|
||||||
|
.mfp-counter {
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
user-select: none; }
|
||||||
|
|
||||||
|
.mfp-loading.mfp-figure {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
|
.mfp-hide {
|
||||||
|
display: none !important; }
|
||||||
|
|
||||||
|
.mfp-preloader {
|
||||||
|
color: #CCC;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
width: auto;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: -0.8em;
|
||||||
|
left: 8px;
|
||||||
|
right: 8px;
|
||||||
|
z-index: 1044; }
|
||||||
|
.mfp-preloader a {
|
||||||
|
color: #CCC; }
|
||||||
|
.mfp-preloader a:hover {
|
||||||
|
color: #FFF; }
|
||||||
|
|
||||||
|
.mfp-s-ready .mfp-preloader {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
|
.mfp-s-error .mfp-content {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
|
button.mfp-close,
|
||||||
|
button.mfp-arrow {
|
||||||
|
overflow: visible;
|
||||||
|
cursor: pointer;
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
display: block;
|
||||||
|
outline: none;
|
||||||
|
padding: 0;
|
||||||
|
z-index: 1046;
|
||||||
|
box-shadow: none;
|
||||||
|
touch-action: manipulation; }
|
||||||
|
|
||||||
|
button::-moz-focus-inner {
|
||||||
|
padding: 0;
|
||||||
|
border: 0; }
|
||||||
|
|
||||||
|
.mfp-close {
|
||||||
|
width: 44px;
|
||||||
|
height: 44px;
|
||||||
|
line-height: 44px;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
text-decoration: none;
|
||||||
|
text-align: center;
|
||||||
|
opacity: 0.65;
|
||||||
|
padding: 0 0 18px 10px;
|
||||||
|
color: #FFF;
|
||||||
|
font-style: normal;
|
||||||
|
font-size: 28px;
|
||||||
|
font-family: Arial, Baskerville, monospace; }
|
||||||
|
.mfp-close:hover,
|
||||||
|
.mfp-close:focus {
|
||||||
|
opacity: 1; }
|
||||||
|
.mfp-close:active {
|
||||||
|
top: 1px; }
|
||||||
|
|
||||||
|
.mfp-close-btn-in .mfp-close {
|
||||||
|
color: #333; }
|
||||||
|
|
||||||
|
.mfp-image-holder .mfp-close,
|
||||||
|
.mfp-iframe-holder .mfp-close {
|
||||||
|
color: #FFF;
|
||||||
|
right: -6px;
|
||||||
|
text-align: right;
|
||||||
|
padding-right: 6px;
|
||||||
|
width: 100%; }
|
||||||
|
|
||||||
|
.mfp-counter {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
color: #CCC;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 18px;
|
||||||
|
white-space: nowrap; }
|
||||||
|
|
||||||
|
.mfp-arrow {
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0.65;
|
||||||
|
margin: 0;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -55px;
|
||||||
|
padding: 0;
|
||||||
|
width: 90px;
|
||||||
|
height: 110px;
|
||||||
|
-webkit-tap-highlight-color: transparent; }
|
||||||
|
.mfp-arrow:active {
|
||||||
|
margin-top: -54px; }
|
||||||
|
.mfp-arrow:hover,
|
||||||
|
.mfp-arrow:focus {
|
||||||
|
opacity: 1; }
|
||||||
|
.mfp-arrow:before,
|
||||||
|
.mfp-arrow:after {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
margin-top: 35px;
|
||||||
|
margin-left: 35px;
|
||||||
|
border: medium inset transparent; }
|
||||||
|
.mfp-arrow:after {
|
||||||
|
border-top-width: 13px;
|
||||||
|
border-bottom-width: 13px;
|
||||||
|
top: 8px; }
|
||||||
|
.mfp-arrow:before {
|
||||||
|
border-top-width: 21px;
|
||||||
|
border-bottom-width: 21px;
|
||||||
|
opacity: 0.7; }
|
||||||
|
|
||||||
|
.mfp-arrow-left {
|
||||||
|
left: 0; }
|
||||||
|
.mfp-arrow-left:after {
|
||||||
|
border-right: 17px solid #FFF;
|
||||||
|
margin-left: 31px; }
|
||||||
|
.mfp-arrow-left:before {
|
||||||
|
margin-left: 25px;
|
||||||
|
border-right: 27px solid #3F3F3F; }
|
||||||
|
|
||||||
|
.mfp-arrow-right {
|
||||||
|
right: 0; }
|
||||||
|
.mfp-arrow-right:after {
|
||||||
|
border-left: 17px solid #FFF;
|
||||||
|
margin-left: 39px; }
|
||||||
|
.mfp-arrow-right:before {
|
||||||
|
border-left: 27px solid #3F3F3F; }
|
||||||
|
|
||||||
|
.mfp-iframe-holder {
|
||||||
|
padding-top: 40px;
|
||||||
|
padding-bottom: 40px; }
|
||||||
|
.mfp-iframe-holder .mfp-content {
|
||||||
|
line-height: 0;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 900px; }
|
||||||
|
.mfp-iframe-holder .mfp-close {
|
||||||
|
top: -40px; }
|
||||||
|
|
||||||
|
.mfp-iframe-scaler {
|
||||||
|
width: 100%;
|
||||||
|
height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
padding-top: 56.25%; }
|
||||||
|
.mfp-iframe-scaler iframe {
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||||
|
background: #000; }
|
||||||
|
|
||||||
|
/* Main image in popup */
|
||||||
|
img.mfp-img {
|
||||||
|
width: auto;
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
display: block;
|
||||||
|
line-height: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 40px 0 40px;
|
||||||
|
margin: 0 auto; }
|
||||||
|
|
||||||
|
/* The shadow behind the image */
|
||||||
|
.mfp-figure {
|
||||||
|
line-height: 0; }
|
||||||
|
.mfp-figure:after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 40px;
|
||||||
|
bottom: 40px;
|
||||||
|
display: block;
|
||||||
|
right: 0;
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
z-index: -1;
|
||||||
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||||
|
background: #444; }
|
||||||
|
.mfp-figure small {
|
||||||
|
color: #BDBDBD;
|
||||||
|
display: block;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 14px; }
|
||||||
|
.mfp-figure figure {
|
||||||
|
margin: 0; }
|
||||||
|
|
||||||
|
.mfp-bottom-bar {
|
||||||
|
margin-top: -36px;
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
cursor: auto; }
|
||||||
|
|
||||||
|
.mfp-title {
|
||||||
|
text-align: left;
|
||||||
|
line-height: 18px;
|
||||||
|
color: #F3F3F3;
|
||||||
|
word-wrap: break-word;
|
||||||
|
padding-right: 36px; }
|
||||||
|
|
||||||
|
.mfp-image-holder .mfp-content {
|
||||||
|
max-width: 100%; }
|
||||||
|
|
||||||
|
.mfp-gallery .mfp-image-holder .mfp-figure {
|
||||||
|
cursor: pointer; }
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
|
||||||
|
/**
|
||||||
|
* Remove all paddings around the image on small screen
|
||||||
|
*/
|
||||||
|
.mfp-img-mobile .mfp-image-holder {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0; }
|
||||||
|
.mfp-img-mobile img.mfp-img {
|
||||||
|
padding: 0; }
|
||||||
|
.mfp-img-mobile .mfp-figure:after {
|
||||||
|
top: 0;
|
||||||
|
bottom: 0; }
|
||||||
|
.mfp-img-mobile .mfp-figure small {
|
||||||
|
display: inline;
|
||||||
|
margin-left: 5px; }
|
||||||
|
.mfp-img-mobile .mfp-bottom-bar {
|
||||||
|
background: rgba(0, 0, 0, 0.6);
|
||||||
|
bottom: 0;
|
||||||
|
margin: 0;
|
||||||
|
top: auto;
|
||||||
|
padding: 3px 5px;
|
||||||
|
position: fixed;
|
||||||
|
box-sizing: border-box; }
|
||||||
|
.mfp-img-mobile .mfp-bottom-bar:empty {
|
||||||
|
padding: 0; }
|
||||||
|
.mfp-img-mobile .mfp-counter {
|
||||||
|
right: 5px;
|
||||||
|
top: 3px; }
|
||||||
|
.mfp-img-mobile .mfp-close {
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 35px;
|
||||||
|
height: 35px;
|
||||||
|
line-height: 35px;
|
||||||
|
background: rgba(0, 0, 0, 0.6);
|
||||||
|
position: fixed;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0; } }
|
||||||
|
|
||||||
|
@media all and (max-width: 900px) {
|
||||||
|
.mfp-arrow {
|
||||||
|
-webkit-transform: scale(0.75);
|
||||||
|
transform: scale(0.75); }
|
||||||
|
.mfp-arrow-left {
|
||||||
|
-webkit-transform-origin: 0;
|
||||||
|
transform-origin: 0; }
|
||||||
|
.mfp-arrow-right {
|
||||||
|
-webkit-transform-origin: 100%;
|
||||||
|
transform-origin: 100%; }
|
||||||
|
.mfp-container {
|
||||||
|
padding-left: 6px;
|
||||||
|
padding-right: 6px; } }
|
|
@ -0,0 +1,870 @@
|
||||||
|
.mejs-container {
|
||||||
|
position: relative;
|
||||||
|
background: #000;
|
||||||
|
font-family: Helvetica, Arial;
|
||||||
|
text-align: left;
|
||||||
|
vertical-align: top;
|
||||||
|
text-indent: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.me-plugin {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-embed, .mejs-embed body {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background: #000;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-fullscreen {
|
||||||
|
/* set it to not show scroll bars so 100% will work */
|
||||||
|
overflow: hidden !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-container-fullscreen {
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
.mejs-container-fullscreen .mejs-mediaelement,
|
||||||
|
.mejs-container-fullscreen video {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-clear {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Start: LAYERS */
|
||||||
|
.mejs-background {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-mediaelement {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-poster {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
background-size: contain ;
|
||||||
|
background-position: 50% 50% ;
|
||||||
|
background-repeat: no-repeat ;
|
||||||
|
}
|
||||||
|
:root .mejs-poster img {
|
||||||
|
display: none ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-poster img {
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-overlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-overlay-play {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-overlay-button {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
margin: -50px 0 0 -50px;
|
||||||
|
background: url(bigplay.svg) no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-svg .mejs-overlay-button {
|
||||||
|
background-image: url(bigplay.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-overlay:hover .mejs-overlay-button {
|
||||||
|
background-position: 0 -100px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-overlay-loading {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
margin: -40px 0 0 -40px;
|
||||||
|
background: #333;
|
||||||
|
background: url(background.png);
|
||||||
|
background: rgba(0, 0, 0, 0.9);
|
||||||
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50,50,50,0.9)), to(rgba(0,0,0,0.9)));
|
||||||
|
background: -webkit-linear-gradient(top, rgba(50,50,50,0.9), rgba(0,0,0,0.9));
|
||||||
|
background: -moz-linear-gradient(top, rgba(50,50,50,0.9), rgba(0,0,0,0.9));
|
||||||
|
background: -o-linear-gradient(top, rgba(50,50,50,0.9), rgba(0,0,0,0.9));
|
||||||
|
background: -ms-linear-gradient(top, rgba(50,50,50,0.9), rgba(0,0,0,0.9));
|
||||||
|
background: linear-gradient(rgba(50,50,50,0.9), rgba(0,0,0,0.9));
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-overlay-loading span {
|
||||||
|
display: block;
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
background: transparent url(loading.gif) 50% 50% no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* End: LAYERS */
|
||||||
|
|
||||||
|
/* Start: CONTROL BAR */
|
||||||
|
.mejs-container .mejs-controls {
|
||||||
|
position: absolute;
|
||||||
|
list-style-type: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
background: url(background.png);
|
||||||
|
background: rgba(0, 0, 0, 0.7);
|
||||||
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50,50,50,0.7)), to(rgba(0,0,0,0.7)));
|
||||||
|
background: -webkit-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
|
||||||
|
background: -moz-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
|
||||||
|
background: -o-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
|
||||||
|
background: -ms-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
|
||||||
|
background: linear-gradient(rgba(50,50,50,0.7), rgba(0,0,0,0.7));
|
||||||
|
height: 30px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.mejs-container .mejs-controls div {
|
||||||
|
list-style-type: none;
|
||||||
|
background-image: none;
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
width: 26px;
|
||||||
|
height: 26px;
|
||||||
|
font-size: 11px;
|
||||||
|
line-height: 11px;
|
||||||
|
font-family: Helvetica, Arial;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-button button {
|
||||||
|
cursor: pointer;
|
||||||
|
display: block;
|
||||||
|
font-size: 0;
|
||||||
|
line-height: 0;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 7px 5px;
|
||||||
|
padding: 0;
|
||||||
|
position: absolute;
|
||||||
|
height: 16px;
|
||||||
|
width: 16px;
|
||||||
|
border: 0;
|
||||||
|
background: transparent url(controls.svg) no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-svg .mejs-controls .mejs-button button {
|
||||||
|
background-image: url(controls.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* :focus for accessibility */
|
||||||
|
.mejs-controls .mejs-button button:focus {
|
||||||
|
outline: solid 1px yellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* End: CONTROL BAR */
|
||||||
|
|
||||||
|
/* Start: Time (Current / Duration) */
|
||||||
|
.mejs-container .mejs-controls .mejs-time {
|
||||||
|
color: #fff;
|
||||||
|
display: block;
|
||||||
|
height: 17px;
|
||||||
|
width: auto;
|
||||||
|
padding: 8px 3px 0 3px ;
|
||||||
|
overflow: hidden;
|
||||||
|
text-align: center;
|
||||||
|
-moz-box-sizing: content-box;
|
||||||
|
-webkit-box-sizing: content-box;
|
||||||
|
box-sizing: content-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-container .mejs-controls .mejs-time span {
|
||||||
|
color: #fff;
|
||||||
|
font-size: 11px;
|
||||||
|
line-height: 12px;
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
margin: 1px 2px 0 0;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
/* End: Time (Current / Duration) */
|
||||||
|
|
||||||
|
/* Start: Play/Pause/Stop */
|
||||||
|
.mejs-controls .mejs-play button {
|
||||||
|
background-position: 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-pause button {
|
||||||
|
background-position: 0 -16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-stop button {
|
||||||
|
background-position: -112px 0;
|
||||||
|
}
|
||||||
|
/* Start: Play/Pause/Stop */
|
||||||
|
|
||||||
|
/* Start: Progress Bar */
|
||||||
|
.mejs-controls div.mejs-time-rail {
|
||||||
|
direction: ltr;
|
||||||
|
width: 200px;
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-time-rail span {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
width: 180px;
|
||||||
|
height: 10px;
|
||||||
|
-webkit-border-radius: 2px;
|
||||||
|
-moz-border-radius: 2px;
|
||||||
|
border-radius: 2px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-time-rail .mejs-time-total {
|
||||||
|
margin: 5px;
|
||||||
|
background: #333;
|
||||||
|
background: rgba(50,50,50,0.8);
|
||||||
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
|
||||||
|
background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
||||||
|
background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
||||||
|
background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
||||||
|
background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
||||||
|
background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-time-rail .mejs-time-buffering {
|
||||||
|
width: 100%;
|
||||||
|
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
|
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
||||||
|
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
|
background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
|
background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
|
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
|
-webkit-background-size: 15px 15px;
|
||||||
|
-moz-background-size: 15px 15px;
|
||||||
|
-o-background-size: 15px 15px;
|
||||||
|
background-size: 15px 15px;
|
||||||
|
-webkit-animation: buffering-stripes 2s linear infinite;
|
||||||
|
-moz-animation: buffering-stripes 2s linear infinite;
|
||||||
|
-ms-animation: buffering-stripes 2s linear infinite;
|
||||||
|
-o-animation: buffering-stripes 2s linear infinite;
|
||||||
|
animation: buffering-stripes 2s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }
|
||||||
|
@-moz-keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }
|
||||||
|
@-ms-keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }
|
||||||
|
@-o-keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }
|
||||||
|
@keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }
|
||||||
|
|
||||||
|
.mejs-controls .mejs-time-rail .mejs-time-loaded {
|
||||||
|
background: #3caac8;
|
||||||
|
background: rgba(60,170,200,0.8);
|
||||||
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(44,124,145,0.8)), to(rgba(78,183,212,0.8)));
|
||||||
|
background: -webkit-linear-gradient(top, rgba(44,124,145,0.8), rgba(78,183,212,0.8));
|
||||||
|
background: -moz-linear-gradient(top, rgba(44,124,145,0.8), rgba(78,183,212,0.8));
|
||||||
|
background: -o-linear-gradient(top, rgba(44,124,145,0.8), rgba(78,183,212,0.8));
|
||||||
|
background: -ms-linear-gradient(top, rgba(44,124,145,0.8), rgba(78,183,212,0.8));
|
||||||
|
background: linear-gradient(rgba(44,124,145,0.8), rgba(78,183,212,0.8));
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-time-rail .mejs-time-current {
|
||||||
|
background: #fff;
|
||||||
|
background: rgba(255,255,255,0.8);
|
||||||
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.9)), to(rgba(200,200,200,0.8)));
|
||||||
|
background: -webkit-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
|
||||||
|
background: -moz-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
|
||||||
|
background: -o-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
|
||||||
|
background: -ms-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
|
||||||
|
background: linear-gradient(rgba(255,255,255,0.9), rgba(200,200,200,0.8));
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-time-rail .mejs-time-handle {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
margin: 0;
|
||||||
|
width: 10px;
|
||||||
|
background: #fff;
|
||||||
|
-webkit-border-radius: 5px;
|
||||||
|
-moz-border-radius: 5px;
|
||||||
|
border-radius: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
border: solid 2px #333;
|
||||||
|
top: -2px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-time-rail .mejs-time-float {
|
||||||
|
position: absolute;
|
||||||
|
display: none;
|
||||||
|
background: #eee;
|
||||||
|
width: 36px;
|
||||||
|
height: 17px;
|
||||||
|
border: solid 1px #333;
|
||||||
|
top: -26px;
|
||||||
|
margin-left: -18px;
|
||||||
|
text-align: center;
|
||||||
|
color: #111;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-time-rail .mejs-time-float-current {
|
||||||
|
margin: 2px;
|
||||||
|
width: 30px;
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-time-rail .mejs-time-float-corner {
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
line-height: 0;
|
||||||
|
border: solid 5px #eee;
|
||||||
|
border-color: #eee transparent transparent transparent;
|
||||||
|
-webkit-border-radius: 0;
|
||||||
|
-moz-border-radius: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
top: 15px;
|
||||||
|
left: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float {
|
||||||
|
width: 48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current {
|
||||||
|
width: 44px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner {
|
||||||
|
left: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
.mejs-controls .mejs-time-rail:hover .mejs-time-handle {
|
||||||
|
visibility:visible;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
/* End: Progress Bar */
|
||||||
|
|
||||||
|
/* Start: Fullscreen */
|
||||||
|
.mejs-controls .mejs-fullscreen-button button {
|
||||||
|
background-position: -32px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-unfullscreen button {
|
||||||
|
background-position: -32px -16px;
|
||||||
|
}
|
||||||
|
/* End: Fullscreen */
|
||||||
|
|
||||||
|
|
||||||
|
/* Start: Mute/Volume */
|
||||||
|
.mejs-controls .mejs-volume-button {
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-mute button {
|
||||||
|
background-position: -16px -16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-unmute button {
|
||||||
|
background-position: -16px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-volume-button {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-volume-button .mejs-volume-slider {
|
||||||
|
display: none;
|
||||||
|
height: 115px;
|
||||||
|
width: 25px;
|
||||||
|
background: url(background.png);
|
||||||
|
background: rgba(50, 50, 50, 0.7);
|
||||||
|
-webkit-border-radius: 0;
|
||||||
|
-moz-border-radius: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
top: -115px;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1;
|
||||||
|
position: absolute;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-volume-button:hover {
|
||||||
|
-webkit-border-radius: 0 0 4px 4px;
|
||||||
|
-moz-border-radius: 0 0 4px 4px;
|
||||||
|
border-radius: 0 0 4px 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
.mejs-controls .mejs-volume-button:hover .mejs-volume-slider {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total {
|
||||||
|
position: absolute;
|
||||||
|
left: 11px;
|
||||||
|
top: 8px;
|
||||||
|
width: 2px;
|
||||||
|
height: 100px;
|
||||||
|
background: #ddd;
|
||||||
|
background: rgba(255, 255, 255, 0.5);
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
|
||||||
|
position: absolute;
|
||||||
|
left: 11px;
|
||||||
|
top: 8px;
|
||||||
|
width: 2px;
|
||||||
|
height: 100px;
|
||||||
|
background: #ddd;
|
||||||
|
background: rgba(255, 255, 255, 0.9);
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
|
||||||
|
position: absolute;
|
||||||
|
left: 4px;
|
||||||
|
top: -3px;
|
||||||
|
width: 16px;
|
||||||
|
height: 6px;
|
||||||
|
background: #ddd;
|
||||||
|
background: rgba(255, 255, 255, 0.9);
|
||||||
|
cursor: N-resize;
|
||||||
|
-webkit-border-radius: 1px;
|
||||||
|
-moz-border-radius: 1px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* horizontal version */
|
||||||
|
.mejs-controls div.mejs-horizontal-volume-slider {
|
||||||
|
height: 26px;
|
||||||
|
width: 60px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 11px;
|
||||||
|
width: 50px;
|
||||||
|
height: 8px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 1px;
|
||||||
|
-webkit-border-radius: 2px;
|
||||||
|
-moz-border-radius: 2px;
|
||||||
|
border-radius: 2px;
|
||||||
|
background: #333;
|
||||||
|
background: rgba(50,50,50,0.8);
|
||||||
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
|
||||||
|
background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
||||||
|
background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
||||||
|
background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
||||||
|
background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
||||||
|
background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 11px;
|
||||||
|
width: 50px;
|
||||||
|
height: 8px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 1px;
|
||||||
|
-webkit-border-radius: 2px;
|
||||||
|
-moz-border-radius: 2px;
|
||||||
|
border-radius: 2px;
|
||||||
|
background: #fff;
|
||||||
|
background: rgba(255,255,255,0.8);
|
||||||
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.9)), to(rgba(200,200,200,0.8)));
|
||||||
|
background: -webkit-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
|
||||||
|
background: -moz-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
|
||||||
|
background: -o-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
|
||||||
|
background: -ms-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
|
||||||
|
background: linear-gradient(rgba(255,255,255,0.9), rgba(200,200,200,0.8));
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* End: Mute/Volume */
|
||||||
|
|
||||||
|
/* Start: Track (Captions and Chapters) */
|
||||||
|
.mejs-controls .mejs-captions-button {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-captions-button button {
|
||||||
|
background-position: -48px 0;
|
||||||
|
}
|
||||||
|
.mejs-controls .mejs-captions-button .mejs-captions-selector {
|
||||||
|
visibility: hidden;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 26px;
|
||||||
|
right: -10px;
|
||||||
|
width: 130px;
|
||||||
|
height: 100px;
|
||||||
|
background: url(background.png);
|
||||||
|
background: rgba(50,50,50,0.7);
|
||||||
|
border: solid 1px transparent;
|
||||||
|
padding: 10px;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-border-radius: 0;
|
||||||
|
-moz-border-radius: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
.mejs-controls .mejs-captions-button:hover .mejs-captions-selector {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
.mejs-controls .mejs-captions-button .mejs-captions-selector ul {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: block;
|
||||||
|
list-style-type: none !important;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li {
|
||||||
|
margin: 0 0 6px 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style-type: none !important;
|
||||||
|
display: block;
|
||||||
|
color: #fff;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input {
|
||||||
|
clear: both;
|
||||||
|
float: left;
|
||||||
|
margin: 3px 3px 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label {
|
||||||
|
width: 100px;
|
||||||
|
float: left;
|
||||||
|
padding: 4px 0 0 0;
|
||||||
|
line-height: 15px;
|
||||||
|
font-family: helvetica, arial;
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-captions-button .mejs-captions-translations {
|
||||||
|
font-size: 10px;
|
||||||
|
margin: 0 0 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-chapters {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
-xborder-right: solid 1px #fff;
|
||||||
|
width: 10000px;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-chapters .mejs-chapter {
|
||||||
|
position: absolute;
|
||||||
|
float: left;
|
||||||
|
background: #222;
|
||||||
|
background: rgba(0, 0, 0, 0.7);
|
||||||
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50,50,50,0.7)), to(rgba(0,0,0,0.7)));
|
||||||
|
background: -webkit-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
|
||||||
|
background: -moz-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
|
||||||
|
background: -o-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
|
||||||
|
background: -ms-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
|
||||||
|
background: linear-gradient(rgba(50,50,50,0.7), rgba(0,0,0,0.7));
|
||||||
|
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#323232,endColorstr=#000000);
|
||||||
|
overflow: hidden;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-chapters .mejs-chapter .mejs-chapter-block {
|
||||||
|
font-size: 11px;
|
||||||
|
color: #fff;
|
||||||
|
padding: 5px;
|
||||||
|
display: block;
|
||||||
|
border-right: solid 1px #333;
|
||||||
|
border-bottom: solid 1px #333;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-chapters .mejs-chapter .mejs-chapter-block-last {
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-chapters .mejs-chapter .mejs-chapter-block:hover {
|
||||||
|
background: #666;
|
||||||
|
background: rgba(102,102,102, 0.7);
|
||||||
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(102,102,102,0.7)), to(rgba(50,50,50,0.6)));
|
||||||
|
background: -webkit-linear-gradient(top, rgba(102,102,102,0.7), rgba(50,50,50,0.6));
|
||||||
|
background: -moz-linear-gradient(top, rgba(102,102,102,0.7), rgba(50,50,50,0.6));
|
||||||
|
background: -o-linear-gradient(top, rgba(102,102,102,0.7), rgba(50,50,50,0.6));
|
||||||
|
background: -ms-linear-gradient(top, rgba(102,102,102,0.7), rgba(50,50,50,0.6));
|
||||||
|
background: linear-gradient(rgba(102,102,102,0.7), rgba(50,50,50,0.6));
|
||||||
|
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#666666,endColorstr=#323232);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title {
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
display: block;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
margin: 0 0 3px 0;
|
||||||
|
line-height: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan {
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 12px;
|
||||||
|
margin: 3px 0 4px 0;
|
||||||
|
display: block;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-captions-layer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
text-align:center;
|
||||||
|
line-height: 22px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-captions-layer a {
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-captions-layer[lang=ar] {
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-captions-position {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
bottom: 15px;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-captions-position-hover {
|
||||||
|
bottom: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-captions-text {
|
||||||
|
padding: 3px 5px;
|
||||||
|
background: url(background.png);
|
||||||
|
background: rgba(20, 20, 20, 0.8);
|
||||||
|
|
||||||
|
}
|
||||||
|
/* End: Track (Captions and Chapters) */
|
||||||
|
|
||||||
|
/* Start: Error */
|
||||||
|
.me-cannotplay {
|
||||||
|
}
|
||||||
|
|
||||||
|
.me-cannotplay a {
|
||||||
|
color: #fff;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.me-cannotplay span {
|
||||||
|
padding: 15px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
/* End: Error */
|
||||||
|
|
||||||
|
|
||||||
|
/* Start: Loop */
|
||||||
|
.mejs-controls .mejs-loop-off button {
|
||||||
|
background-position: -64px -16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-loop-on button {
|
||||||
|
background-position: -64px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* End: Loop */
|
||||||
|
|
||||||
|
/* Start: backlight */
|
||||||
|
.mejs-controls .mejs-backlight-off button {
|
||||||
|
background-position: -80px -16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-backlight-on button {
|
||||||
|
background-position: -80px 0;
|
||||||
|
}
|
||||||
|
/* End: backlight */
|
||||||
|
|
||||||
|
/* Start: Picture Controls */
|
||||||
|
.mejs-controls .mejs-picturecontrols-button {
|
||||||
|
background-position: -96px 0;
|
||||||
|
}
|
||||||
|
/* End: Picture Controls */
|
||||||
|
|
||||||
|
|
||||||
|
/* context menu */
|
||||||
|
.mejs-contextmenu {
|
||||||
|
position: absolute;
|
||||||
|
width: 150px;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 4px;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
background: #fff;
|
||||||
|
border: solid 1px #999;
|
||||||
|
z-index: 1001; /* make sure it shows on fullscreen */
|
||||||
|
}
|
||||||
|
.mejs-contextmenu .mejs-contextmenu-separator {
|
||||||
|
height: 1px;
|
||||||
|
font-size: 0;
|
||||||
|
margin: 5px 6px;
|
||||||
|
background: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-contextmenu .mejs-contextmenu-item {
|
||||||
|
font-family: Helvetica, Arial;
|
||||||
|
font-size: 12px;
|
||||||
|
padding: 4px 6px;
|
||||||
|
cursor: pointer;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
.mejs-contextmenu .mejs-contextmenu-item:hover {
|
||||||
|
background: #2C7C91;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Start: Source Chooser */
|
||||||
|
.mejs-controls .mejs-sourcechooser-button {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-sourcechooser-button button {
|
||||||
|
background-position: -128px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector {
|
||||||
|
visibility: hidden;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 26px;
|
||||||
|
right: -10px;
|
||||||
|
width: 130px;
|
||||||
|
height: 100px;
|
||||||
|
background: url(background.png);
|
||||||
|
background: rgba(50,50,50,0.7);
|
||||||
|
border: solid 1px transparent;
|
||||||
|
padding: 10px;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-border-radius: 0;
|
||||||
|
-moz-border-radius: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: block;
|
||||||
|
list-style-type: none !important;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li {
|
||||||
|
margin: 0 0 6px 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style-type: none !important;
|
||||||
|
display: block;
|
||||||
|
color: #fff;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input {
|
||||||
|
clear: both;
|
||||||
|
float: left;
|
||||||
|
margin: 3px 3px 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label {
|
||||||
|
width: 100px;
|
||||||
|
float: left;
|
||||||
|
padding: 4px 0 0 0;
|
||||||
|
line-height: 15px;
|
||||||
|
font-family: helvetica, arial;
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
/* End: Source Chooser */
|
||||||
|
|
||||||
|
/* Start: Postroll */
|
||||||
|
.mejs-postroll-layer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: url(background.png);
|
||||||
|
background: rgba(50,50,50,0.7);
|
||||||
|
z-index: 1000;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.mejs-postroll-layer-content {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.mejs-postroll-close {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
background: url(background.png);
|
||||||
|
background: rgba(50,50,50,0.7);
|
||||||
|
color: #fff;
|
||||||
|
padding: 4px;
|
||||||
|
z-index: 100;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
/* End: Postroll */
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
||||||
|
Läufermeeting Neustadt
|
|
@ -0,0 +1,43 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html class="no-js">
|
||||||
|
<head>
|
||||||
|
<!-- Basic Page Needs
|
||||||
|
================================================== -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
|
<title>Läufermeeting Neustadt 2023</title>
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="keywords" content="">
|
||||||
|
<meta name="author" content="">
|
||||||
|
<!-- Mobile Specific Metas
|
||||||
|
================================================== -->
|
||||||
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
|
||||||
|
<meta name="format-detection" content="telephone=no">
|
||||||
|
<!-- CSS
|
||||||
|
================================================== -->
|
||||||
|
<link href="{{storage('assets/css/bootstrap.min.css')}}" rel="stylesheet" type="text/css">
|
||||||
|
<link href="{{storage('assets/css/style.css')}}" rel="stylesheet" type="text/css"> <!-- Template Stylesheet -->
|
||||||
|
<link href="{{storage('assets/css/bootstrap-theme.css')}}" rel="stylesheet" type="text/css"> <!-- Template Stylesheet -->
|
||||||
|
<link href="{{storage('assets/css/magnific-popup.css')}}" rel="stylesheet" type="text/css">
|
||||||
|
<link href="{{storage('assets/css/all.css')}}" rel="stylesheet" type="text/css">
|
||||||
|
<!-- Color Style -->
|
||||||
|
<link class="alt" href="{{storage('assets/css/color.css')}}" rel="stylesheet" type="text/css">
|
||||||
|
<!-- SCRIPTS
|
||||||
|
================================================== -->
|
||||||
|
<script src="js/modernizr.js"></script><!-- Modernizr -->
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
|
||||||
|
<script src="js/jquery-3.5.1.min.js"></script> <!-- jQuery Library Import -->
|
||||||
|
<script src="js/ajax.min.js"></script> <!-- Bootstrap JS -->
|
||||||
|
<script src="js/bootstrap.min.js"></script> <!-- Bootstrap JS -->
|
||||||
|
<script src="vendor/magnific/jquery.magnific-popup.min.js"></script> <!-- Magnific Plugin -->
|
||||||
|
<script src="js/helper-plugins.js"></script> <!-- Plugins -->
|
||||||
|
<script src="vendor/mediaelement/mediaelement-and-player.min.js"></script> <!-- MediaElements -->
|
||||||
|
<script src="vendor/flexslider/js/jquery.flexslider.js"></script> <!-- FlexSlider -->
|
||||||
|
<script src="vendor/countdown/js/jquery.countdown.min.js"></script> <!-- Jquery Timer -->
|
||||||
|
<script src="js/init.js"></script> <!-- Template js functions initialization -->
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue