Initial upload
This commit is contained in:
383
htdocs/css/bootstrap-reset.css
vendored
Normal file
383
htdocs/css/bootstrap-reset.css
vendored
Normal file
@@ -0,0 +1,383 @@
|
||||
/*anchor*/
|
||||
a {
|
||||
color: #667fa0;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #2A3542;
|
||||
}
|
||||
|
||||
/*panel*/
|
||||
.panel {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.panel-heading {
|
||||
border-color:#eff2f7 ;
|
||||
font-size: 16px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.panel-title {
|
||||
color: #2A3542;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
margin-bottom: 0;
|
||||
margin-top: 0;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
}
|
||||
|
||||
/*label*/
|
||||
|
||||
.label {
|
||||
padding: 0.5em 0.8em;
|
||||
}
|
||||
|
||||
.label-default {
|
||||
background-color: #a1a1a1;
|
||||
}
|
||||
|
||||
.label-primary {
|
||||
background-color: #59ace2;
|
||||
}
|
||||
|
||||
.label-success {
|
||||
background-color: #A9D86E;
|
||||
}
|
||||
|
||||
.label-info {
|
||||
background-color: #8175c7;
|
||||
}
|
||||
|
||||
.label-warning {
|
||||
background-color: #FCB322;
|
||||
}
|
||||
|
||||
.label-danger {
|
||||
background-color: #FF6C60;
|
||||
}
|
||||
|
||||
.label-inverse {
|
||||
background-color: #344860;
|
||||
}
|
||||
|
||||
/*text color*/
|
||||
|
||||
.text-danger {
|
||||
color: #FF6C60;
|
||||
}
|
||||
|
||||
.text-muted {
|
||||
color: #a1a1a1;
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
color: #59ace2;
|
||||
}
|
||||
|
||||
.text-warning {
|
||||
color: #FCB322;
|
||||
}
|
||||
|
||||
.text-success {
|
||||
color: #A9D86E;
|
||||
}
|
||||
|
||||
.text-info {
|
||||
color: #8175c7;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
color: #777 !important;
|
||||
}
|
||||
|
||||
/*modal*/
|
||||
|
||||
.modal-content {
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
background: #00A8B3;
|
||||
color: #fff;
|
||||
border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.modal-header .close {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
/*text input*/
|
||||
|
||||
.form-control {
|
||||
border: 1px solid #e2e2e4;
|
||||
box-shadow: none;
|
||||
color: #c2c2c2;
|
||||
}
|
||||
|
||||
|
||||
.form-control:focus, #focusedInput {
|
||||
border: 1px solid #517397;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.form-horizontal .control-label {
|
||||
font-weight: 300;
|
||||
font-size: 14px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
input, textarea, select, button {
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
/*list*/
|
||||
|
||||
ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
/*button*/
|
||||
|
||||
.btn-default {
|
||||
background-color: #bec3c7;
|
||||
border-color: #bec3c7;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
|
||||
background-color: #b0b5b9;
|
||||
border-color: #b0b5b9;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: #41cac0;
|
||||
border-color: #41cac0;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
|
||||
background-color: #39b2a9;
|
||||
border-color: #39b2a9;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.btn-success {
|
||||
background-color: #78CD51;
|
||||
border-color: #78CD51;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
|
||||
background-color: #6dbb4a;
|
||||
border-color: #6dbb4a;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.btn-info {
|
||||
background-color: #58c9f3;
|
||||
border-color: #58c9f3;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
|
||||
background-color: #53bee6;
|
||||
border-color: #53BEE6;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.btn-warning {
|
||||
background-color: #f1c500;
|
||||
border-color: #f1c500;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
|
||||
background-color: #e4ba00;
|
||||
border-color: #e4ba00;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
background-color: #ff6c60;
|
||||
border-color: #ff6c60;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
|
||||
background-color: #ec6459;
|
||||
border-color: #ec6459;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
|
||||
.btn-white {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
/*Rounded Button*/
|
||||
|
||||
.btn-round {
|
||||
border-radius: 30px;
|
||||
-webkit-border-radius: 30px;
|
||||
}
|
||||
|
||||
/*shadow button*/
|
||||
|
||||
.btn-shadow.btn-default {
|
||||
box-shadow: 0 4px #9c9c9c;
|
||||
}
|
||||
.btn-shadow.btn-primary {
|
||||
box-shadow: 0 4px #29b392;
|
||||
}
|
||||
.btn-shadow.btn-success {
|
||||
box-shadow: 0 4px #61a642;
|
||||
}
|
||||
.btn-shadow.btn-info {
|
||||
box-shadow: 0 4px #1caadc;
|
||||
}
|
||||
.btn-shadow.btn-warning {
|
||||
box-shadow: 0 4px #cab03f;
|
||||
}
|
||||
.btn-shadow.btn-danger {
|
||||
box-shadow: 0 4px #d1595a;
|
||||
}
|
||||
|
||||
|
||||
/*dropdown shadow*/
|
||||
|
||||
.btn-group.open .dropdown-toggle, .btn-white.active, .btn:active, .btn.active {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/*dropdown select bg*/
|
||||
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
|
||||
background-color: #495d74;
|
||||
color: #FFFFFF;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*split dropdown btn*/
|
||||
|
||||
.btn-white {
|
||||
background-clip: padding-box;
|
||||
background-color: #FFFFFF;
|
||||
border-color: rgba(150, 160, 180, 0.3);
|
||||
box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.05) inset;
|
||||
}
|
||||
|
||||
/*breadcrumbs*/
|
||||
|
||||
.breadcrumb {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
|
||||
/*tab*/
|
||||
|
||||
.nav-tabs > li > a {
|
||||
margin-right: 1px;
|
||||
}
|
||||
|
||||
/*collapse*/
|
||||
|
||||
.panel-default > .panel-heading {
|
||||
background-color: #FFFFFF;
|
||||
border-color: #DDDDDD;
|
||||
color: #797979;
|
||||
}
|
||||
|
||||
/*nav inverse*/
|
||||
|
||||
.navbar-inverse {
|
||||
background-color: #7087A3;
|
||||
border-color: #7087A3;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus,
|
||||
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus{
|
||||
background-color: #61748d;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-nav > li a:hover {
|
||||
color: #2A3542;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-nav > li > ul > li a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-brand {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-nav > li > a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-nav > .dropdown > a .caret {
|
||||
border-bottom-color: #fff;
|
||||
border-top-color: #fff;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
||||
color: #000;
|
||||
}
|
||||
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/*nav justified*/
|
||||
|
||||
.nav-justified {
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
.nav-justified li:last-child > a:hover, .nav-justified li.active:last-child > a {
|
||||
border-radius: 0 4px 0 0 !important;
|
||||
-webkit-border-radius: 0 4px 0 0 !important;
|
||||
}
|
||||
|
||||
/*list group*/
|
||||
|
||||
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
|
||||
background-color: #00A8B3;
|
||||
border-color: #00A8B3;
|
||||
color: #FFFFFF;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.list-group-item-heading {
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
/*progress*/
|
||||
|
||||
.progress {
|
||||
box-shadow: none;
|
||||
background: #f0f2f7;
|
||||
}
|
||||
|
||||
/*alert*/
|
||||
|
||||
.alert-success, .alert-danger, .alert-info, .alert-warning {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/*table*/
|
||||
|
||||
.table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
|
||||
margin-left: 0;
|
||||
position: static;
|
||||
}
|
||||
206
htdocs/css/bootstrap-switch.css
vendored
Normal file
206
htdocs/css/bootstrap-switch.css
vendored
Normal file
@@ -0,0 +1,206 @@
|
||||
/* ========================================================================
|
||||
* bootstrap-switch - v3.0.2
|
||||
* http://www.bootstrap-switch.org
|
||||
* ========================================================================
|
||||
* Copyright 2012-2013 Mattia Larentis
|
||||
*
|
||||
* ========================================================================
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
* ========================================================================
|
||||
*/
|
||||
|
||||
.bootstrap-switch {
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
border-radius: 4px;
|
||||
border: 1px solid;
|
||||
border-color: #cccccc;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
overflow: hidden;
|
||||
line-height: 8px;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
vertical-align: middle;
|
||||
min-width: 100px;
|
||||
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||||
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-mini {
|
||||
min-width: 71px;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
|
||||
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
|
||||
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
|
||||
padding-bottom: 4px;
|
||||
padding-top: 4px;
|
||||
font-size: 10px;
|
||||
line-height: 9px;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-small {
|
||||
min-width: 79px;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
|
||||
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
|
||||
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
|
||||
padding-bottom: 3px;
|
||||
padding-top: 3px;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-large {
|
||||
min-width: 120px;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
|
||||
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
|
||||
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
|
||||
padding-bottom: 9px;
|
||||
padding-top: 9px;
|
||||
font-size: 16px;
|
||||
line-height: normal;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
|
||||
-webkit-transition: margin-left 0.5s;
|
||||
transition: margin-left 0.5s;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-container {
|
||||
margin-left: 0%;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-container {
|
||||
margin-left: -50%;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-container {
|
||||
margin-left: -25%;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-disabled,
|
||||
.bootstrap-switch.bootstrap-switch-readonly,
|
||||
.bootstrap-switch.bootstrap-switch-indeterminate {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
cursor: default !important;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
|
||||
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
|
||||
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
|
||||
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
|
||||
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
|
||||
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
|
||||
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
|
||||
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
|
||||
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
|
||||
cursor: default !important;
|
||||
}
|
||||
.bootstrap-switch.bootstrap-switch-focused {
|
||||
border-color: #66afe9;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-container {
|
||||
display: inline-block;
|
||||
width: 150%;
|
||||
top: 0;
|
||||
border-radius: 4px;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-handle-on,
|
||||
.bootstrap-switch .bootstrap-switch-handle-off,
|
||||
.bootstrap-switch .bootstrap-switch-label {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: inline-block !important;
|
||||
height: 100%;
|
||||
padding-bottom: 4px;
|
||||
padding-top: 4px;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-handle-on,
|
||||
.bootstrap-switch .bootstrap-switch-handle-off {
|
||||
text-align: center;
|
||||
z-index: 1;
|
||||
width: 33.333333333%;
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
|
||||
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
|
||||
color: #fff;
|
||||
background: #428bca;
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
|
||||
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
|
||||
color: #fff;
|
||||
background: #5bc0de;
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
|
||||
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
|
||||
color: #fff;
|
||||
background: #5cb85c;
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
|
||||
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
|
||||
background: #f0ad4e;
|
||||
color: #fff;
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
|
||||
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
|
||||
color: #fff;
|
||||
background: #d9534f;
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
|
||||
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
|
||||
color: #000;
|
||||
background: #eeeeee;
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-handle-on {
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-handle-off {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
}
|
||||
.bootstrap-switch .bootstrap-switch-label {
|
||||
text-align: center;
|
||||
margin-top: -1px;
|
||||
margin-bottom: -1px;
|
||||
z-index: 100;
|
||||
width: 33.333333333%;
|
||||
color: #333333;
|
||||
background: #ffffff;
|
||||
}
|
||||
.bootstrap-switch input[type='radio'],
|
||||
.bootstrap-switch input[type='checkbox'] {
|
||||
position: absolute !important;
|
||||
top: 0;
|
||||
left: 0;
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
z-index: -1;
|
||||
}
|
||||
.bootstrap-switch input[type='radio'].form-control,
|
||||
.bootstrap-switch input[type='checkbox'].form-control {
|
||||
height: auto;
|
||||
}
|
||||
22
htdocs/css/bootstrap-switch.min.css
vendored
Normal file
22
htdocs/css/bootstrap-switch.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
442
htdocs/css/bootstrap-theme.css
vendored
Normal file
442
htdocs/css/bootstrap-theme.css
vendored
Normal file
@@ -0,0 +1,442 @@
|
||||
/*!
|
||||
* Bootstrap v3.2.0 (http://getbootstrap.com)
|
||||
* Copyright 2011-2014 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
*/
|
||||
|
||||
.btn-default,
|
||||
.btn-primary,
|
||||
.btn-success,
|
||||
.btn-info,
|
||||
.btn-warning,
|
||||
.btn-danger {
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
|
||||
}
|
||||
.btn-default:active,
|
||||
.btn-primary:active,
|
||||
.btn-success:active,
|
||||
.btn-info:active,
|
||||
.btn-warning:active,
|
||||
.btn-danger:active,
|
||||
.btn-default.active,
|
||||
.btn-primary.active,
|
||||
.btn-success.active,
|
||||
.btn-info.active,
|
||||
.btn-warning.active,
|
||||
.btn-danger.active {
|
||||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
||||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
||||
}
|
||||
.btn:active,
|
||||
.btn.active {
|
||||
background-image: none;
|
||||
}
|
||||
.btn-default {
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
|
||||
background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
|
||||
background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #dbdbdb;
|
||||
border-color: #ccc;
|
||||
}
|
||||
.btn-default:hover,
|
||||
.btn-default:focus {
|
||||
background-color: #e0e0e0;
|
||||
background-position: 0 -15px;
|
||||
}
|
||||
.btn-default:active,
|
||||
.btn-default.active {
|
||||
background-color: #e0e0e0;
|
||||
border-color: #dbdbdb;
|
||||
}
|
||||
.btn-default:disabled,
|
||||
.btn-default[disabled] {
|
||||
background-color: #e0e0e0;
|
||||
background-image: none;
|
||||
}
|
||||
.btn-primary {
|
||||
background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
|
||||
background-image: -o-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#2d6ca2));
|
||||
background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #2b669a;
|
||||
}
|
||||
.btn-primary:hover,
|
||||
.btn-primary:focus {
|
||||
background-color: #2d6ca2;
|
||||
background-position: 0 -15px;
|
||||
}
|
||||
.btn-primary:active,
|
||||
.btn-primary.active {
|
||||
background-color: #2d6ca2;
|
||||
border-color: #2b669a;
|
||||
}
|
||||
.btn-primary:disabled,
|
||||
.btn-primary[disabled] {
|
||||
background-color: #2d6ca2;
|
||||
background-image: none;
|
||||
}
|
||||
.btn-success {
|
||||
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
|
||||
background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
|
||||
background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #3e8f3e;
|
||||
}
|
||||
.btn-success:hover,
|
||||
.btn-success:focus {
|
||||
background-color: #419641;
|
||||
background-position: 0 -15px;
|
||||
}
|
||||
.btn-success:active,
|
||||
.btn-success.active {
|
||||
background-color: #419641;
|
||||
border-color: #3e8f3e;
|
||||
}
|
||||
.btn-success:disabled,
|
||||
.btn-success[disabled] {
|
||||
background-color: #419641;
|
||||
background-image: none;
|
||||
}
|
||||
.btn-info {
|
||||
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
|
||||
background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
|
||||
background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #28a4c9;
|
||||
}
|
||||
.btn-info:hover,
|
||||
.btn-info:focus {
|
||||
background-color: #2aabd2;
|
||||
background-position: 0 -15px;
|
||||
}
|
||||
.btn-info:active,
|
||||
.btn-info.active {
|
||||
background-color: #2aabd2;
|
||||
border-color: #28a4c9;
|
||||
}
|
||||
.btn-info:disabled,
|
||||
.btn-info[disabled] {
|
||||
background-color: #2aabd2;
|
||||
background-image: none;
|
||||
}
|
||||
.btn-warning {
|
||||
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
|
||||
background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
|
||||
background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #e38d13;
|
||||
}
|
||||
.btn-warning:hover,
|
||||
.btn-warning:focus {
|
||||
background-color: #eb9316;
|
||||
background-position: 0 -15px;
|
||||
}
|
||||
.btn-warning:active,
|
||||
.btn-warning.active {
|
||||
background-color: #eb9316;
|
||||
border-color: #e38d13;
|
||||
}
|
||||
.btn-warning:disabled,
|
||||
.btn-warning[disabled] {
|
||||
background-color: #eb9316;
|
||||
background-image: none;
|
||||
}
|
||||
.btn-danger {
|
||||
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
|
||||
background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
|
||||
background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #b92c28;
|
||||
}
|
||||
.btn-danger:hover,
|
||||
.btn-danger:focus {
|
||||
background-color: #c12e2a;
|
||||
background-position: 0 -15px;
|
||||
}
|
||||
.btn-danger:active,
|
||||
.btn-danger.active {
|
||||
background-color: #c12e2a;
|
||||
border-color: #b92c28;
|
||||
}
|
||||
.btn-danger:disabled,
|
||||
.btn-danger[disabled] {
|
||||
background-color: #c12e2a;
|
||||
background-image: none;
|
||||
}
|
||||
.thumbnail,
|
||||
.img-thumbnail {
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
||||
}
|
||||
.dropdown-menu > li > a:hover,
|
||||
.dropdown-menu > li > a:focus {
|
||||
background-color: #e8e8e8;
|
||||
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
||||
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
|
||||
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.dropdown-menu > .active > a,
|
||||
.dropdown-menu > .active > a:hover,
|
||||
.dropdown-menu > .active > a:focus {
|
||||
background-color: #357ebd;
|
||||
background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
||||
background-image: -o-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#357ebd));
|
||||
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.navbar-default {
|
||||
background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
|
||||
background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
|
||||
background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
background-repeat: repeat-x;
|
||||
border-radius: 4px;
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
|
||||
}
|
||||
.navbar-default .navbar-nav > .active > a {
|
||||
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
|
||||
background-image: -o-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f3f3f3));
|
||||
background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
|
||||
box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
|
||||
}
|
||||
.navbar-brand,
|
||||
.navbar-nav > li > a {
|
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
|
||||
}
|
||||
.navbar-inverse {
|
||||
background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
|
||||
background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
|
||||
background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.navbar-inverse .navbar-nav > .active > a {
|
||||
background-image: -webkit-linear-gradient(top, #222 0%, #282828 100%);
|
||||
background-image: -o-linear-gradient(top, #222 0%, #282828 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#282828));
|
||||
background-image: linear-gradient(to bottom, #222 0%, #282828 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
|
||||
box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
|
||||
}
|
||||
.navbar-inverse .navbar-brand,
|
||||
.navbar-inverse .navbar-nav > li > a {
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
|
||||
}
|
||||
.navbar-static-top,
|
||||
.navbar-fixed-top,
|
||||
.navbar-fixed-bottom {
|
||||
border-radius: 0;
|
||||
}
|
||||
.alert {
|
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
|
||||
}
|
||||
.alert-success {
|
||||
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
||||
background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
|
||||
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #b2dba1;
|
||||
}
|
||||
.alert-info {
|
||||
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
||||
background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
|
||||
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #9acfea;
|
||||
}
|
||||
.alert-warning {
|
||||
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
||||
background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
|
||||
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #f5e79e;
|
||||
}
|
||||
.alert-danger {
|
||||
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
||||
background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
|
||||
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #dca7a7;
|
||||
}
|
||||
.progress {
|
||||
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
||||
background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
|
||||
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.progress-bar {
|
||||
background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
|
||||
background-image: -o-linear-gradient(top, #428bca 0%, #3071a9 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#3071a9));
|
||||
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.progress-bar-success {
|
||||
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
||||
background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
|
||||
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.progress-bar-info {
|
||||
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
||||
background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
|
||||
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.progress-bar-warning {
|
||||
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
||||
background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
|
||||
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.progress-bar-danger {
|
||||
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
||||
background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
|
||||
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.progress-bar-striped {
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
||||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
||||
}
|
||||
.list-group {
|
||||
border-radius: 4px;
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
||||
}
|
||||
.list-group-item.active,
|
||||
.list-group-item.active:hover,
|
||||
.list-group-item.active:focus {
|
||||
text-shadow: 0 -1px 0 #3071a9;
|
||||
background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%);
|
||||
background-image: -o-linear-gradient(top, #428bca 0%, #3278b3 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#3278b3));
|
||||
background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #3278b3;
|
||||
}
|
||||
.panel {
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
|
||||
}
|
||||
.panel-default > .panel-heading {
|
||||
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
||||
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
|
||||
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.panel-primary > .panel-heading {
|
||||
background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
||||
background-image: -o-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#357ebd));
|
||||
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.panel-success > .panel-heading {
|
||||
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
||||
background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
|
||||
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.panel-info > .panel-heading {
|
||||
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
||||
background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
|
||||
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.panel-warning > .panel-heading {
|
||||
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
||||
background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
|
||||
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.panel-danger > .panel-heading {
|
||||
background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
||||
background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
|
||||
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.well {
|
||||
background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
||||
background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
|
||||
background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #dcdcdc;
|
||||
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
|
||||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
|
||||
}
|
||||
/*# sourceMappingURL=bootstrap-theme.css.map */
|
||||
5
htdocs/css/bootstrap-theme.min.css
vendored
Normal file
5
htdocs/css/bootstrap-theme.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
6203
htdocs/css/bootstrap.css
vendored
Normal file
6203
htdocs/css/bootstrap.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
5
htdocs/css/bootstrap.min.css
vendored
Normal file
5
htdocs/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
446
htdocs/css/bootstrap2/bootstrap-switch.css
vendored
Normal file
446
htdocs/css/bootstrap2/bootstrap-switch.css
vendored
Normal file
@@ -0,0 +1,446 @@
|
||||
/* ========================================================================
|
||||
* bootstrap-switch - v2.0.1
|
||||
* http://www.bootstrap-switch.org
|
||||
* ========================================================================
|
||||
* Copyright 2012-2013 Mattia Larentis
|
||||
*
|
||||
* ========================================================================
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
* ========================================================================
|
||||
*/
|
||||
|
||||
.clearfix {
|
||||
*zoom: 1;
|
||||
}
|
||||
.clearfix:before,
|
||||
.clearfix:after {
|
||||
display: table;
|
||||
content: "";
|
||||
line-height: 0;
|
||||
}
|
||||
.clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
.hide-text {
|
||||
font: 0/0 a;
|
||||
color: transparent;
|
||||
text-shadow: none;
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
}
|
||||
.input-block-level {
|
||||
display: block;
|
||||
width: 100%;
|
||||
min-height: 30px;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.has-switch {
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
position: relative;
|
||||
text-align: left;
|
||||
overflow: hidden;
|
||||
line-height: 8px;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
vertical-align: middle;
|
||||
min-width: 100px;
|
||||
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||||
-moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||||
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||||
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||||
}
|
||||
.has-switch.switch-mini {
|
||||
min-width: 72px;
|
||||
}
|
||||
.has-switch.switch-mini span,
|
||||
.has-switch.switch-mini label {
|
||||
padding-bottom: 4px;
|
||||
padding-top: 4px;
|
||||
font-size: 10px;
|
||||
line-height: 9px;
|
||||
}
|
||||
.has-switch.switch-mini i.switch-mini-icons {
|
||||
height: 1.20em;
|
||||
line-height: 9px;
|
||||
vertical-align: text-top;
|
||||
text-align: center;
|
||||
transform: scale(0.6);
|
||||
margin-top: -1px;
|
||||
margin-bottom: -1px;
|
||||
}
|
||||
.has-switch.switch-small {
|
||||
min-width: 80px;
|
||||
}
|
||||
.has-switch.switch-small span,
|
||||
.has-switch.switch-small label {
|
||||
padding-bottom: 3px;
|
||||
padding-top: 3px;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
}
|
||||
.has-switch.switch-large {
|
||||
min-width: 120px;
|
||||
}
|
||||
.has-switch.switch-large span,
|
||||
.has-switch.switch-large label {
|
||||
padding-bottom: 9px;
|
||||
padding-top: 9px;
|
||||
font-size: 16px;
|
||||
line-height: normal;
|
||||
}
|
||||
.has-switch.switch-animate > div {
|
||||
-webkit-transition: left 0.5s;
|
||||
-moz-transition: left 0.5s;
|
||||
-o-transition: left 0.5s;
|
||||
transition: left 0.5s;
|
||||
}
|
||||
.has-switch.switch-off > div {
|
||||
left: -50%;
|
||||
}
|
||||
.has-switch.switch-on > div {
|
||||
left: 0%;
|
||||
}
|
||||
.has-switch.disabled {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
cursor: default !important;
|
||||
}
|
||||
.has-switch.disabled span,
|
||||
.has-switch.disabled label {
|
||||
cursor: default !important;
|
||||
}
|
||||
.has-switch:focus {
|
||||
border-color: #0088cc;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(red(@btnPrimaryBackground), green(@btnPrimaryBackground), blue(@btnPrimaryBackground), .6);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(red(@btnPrimaryBackground), green(@btnPrimaryBackground), blue(@btnPrimaryBackground), .6);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(red(@btnPrimaryBackground), green(@btnPrimaryBackground), blue(@btnPrimaryBackground), .6);
|
||||
}
|
||||
.has-switch > div {
|
||||
display: inline-block;
|
||||
width: 150%;
|
||||
position: relative;
|
||||
top: 0;
|
||||
}
|
||||
.has-switch input[type=radio],
|
||||
.has-switch input[type=checkbox] {
|
||||
display: none;
|
||||
}
|
||||
.has-switch span,
|
||||
.has-switch label {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
display: inline-block !important;
|
||||
height: 100%;
|
||||
padding-bottom: 4px;
|
||||
padding-top: 4px;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.has-switch label {
|
||||
text-align: center;
|
||||
margin-top: -1px;
|
||||
margin-bottom: -1px;
|
||||
z-index: 100;
|
||||
width: 34%;
|
||||
border-left: 1px solid #cccccc;
|
||||
border-right: 1px solid #cccccc;
|
||||
color: #333333;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
background-color: #f5f5f5;
|
||||
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
|
||||
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
|
||||
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
|
||||
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #e6e6e6;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
}
|
||||
.has-switch label:hover,
|
||||
.has-switch label:focus,
|
||||
.has-switch label:active,
|
||||
.has-switch label.active,
|
||||
.has-switch label.disabled,
|
||||
.has-switch label[disabled] {
|
||||
color: #333333;
|
||||
background-color: #e6e6e6;
|
||||
*background-color: #d9d9d9;
|
||||
}
|
||||
.has-switch label:active,
|
||||
.has-switch label.active {
|
||||
background-color: #cccccc \9;
|
||||
}
|
||||
.has-switch label i {
|
||||
color: #000;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
line-height: 18px;
|
||||
pointer-events: none;
|
||||
}
|
||||
.has-switch span {
|
||||
text-align: center;
|
||||
z-index: 1;
|
||||
width: 33%;
|
||||
}
|
||||
.has-switch span.switch-left {
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
-moz-border-radius-topleft: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
.has-switch span.switch-right {
|
||||
color: #333333;
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||
background-color: #f0f0f0;
|
||||
background-image: -moz-linear-gradient(top, #e6e6e6, #ffffff);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e6e6e6), to(#ffffff));
|
||||
background-image: -webkit-linear-gradient(top, #e6e6e6, #ffffff);
|
||||
background-image: -o-linear-gradient(top, #e6e6e6, #ffffff);
|
||||
background-image: linear-gradient(to bottom, #e6e6e6, #ffffff);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6e6e6', endColorstr='#ffffffff', GradientType=0);
|
||||
border-color: #ffffff #ffffff #d9d9d9;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #ffffff;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
}
|
||||
.has-switch span.switch-right:hover,
|
||||
.has-switch span.switch-right:focus,
|
||||
.has-switch span.switch-right:active,
|
||||
.has-switch span.switch-right.active,
|
||||
.has-switch span.switch-right.disabled,
|
||||
.has-switch span.switch-right[disabled] {
|
||||
color: #333333;
|
||||
background-color: #ffffff;
|
||||
*background-color: #f2f2f2;
|
||||
}
|
||||
.has-switch span.switch-right:active,
|
||||
.has-switch span.switch-right.active {
|
||||
background-color: #e6e6e6 \9;
|
||||
}
|
||||
.has-switch span.switch-primary,
|
||||
.has-switch span.switch-left {
|
||||
color: #ffffff;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
background-color: #005fcc;
|
||||
background-image: -moz-linear-gradient(top, #0044cc, #0088cc);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0044cc), to(#0088cc));
|
||||
background-image: -webkit-linear-gradient(top, #0044cc, #0088cc);
|
||||
background-image: -o-linear-gradient(top, #0044cc, #0088cc);
|
||||
background-image: linear-gradient(to bottom, #0044cc, #0088cc);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0044cc', endColorstr='#ff0088cc', GradientType=0);
|
||||
border-color: #0088cc #0088cc #005580;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #0088cc;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
}
|
||||
.has-switch span.switch-primary:hover,
|
||||
.has-switch span.switch-left:hover,
|
||||
.has-switch span.switch-primary:focus,
|
||||
.has-switch span.switch-left:focus,
|
||||
.has-switch span.switch-primary:active,
|
||||
.has-switch span.switch-left:active,
|
||||
.has-switch span.switch-primary.active,
|
||||
.has-switch span.switch-left.active,
|
||||
.has-switch span.switch-primary.disabled,
|
||||
.has-switch span.switch-left.disabled,
|
||||
.has-switch span.switch-primary[disabled],
|
||||
.has-switch span.switch-left[disabled] {
|
||||
color: #ffffff;
|
||||
background-color: #0088cc;
|
||||
*background-color: #0077b3;
|
||||
}
|
||||
.has-switch span.switch-primary:active,
|
||||
.has-switch span.switch-left:active,
|
||||
.has-switch span.switch-primary.active,
|
||||
.has-switch span.switch-left.active {
|
||||
background-color: #006699 \9;
|
||||
}
|
||||
.has-switch span.switch-info {
|
||||
color: #ffffff;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
background-color: #41a7c5;
|
||||
background-image: -moz-linear-gradient(top, #2f96b4, #5bc0de);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2f96b4), to(#5bc0de));
|
||||
background-image: -webkit-linear-gradient(top, #2f96b4, #5bc0de);
|
||||
background-image: -o-linear-gradient(top, #2f96b4, #5bc0de);
|
||||
background-image: linear-gradient(to bottom, #2f96b4, #5bc0de);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2f96b4', endColorstr='#ff5bc0de', GradientType=0);
|
||||
border-color: #5bc0de #5bc0de #28a1c5;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #5bc0de;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
}
|
||||
.has-switch span.switch-info:hover,
|
||||
.has-switch span.switch-info:focus,
|
||||
.has-switch span.switch-info:active,
|
||||
.has-switch span.switch-info.active,
|
||||
.has-switch span.switch-info.disabled,
|
||||
.has-switch span.switch-info[disabled] {
|
||||
color: #ffffff;
|
||||
background-color: #5bc0de;
|
||||
*background-color: #46b8da;
|
||||
}
|
||||
.has-switch span.switch-info:active,
|
||||
.has-switch span.switch-info.active {
|
||||
background-color: #31b0d5 \9;
|
||||
}
|
||||
.has-switch span.switch-success {
|
||||
color: #ffffff;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
background-color: #58b058;
|
||||
background-image: -moz-linear-gradient(top, #51a351, #62c462);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a351), to(#62c462));
|
||||
background-image: -webkit-linear-gradient(top, #51a351, #62c462);
|
||||
background-image: -o-linear-gradient(top, #51a351, #62c462);
|
||||
background-image: linear-gradient(to bottom, #51a351, #62c462);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff51a351', endColorstr='#ff62c462', GradientType=0);
|
||||
border-color: #62c462 #62c462 #3b9e3b;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #62c462;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
}
|
||||
.has-switch span.switch-success:hover,
|
||||
.has-switch span.switch-success:focus,
|
||||
.has-switch span.switch-success:active,
|
||||
.has-switch span.switch-success.active,
|
||||
.has-switch span.switch-success.disabled,
|
||||
.has-switch span.switch-success[disabled] {
|
||||
color: #ffffff;
|
||||
background-color: #62c462;
|
||||
*background-color: #4fbd4f;
|
||||
}
|
||||
.has-switch span.switch-success:active,
|
||||
.has-switch span.switch-success.active {
|
||||
background-color: #42b142 \9;
|
||||
}
|
||||
.has-switch span.switch-warning {
|
||||
color: #ffffff;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
background-color: #f9a123;
|
||||
background-image: -moz-linear-gradient(top, #f89406, #fbb450);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f89406), to(#fbb450));
|
||||
background-image: -webkit-linear-gradient(top, #f89406, #fbb450);
|
||||
background-image: -o-linear-gradient(top, #f89406, #fbb450);
|
||||
background-image: linear-gradient(to bottom, #f89406, #fbb450);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff89406', endColorstr='#fffbb450', GradientType=0);
|
||||
border-color: #fbb450 #fbb450 #f89406;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #fbb450;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
}
|
||||
.has-switch span.switch-warning:hover,
|
||||
.has-switch span.switch-warning:focus,
|
||||
.has-switch span.switch-warning:active,
|
||||
.has-switch span.switch-warning.active,
|
||||
.has-switch span.switch-warning.disabled,
|
||||
.has-switch span.switch-warning[disabled] {
|
||||
color: #ffffff;
|
||||
background-color: #fbb450;
|
||||
*background-color: #faa937;
|
||||
}
|
||||
.has-switch span.switch-warning:active,
|
||||
.has-switch span.switch-warning.active {
|
||||
background-color: #fa9f1e \9;
|
||||
}
|
||||
.has-switch span.switch-danger {
|
||||
color: #ffffff;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
background-color: #d14641;
|
||||
background-image: -moz-linear-gradient(top, #bd362f, #ee5f5b);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bd362f), to(#ee5f5b));
|
||||
background-image: -webkit-linear-gradient(top, #bd362f, #ee5f5b);
|
||||
background-image: -o-linear-gradient(top, #bd362f, #ee5f5b);
|
||||
background-image: linear-gradient(to bottom, #bd362f, #ee5f5b);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbd362f', endColorstr='#ffee5f5b', GradientType=0);
|
||||
border-color: #ee5f5b #ee5f5b #e51d18;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #ee5f5b;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
}
|
||||
.has-switch span.switch-danger:hover,
|
||||
.has-switch span.switch-danger:focus,
|
||||
.has-switch span.switch-danger:active,
|
||||
.has-switch span.switch-danger.active,
|
||||
.has-switch span.switch-danger.disabled,
|
||||
.has-switch span.switch-danger[disabled] {
|
||||
color: #ffffff;
|
||||
background-color: #ee5f5b;
|
||||
*background-color: #ec4844;
|
||||
}
|
||||
.has-switch span.switch-danger:active,
|
||||
.has-switch span.switch-danger.active {
|
||||
background-color: #e9322d \9;
|
||||
}
|
||||
.has-switch span.switch-default {
|
||||
color: #333333;
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||
background-color: #f0f0f0;
|
||||
background-image: -moz-linear-gradient(top, #e6e6e6, #ffffff);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e6e6e6), to(#ffffff));
|
||||
background-image: -webkit-linear-gradient(top, #e6e6e6, #ffffff);
|
||||
background-image: -o-linear-gradient(top, #e6e6e6, #ffffff);
|
||||
background-image: linear-gradient(to bottom, #e6e6e6, #ffffff);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6e6e6', endColorstr='#ffffffff', GradientType=0);
|
||||
border-color: #ffffff #ffffff #d9d9d9;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #ffffff;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
}
|
||||
.has-switch span.switch-default:hover,
|
||||
.has-switch span.switch-default:focus,
|
||||
.has-switch span.switch-default:active,
|
||||
.has-switch span.switch-default.active,
|
||||
.has-switch span.switch-default.disabled,
|
||||
.has-switch span.switch-default[disabled] {
|
||||
color: #333333;
|
||||
background-color: #ffffff;
|
||||
*background-color: #f2f2f2;
|
||||
}
|
||||
.has-switch span.switch-default:active,
|
||||
.has-switch span.switch-default.active {
|
||||
background-color: #e6e6e6 \9;
|
||||
}
|
||||
22
htdocs/css/bootstrap2/bootstrap-switch.min.css
vendored
Normal file
22
htdocs/css/bootstrap2/bootstrap-switch.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
184
htdocs/css/bootstrap3/bootstrap-switch.css
vendored
Normal file
184
htdocs/css/bootstrap3/bootstrap-switch.css
vendored
Normal file
@@ -0,0 +1,184 @@
|
||||
/* ========================================================================
|
||||
* bootstrap-switch - v2.0.1
|
||||
* http://www.bootstrap-switch.org
|
||||
* ========================================================================
|
||||
* Copyright 2012-2013 Mattia Larentis
|
||||
*
|
||||
* ========================================================================
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
* ========================================================================
|
||||
*/
|
||||
|
||||
.has-switch {
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
border-radius: 4px;
|
||||
border: 1px solid;
|
||||
border-color: #cccccc;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
overflow: hidden;
|
||||
line-height: 8px;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
vertical-align: middle;
|
||||
min-width: 100px;
|
||||
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||||
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||||
}
|
||||
.has-switch:focus {
|
||||
border-color: #66afe9;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||||
}
|
||||
.has-switch.switch-mini {
|
||||
min-width: 72px;
|
||||
}
|
||||
.has-switch.switch-mini span,
|
||||
.has-switch.switch-mini label {
|
||||
padding-bottom: 4px;
|
||||
padding-top: 4px;
|
||||
font-size: 10px;
|
||||
line-height: 9px;
|
||||
}
|
||||
.has-switch.switch-mini i.switch-mini-icons {
|
||||
height: 1.20em;
|
||||
line-height: 9px;
|
||||
vertical-align: text-top;
|
||||
text-align: center;
|
||||
transform: scale(0.6);
|
||||
margin-top: -1px;
|
||||
margin-bottom: -1px;
|
||||
}
|
||||
.has-switch.switch-small {
|
||||
min-width: 80px;
|
||||
}
|
||||
.has-switch.switch-small span,
|
||||
.has-switch.switch-small label {
|
||||
padding-bottom: 3px;
|
||||
padding-top: 3px;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
}
|
||||
.has-switch.switch-large {
|
||||
min-width: 120px;
|
||||
}
|
||||
.has-switch.switch-large span,
|
||||
.has-switch.switch-large label {
|
||||
padding-bottom: 9px;
|
||||
padding-top: 9px;
|
||||
font-size: 16px;
|
||||
line-height: normal;
|
||||
}
|
||||
.has-switch.switch-animate > div {
|
||||
-webkit-transition: left 0.5s;
|
||||
transition: left 0.5s;
|
||||
}
|
||||
.has-switch.switch-off > div {
|
||||
left: -50%;
|
||||
}
|
||||
.has-switch.switch-on > div {
|
||||
left: 0%;
|
||||
}
|
||||
.has-switch.disabled {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
cursor: default !important;
|
||||
}
|
||||
.has-switch.disabled span,
|
||||
.has-switch.disabled label {
|
||||
cursor: default !important;
|
||||
}
|
||||
.has-switch > div {
|
||||
display: inline-block;
|
||||
width: 150%;
|
||||
position: relative;
|
||||
top: 0;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
.has-switch input[type=radio],
|
||||
.has-switch input[type=checkbox] {
|
||||
display: none;
|
||||
}
|
||||
.has-switch span,
|
||||
.has-switch label {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
display: inline-block !important;
|
||||
height: 100%;
|
||||
padding-bottom: 4px;
|
||||
padding-top: 4px;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.has-switch label {
|
||||
text-align: center;
|
||||
margin-top: -1px;
|
||||
margin-bottom: -1px;
|
||||
z-index: 100;
|
||||
width: 33.333333333%;
|
||||
background: #ffffff;
|
||||
}
|
||||
.has-switch label i {
|
||||
color: #000;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
line-height: 18px;
|
||||
pointer-events: none;
|
||||
}
|
||||
.has-switch span {
|
||||
text-align: center;
|
||||
z-index: 1;
|
||||
width: 33.333333333%;
|
||||
}
|
||||
.has-switch span.switch-left {
|
||||
color: #f00;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
}
|
||||
.has-switch span.switch-right {
|
||||
color: #000;
|
||||
background: #eeeeee;
|
||||
}
|
||||
.has-switch span.switch-primary,
|
||||
.has-switch span.switch-left {
|
||||
color: #fff;
|
||||
background: #428bca;
|
||||
}
|
||||
.has-switch span.switch-info {
|
||||
color: #fff;
|
||||
background: #5bc0de;
|
||||
}
|
||||
.has-switch span.switch-success {
|
||||
color: #fff;
|
||||
background: #5cb85c;
|
||||
}
|
||||
.has-switch span.switch-warning {
|
||||
background: #f0ad4e;
|
||||
color: #fff;
|
||||
}
|
||||
.has-switch span.switch-danger {
|
||||
color: #fff;
|
||||
background: #d9534f;
|
||||
}
|
||||
.has-switch span.switch-default {
|
||||
color: #000;
|
||||
background: #eeeeee;
|
||||
}
|
||||
22
htdocs/css/bootstrap3/bootstrap-switch.min.css
vendored
Normal file
22
htdocs/css/bootstrap3/bootstrap-switch.min.css
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
/* ========================================================================
|
||||
* bootstrap-switch - v2.0.1
|
||||
* http://www.bootstrap-switch.org
|
||||
* ========================================================================
|
||||
* Copyright 2012-2013 Mattia Larentis
|
||||
*
|
||||
* ========================================================================
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
* ========================================================================
|
||||
*/
|
||||
|
||||
.has-switch{display:inline-block;cursor:pointer;border-radius:4px;border:1px solid;border-color:#ccc;position:relative;text-align:left;overflow:hidden;line-height:8px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;vertical-align:middle;min-width:100px;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.has-switch:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.has-switch.switch-mini{min-width:72px}.has-switch.switch-mini label,.has-switch.switch-mini span{padding-bottom:4px;padding-top:4px;font-size:10px;line-height:9px}.has-switch.switch-mini i.switch-mini-icons{height:1.2em;line-height:9px;vertical-align:text-top;text-align:center;transform:scale(0.6);margin-top:-1px;margin-bottom:-1px}.has-switch.switch-small{min-width:80px}.has-switch.switch-small label,.has-switch.switch-small span{padding-bottom:3px;padding-top:3px;font-size:12px;line-height:18px}.has-switch.switch-large{min-width:120px}.has-switch.switch-large label,.has-switch.switch-large span{padding-bottom:9px;padding-top:9px;font-size:16px;line-height:normal}.has-switch.switch-animate>div{-webkit-transition:left .5s;transition:left .5s}.has-switch.switch-off>div{left:-50%}.has-switch.switch-on>div{left:0}.has-switch.disabled{opacity:.5;filter:alpha(opacity=50);cursor:default!important}.has-switch.disabled label,.has-switch.disabled span{cursor:default!important}.has-switch>div{display:inline-block;width:150%;position:relative;top:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.has-switch input[type=checkbox],.has-switch input[type=radio]{display:none}.has-switch label,.has-switch span{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;position:relative;display:inline-block!important;height:100%;padding-bottom:4px;padding-top:4px;font-size:14px;line-height:20px}.has-switch label{text-align:center;margin-top:-1px;margin-bottom:-1px;z-index:100;width:33.333333333%;background:#fff}.has-switch label i{color:#000;text-shadow:0 1px 0 #fff;line-height:18px;pointer-events:none}.has-switch span{text-align:center;z-index:1;width:33.333333333%}.has-switch span.switch-left{border-bottom-left-radius:4px;border-top-left-radius:4px}.has-switch span.switch-right{color:#000;background:#eee}.has-switch span.switch-left,.has-switch span.switch-primary{color:#fff;background:#428bca}.has-switch span.switch-info{color:#fff;background:#5bc0de}.has-switch span.switch-success{color:#fff;background:#5cb85c}.has-switch span.switch-warning{background:#f0ad4e;color:#fff}.has-switch span.switch-danger{color:#fff;background:#d9534f}.has-switch span.switch-default{color:#000;background:#eee}
|
||||
392
htdocs/css/gallery.css
Normal file
392
htdocs/css/gallery.css
Normal file
@@ -0,0 +1,392 @@
|
||||
.grid {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.grid li {
|
||||
display: inline-block;
|
||||
width: 33%;
|
||||
margin: 0;
|
||||
padding: 5px;
|
||||
text-align: left;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.grid figure {
|
||||
margin: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.grid figure img {
|
||||
width: 100%;
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.grid figcaption {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 10px;
|
||||
background: #2c3f52;
|
||||
color: #FF6C60;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.grid figcaption h3 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: #fff;
|
||||
font-size: 16px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.grid figcaption span:before {
|
||||
content: 'by ';
|
||||
}
|
||||
|
||||
.grid figcaption a {
|
||||
text-align: center;
|
||||
padding: 5px 10px;
|
||||
border-radius: 2px;
|
||||
display: inline-block;
|
||||
background: #FF6C60;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Individual Caption Styles */
|
||||
|
||||
/* Caption Style 1 */
|
||||
.cs-style-1 figcaption {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
opacity: 0;
|
||||
text-align: center;
|
||||
-webkit-backface-visibility: hidden;
|
||||
-moz-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
|
||||
-moz-transition: -moz-transform 0.3s, opacity 0.3s;
|
||||
transition: transform 0.3s, opacity 0.3s;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-1 figure:hover figcaption,
|
||||
.cs-style-1 figure.cs-hover figcaption {
|
||||
opacity: 1;
|
||||
-webkit-transform: translate(15px, 15px);
|
||||
-moz-transform: translate(15px, 15px);
|
||||
-ms-transform: translate(15px, 15px);
|
||||
transform: translate(15px, 15px);
|
||||
}
|
||||
|
||||
.cs-style-1 figcaption h3 {
|
||||
margin-top: 70px;
|
||||
}
|
||||
|
||||
.cs-style-1 figcaption span {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.cs-style-1 figcaption a {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
/* Caption Style 2 */
|
||||
.cs-style-2 figure img {
|
||||
z-index: 10;
|
||||
-webkit-transition: -webkit-transform 0.4s;
|
||||
-moz-transition: -moz-transform 0.4s;
|
||||
transition: transform 0.4s;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-2 figure:hover img,
|
||||
.cs-style-2 figure.cs-hover img {
|
||||
-webkit-transform: translateY(-90px);
|
||||
-moz-transform: translateY(-90px);
|
||||
-ms-transform: translateY(-90px);
|
||||
transform: translateY(-90px);
|
||||
}
|
||||
|
||||
.cs-style-2 figcaption {
|
||||
height: 90px;
|
||||
width: 100%;
|
||||
top: auto;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.cs-style-2 figcaption a {
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
top: 30px;
|
||||
}
|
||||
|
||||
/* Caption Style 3 */
|
||||
.cs-style-3 figure {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.cs-style-3 figure img {
|
||||
-webkit-transition: -webkit-transform 0.4s;
|
||||
-moz-transition: -moz-transform 0.4s;
|
||||
transition: transform 0.4s;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-3 figure:hover img,
|
||||
.cs-style-3 figure.cs-hover img {
|
||||
-webkit-transform: translateY(-50px);
|
||||
-moz-transform: translateY(-50px);
|
||||
-ms-transform: translateY(-50px);
|
||||
transform: translateY(-50px);
|
||||
}
|
||||
|
||||
.cs-style-3 figcaption {
|
||||
height: 70px;
|
||||
width: 100%;
|
||||
top: auto;
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(100%);
|
||||
-moz-transform: translateY(100%);
|
||||
-ms-transform: translateY(100%);
|
||||
transform: translateY(100%);
|
||||
-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
|
||||
-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
|
||||
transition: transform 0.4s, opacity 0.1s 0.3s;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-3 figure:hover figcaption,
|
||||
.cs-style-3 figure.cs-hover figcaption {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0px);
|
||||
-moz-transform: translateY(0px);
|
||||
-ms-transform: translateY(0px);
|
||||
transform: translateY(0px);
|
||||
-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
|
||||
-moz-transition: -moz-transform 0.4s, opacity 0.1s;
|
||||
transition: transform 0.4s, opacity 0.1s;
|
||||
}
|
||||
|
||||
.cs-style-3 figcaption a {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
/* Caption Style 4 */
|
||||
.cs-style-4 li {
|
||||
-webkit-perspective: 1700px;
|
||||
-moz-perspective: 1700px;
|
||||
perspective: 1700px;
|
||||
-webkit-perspective-origin: 0 50%;
|
||||
-moz-perspective-origin: 0 50%;
|
||||
perspective-origin: 0 50%;
|
||||
}
|
||||
|
||||
.cs-style-4 figure {
|
||||
-webkit-transform-style: preserve-3d;
|
||||
-moz-transform-style: preserve-3d;
|
||||
transform-style: preserve-3d;
|
||||
}
|
||||
|
||||
.cs-style-4 figure > div {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.cs-style-4 figure img {
|
||||
-webkit-transition: -webkit-transform 0.4s;
|
||||
-moz-transition: -moz-transform 0.4s;
|
||||
transition: transform 0.4s;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-4 figure:hover img,
|
||||
.cs-style-4 figure.cs-hover img {
|
||||
-webkit-transform: translateX(25%);
|
||||
-moz-transform: translateX(25%);
|
||||
-ms-transform: translateX(25%);
|
||||
transform: translateX(25%);
|
||||
}
|
||||
|
||||
.cs-style-4 figcaption {
|
||||
height: 100%;
|
||||
width: 50%;
|
||||
opacity: 0;
|
||||
-webkit-backface-visibility: hidden;
|
||||
-moz-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
-webkit-transform-origin: 0 0;
|
||||
-moz-transform-origin: 0 0;
|
||||
transform-origin: 0 0;
|
||||
-webkit-transform: rotateY(-90deg);
|
||||
-moz-transform: rotateY(-90deg);
|
||||
transform: rotateY(-90deg);
|
||||
-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
|
||||
-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
|
||||
transition: transform 0.4s, opacity 0.1s 0.3s;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-4 figure:hover figcaption,
|
||||
.cs-style-4 figure.cs-hover figcaption {
|
||||
opacity: 1;
|
||||
-webkit-transform: rotateY(0deg);
|
||||
-moz-transform: rotateY(0deg);
|
||||
transform: rotateY(0deg);
|
||||
-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
|
||||
-moz-transition: -moz-transform 0.4s, opacity 0.1s;
|
||||
transition: transform 0.4s, opacity 0.1s;
|
||||
}
|
||||
|
||||
.cs-style-4 figcaption a {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
/* Caption Style 5 */
|
||||
.cs-style-5 figure img {
|
||||
z-index: 10;
|
||||
-webkit-transition: -webkit-transform 0.4s;
|
||||
-moz-transition: -moz-transform 0.4s;
|
||||
transition: transform 0.4s;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-5 figure:hover img,
|
||||
.cs-style-5 figure.cs-hover img {
|
||||
-webkit-transform: scale(0.4);
|
||||
-moz-transform: scale(0.4);
|
||||
-ms-transform: scale(0.4);
|
||||
transform: scale(0.4);
|
||||
}
|
||||
|
||||
.cs-style-5 figcaption {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(0.7);
|
||||
-moz-transform: scale(0.7);
|
||||
-ms-transform: scale(0.7);
|
||||
transform: scale(0.7);
|
||||
-webkit-backface-visibility: hidden;
|
||||
-moz-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
|
||||
-moz-transition: -moz-transform 0.4s, opacity 0.4s;
|
||||
transition: transform 0.4s, opacity 0.4s;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-5 figure:hover figcaption,
|
||||
.cs-style-5 figure.cs-hover figcaption {
|
||||
-webkit-transform: scale(1);
|
||||
-moz-transform: scale(1);
|
||||
-ms-transform: scale(1);
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.cs-style-5 figure a {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
/* Caption Style 6 */
|
||||
.cs-style-6 figure img {
|
||||
z-index: 10;
|
||||
-webkit-transition: -webkit-transform 0.4s;
|
||||
-moz-transition: -moz-transform 0.4s;
|
||||
transition: transform 0.4s;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-6 figure:hover img,
|
||||
.cs-style-6 figure.cs-hover img {
|
||||
-webkit-transform: translateY(-50px) scale(0.5);
|
||||
-moz-transform: translateY(-50px) scale(0.5);
|
||||
-ms-transform: translateY(-50px) scale(0.5);
|
||||
transform: translateY(-50px) scale(0.5);
|
||||
}
|
||||
|
||||
.cs-style-6 figcaption {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cs-style-6 figcaption h3 {
|
||||
margin-top: 60%;
|
||||
}
|
||||
|
||||
.cs-style-6 figcaption a {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
/* Caption Style 7 */
|
||||
.cs-style-7 li:first-child { z-index: 6; }
|
||||
.cs-style-7 li:nth-child(2) { z-index: 5; }
|
||||
.cs-style-7 li:nth-child(3) { z-index: 4; }
|
||||
.cs-style-7 li:nth-child(4) { z-index: 3; }
|
||||
.cs-style-7 li:nth-child(5) { z-index: 2; }
|
||||
.cs-style-7 li:nth-child(6) { z-index: 1; }
|
||||
|
||||
.cs-style-7 figure img {
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.cs-style-7 figcaption {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
opacity: 0;
|
||||
-webkit-backface-visibility: hidden;
|
||||
-moz-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
-webkit-transition: opacity 0.3s, height 0.3s, box-shadow 0.3s;
|
||||
-moz-transition: opacity 0.3s, height 0.3s, box-shadow 0.3s;
|
||||
transition: opacity 0.3s, height 0.3s, box-shadow 0.3s;
|
||||
box-shadow: 0 0 0 0px #2c3f52;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-7 figure:hover figcaption,
|
||||
.cs-style-7 figure.cs-hover figcaption {
|
||||
opacity: 1;
|
||||
height: 130%;
|
||||
box-shadow: 0 0 0 10px #2c3f52;
|
||||
}
|
||||
|
||||
.cs-style-7 figcaption h3 {
|
||||
margin-top: 86%;
|
||||
}
|
||||
|
||||
.cs-style-7 figcaption h3,
|
||||
.cs-style-7 figcaption span,
|
||||
.cs-style-7 figcaption a {
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 0s;
|
||||
-moz-transition: opacity 0s;
|
||||
transition: opacity 0s;
|
||||
}
|
||||
|
||||
.cs-style-7 figcaption a {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
.no-touch .cs-style-7 figure:hover figcaption h3,
|
||||
.no-touch .cs-style-7 figure:hover figcaption span,
|
||||
.no-touch .cs-style-7 figure:hover figcaption a,
|
||||
.cs-style-7 figure.cs-hover figcaption h3,
|
||||
.cs-style-7 figure.cs-hover figcaption span,
|
||||
.cs-style-7 figure.cs-hover figcaption a {
|
||||
-webkit-transition: opacity 0.3s 0.2s;
|
||||
-moz-transition: opacity 0.3s 0.2s;
|
||||
transition: opacity 0.3s 0.2s;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 31.5em) {
|
||||
.grid {
|
||||
padding: 10px 10px 100px 10px;
|
||||
}
|
||||
.grid li {
|
||||
width: 100%;
|
||||
min-width: 300px;
|
||||
}
|
||||
}
|
||||
38
htdocs/css/image-crop.css
Normal file
38
htdocs/css/image-crop.css
Normal file
@@ -0,0 +1,38 @@
|
||||
/* Apply these styles only when #preview-pane has
|
||||
been placed within the Jcrop widget */
|
||||
.jcrop-holder #preview-pane {
|
||||
display: block;
|
||||
position: absolute;
|
||||
z-index: 2000;
|
||||
right: -280px;
|
||||
padding: 6px;
|
||||
border: 1px rgba(0,0,0,.4) solid;
|
||||
background-color: white;
|
||||
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
border-radius: 6px;
|
||||
|
||||
-webkit-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
|
||||
-moz-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
/* The Javascript code will set the aspect ratio of the crop
|
||||
area based on the size of the thumbnail preview,
|
||||
specified here */
|
||||
|
||||
#preview-pane .preview-container {
|
||||
width: 250px;
|
||||
height: 170px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#demo7 {
|
||||
background-color: #eee;
|
||||
width: 500px;
|
||||
height: 330px;
|
||||
font-size: 24px;
|
||||
font-weight: 300;
|
||||
display: block;
|
||||
}
|
||||
12
htdocs/css/invoice-print.css
Normal file
12
htdocs/css/invoice-print.css
Normal file
@@ -0,0 +1,12 @@
|
||||
#sidebar, .header, .site-footer {
|
||||
display: none ;
|
||||
}
|
||||
.header , .site-footer{
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
#main-content {
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
margin-top: -50px;
|
||||
}
|
||||
4
htdocs/css/navbar-fixed-top.css
Normal file
4
htdocs/css/navbar-fixed-top.css
Normal file
@@ -0,0 +1,4 @@
|
||||
body {
|
||||
min-height: 2000px;
|
||||
padding-top: 70px;
|
||||
}
|
||||
68
htdocs/css/owl.carousel.css
Normal file
68
htdocs/css/owl.carousel.css
Normal file
@@ -0,0 +1,68 @@
|
||||
/*
|
||||
* Core Owl Carousel CSS File
|
||||
* v1.21
|
||||
*/
|
||||
|
||||
/* clearfix */
|
||||
.owl-carousel .owl-wrapper:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
line-height: 0;
|
||||
height: 0;
|
||||
}
|
||||
/* display none until init */
|
||||
.owl-carousel{
|
||||
display: none;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
-ms-touch-action: pan-y;
|
||||
}
|
||||
.owl-carousel .owl-wrapper{
|
||||
display: none;
|
||||
position: relative;
|
||||
-webkit-transform: translate3d(0px, 0px, 0px);
|
||||
-webkit-perspective: 1000;
|
||||
}
|
||||
.owl-carousel .owl-wrapper-outer{
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
.owl-carousel .owl-wrapper-outer.autoHeight{
|
||||
-webkit-transition: height 500ms ease-in-out;
|
||||
-moz-transition: height 500ms ease-in-out;
|
||||
-ms-transition: height 500ms ease-in-out;
|
||||
-o-transition: height 500ms ease-in-out;
|
||||
transition: height 500ms ease-in-out;
|
||||
}
|
||||
|
||||
.owl-carousel .owl-item{
|
||||
float: left;
|
||||
}
|
||||
.owl-controls .owl-page,
|
||||
.owl-controls .owl-buttons div{
|
||||
cursor: pointer;
|
||||
}
|
||||
.owl-controls {
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
/* mouse grab icon */
|
||||
.grabbing {
|
||||
/*cursor:url(grabbing.png) 8 8, move;*/
|
||||
}
|
||||
|
||||
/* fix */
|
||||
.owl-carousel .owl-wrapper,
|
||||
.owl-carousel .owl-item{
|
||||
-webkit-backface-visibility: hidden;
|
||||
-moz-backface-visibility: hidden;
|
||||
-ms-backface-visibility: hidden;
|
||||
}
|
||||
179
htdocs/css/slidebars.css
Normal file
179
htdocs/css/slidebars.css
Normal file
@@ -0,0 +1,179 @@
|
||||
/* -----------------------------------
|
||||
* Slidebars
|
||||
* Version 0.10 Development
|
||||
* http://plugins.adchsm.me/slidebars/
|
||||
*
|
||||
* Written by Adam Smith
|
||||
* http://www.adchsm.me/
|
||||
*
|
||||
* Released under MIT License
|
||||
* http://plugins.adchsm.me/slidebars/license.txt
|
||||
*
|
||||
* -------------------
|
||||
* Slidebars CSS Index
|
||||
*
|
||||
* 001 - Box Model, Html & Body
|
||||
* 002 - Site
|
||||
* 003 - Slidebars
|
||||
* 004 - Animation
|
||||
* 005 - Helper Classes
|
||||
*
|
||||
* ----------------------------
|
||||
* 001 - Box Model, Html & Body
|
||||
*/
|
||||
|
||||
|
||||
/* ----------
|
||||
* 002 - Site
|
||||
*/
|
||||
|
||||
#sb-site, .sb-site {
|
||||
/* You may now use .sb-site as your site container if you wish to use your own id. However please make sure you don't set any of the follwoing styles any differently on your id. */
|
||||
width: 100%;
|
||||
position: relative;
|
||||
z-index: 1; /* Site sits above Slidebars */
|
||||
/*background-color: #ffffff; *//* Default background colour, overwrite this with your own css. */
|
||||
}
|
||||
|
||||
/* ---------------
|
||||
* 003 - Slidebars
|
||||
*/
|
||||
|
||||
.sb-slidebar {
|
||||
height: 100%;
|
||||
overflow-y: auto; /* Enable vertical scrolling on Slidebars when needed. */
|
||||
position: fixed;
|
||||
top: 0;
|
||||
z-index: 0; /* Slidebars sit behind sb-site. */
|
||||
visibility: hidden; /* Initially hide the Slidebars. */
|
||||
background-color: #222222; /* Default Slidebars background colour, overwrite this with your own css. */
|
||||
}
|
||||
|
||||
.sb-left {
|
||||
left: 0; /* Set Slidebar to the left. */
|
||||
}
|
||||
|
||||
.sb-right {
|
||||
right: 0; /* Set Slidebar to the right. */
|
||||
}
|
||||
|
||||
html.sb-static .sb-slidebar,
|
||||
.sb-slidebar.sb-static {
|
||||
position: absolute; /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser < 3 and iOS < 5. */
|
||||
}
|
||||
|
||||
.sb-slidebar.sb-active {
|
||||
visibility: visible; /* Makes Slidebars visibile when open. */
|
||||
}
|
||||
|
||||
.sb-slidebar.sb-style-overlay {
|
||||
z-index: 9999; /* Set z-index high to ensure it overlays any other site elements. */
|
||||
}
|
||||
|
||||
/* Slidebar widths for devices that don't support media queries. */
|
||||
.sb-slidebar {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.sb-width-thin {
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
.sb-width-wide {
|
||||
width: 45%;
|
||||
}
|
||||
|
||||
@media (max-width: 480px) { /* Slidebar width on extra small screens. */
|
||||
.sb-slidebar {
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
.sb-width-thin {
|
||||
width: 55%;
|
||||
}
|
||||
|
||||
.sb-width-wide {
|
||||
width: 85%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 481px) { /* Slidebar width on small screens. */
|
||||
.sb-slidebar {
|
||||
width: 55%;
|
||||
}
|
||||
|
||||
.sb-width-thin {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.sb-width-wide {
|
||||
width: 70%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) { /* Slidebar width on small screens. */
|
||||
.sb-slidebar {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.sb-width-thin {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
.sb-width-wide {
|
||||
width: 55%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) { /* Slidebar width on medium screens. */
|
||||
.sb-slidebar {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.sb-width-thin {
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
.sb-width-wide {
|
||||
width: 45%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) { /* Slidebar width on large screens. */
|
||||
.sb-slidebar {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.sb-width-thin {
|
||||
width: 5%;
|
||||
}
|
||||
|
||||
.sb-width-wide {
|
||||
width: 35%;
|
||||
}
|
||||
}
|
||||
|
||||
/* ---------------
|
||||
* 004 - Animation
|
||||
*/
|
||||
|
||||
.sb-slide, #sb-site, .sb-site, .sb-slidebar {
|
||||
-webkit-transition: -webkit-transform 400ms ease;
|
||||
-moz-transition: -moz-transform 400ms ease;
|
||||
-o-transition: -o-transform 400ms ease;
|
||||
transition: transform 400ms ease;
|
||||
-webkit-transition-property: -webkit-transform, left, right; /* Add left/right for Android < 4.4. */
|
||||
-webkit-backface-visibility: hidden; /* Prevents flickering. This is non essential, and you may remove it if your having problems with fixed background images in Chrome. */
|
||||
}
|
||||
|
||||
/* --------------------
|
||||
* 005 - Helper Classes
|
||||
*/
|
||||
|
||||
.sb-hide {
|
||||
display: none; /* Optionally applied to control classes when Slidebars is disabled over a certain width. */
|
||||
}
|
||||
|
||||
.sb-submenu-active{
|
||||
display:block;
|
||||
}
|
||||
601
htdocs/css/soon.css
Normal file
601
htdocs/css/soon.css
Normal file
@@ -0,0 +1,601 @@
|
||||
|
||||
/******************************************************************************************************************************
|
||||
HEADER
|
||||
*******************************************************************************************************************************/
|
||||
.cs-bg {
|
||||
background: url("../img/slider/1.jpg") no-repeat scroll 0 0 / cover;
|
||||
|
||||
}
|
||||
|
||||
#header .container{
|
||||
color: #FFF;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
padding: 80px 0;
|
||||
}
|
||||
.timer_box{
|
||||
margin: 35px 24px;
|
||||
display: inline-block;
|
||||
padding: 16px 12px;
|
||||
text-align: center;
|
||||
width: 130px;
|
||||
border-radius: 10%;
|
||||
border: 1px solid rgba(255, 255, 255, .6);
|
||||
}
|
||||
.timer_box h1{
|
||||
font-size: 48px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 0px;
|
||||
font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||
color: white;
|
||||
}
|
||||
.timer_box p{ margin-top: 0px;}
|
||||
#layer{
|
||||
background-color: rgba(0, 0, 0, .2);
|
||||
left: 0; top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
}
|
||||
#slider{
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
background-color: #2c3e50;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.mt {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.centered {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.floatless {
|
||||
float: none !important;
|
||||
font-size: 35px !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
/******************************************************************************************************************************
|
||||
RESPONSIVE
|
||||
*******************************************************************************************************************************/
|
||||
@media only screen and (max-width: 520px) {
|
||||
.timer_box{ margin: 0 12px 12px 0;}
|
||||
.tp-bullets{display: none;}
|
||||
#header .container{padding: 20px 0px 20px 0}
|
||||
#header-button{ display: none;}
|
||||
#appendedInputButtons{
|
||||
border-radius: 20px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
#slider{display: none;}
|
||||
.btn-subscribe{border-radius: 20px;}
|
||||
#contact-informations{margin-top: 24px;}
|
||||
body {
|
||||
background-color: #2c3e50;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 740px) {
|
||||
.timer_box{
|
||||
width: 100px;
|
||||
padding: 16px 0 0 0;
|
||||
margin: 35px 12px;
|
||||
}
|
||||
#layer{display: none;}
|
||||
.timer_box h1{ font-size: 28px;}
|
||||
h1{ font-size: 36px;}
|
||||
}
|
||||
/******************************************************************************************************************************
|
||||
ANIMATIONS
|
||||
*******************************************************************************************************************************/
|
||||
.animated {
|
||||
opacity: 0;
|
||||
-webkit-animation-duration: 1s;
|
||||
-moz-animation-duration: 1s;
|
||||
-o-animation-duration: 1s;
|
||||
animation-duration: 1s;
|
||||
-webkit-animation-fill-mode: both;
|
||||
-moz-animation-fill-mode: both;
|
||||
-o-animation-fill-mode: both;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
.animated.GoIn {
|
||||
opacity: 1;
|
||||
-webkit-animation-delay: 1s;
|
||||
-moz-animation-delay: 1s;
|
||||
-ms-animation-delay: 1s;
|
||||
-o-animation-delay: 1s;
|
||||
animation-delay: 1s;
|
||||
-webkit-animation-name: GoIn;
|
||||
-moz-animation-name: GoIn;
|
||||
-o-animation-name: GoIn;
|
||||
animation-name: GoIn;
|
||||
}
|
||||
.animated.FadeIn {
|
||||
opacity: 1;
|
||||
-webkit-animation-duration: .8s;
|
||||
-moz-animation-duration: .8s;
|
||||
-ms-animation-duration: .8s;
|
||||
-o-animation-duration: .8s;
|
||||
animation-duration: .8s;
|
||||
-webkit-animation-name: FadeIn;
|
||||
-moz-animation-name: FadeIn;
|
||||
-o-animation-name: FadeIn;
|
||||
animation-name: FadeIn;
|
||||
}
|
||||
@-webkit-keyframes GoIn {
|
||||
0% {opacity: 0;-webkit-transform: translateY(-2000px);}
|
||||
60% {opacity: 1;-webkit-transform: translateY(30px);}
|
||||
80% {-webkit-transform: translateY(-10px);}
|
||||
100% {-webkit-transform: translateY(0);}
|
||||
}
|
||||
@-moz-keyframes GoIn {
|
||||
0% {opacity: 0; -moz-transform: translateY(-2000px);}
|
||||
60% {opacity: 1; -moz-transform: translateY(30px);}
|
||||
80% {-moz-transform: translateY(-10px);}
|
||||
100% {-moz-transform: translateY(0);}
|
||||
}
|
||||
@-o-keyframes GoIn {
|
||||
0% {opacity: 0; -o-transform: translateY(-2000px);}
|
||||
60% {opacity: 1; -o-transform: translateY(30px);}
|
||||
80% {-o-transform: translateY(-10px);}
|
||||
100% {-o-transform: translateY(0);}
|
||||
}
|
||||
@keyframes GoIn {
|
||||
0% {opacity: 0; transform: translateY(-2000px);}
|
||||
60% {opacity: 1; transform: translateY(30px);}
|
||||
80% {transform: translateY(-10px);}
|
||||
100% {transform: translateY(0);}
|
||||
}
|
||||
@-webkit-keyframes FadeIn {
|
||||
0% {opacity: 0}
|
||||
30% {opacity: .3;}
|
||||
60% {opacity: .6;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
@-moz-keyframes FadeIn {
|
||||
0% {opacity: 0}
|
||||
30% {opacity: .3;}
|
||||
60% {opacity: .6;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
@-o-keyframes FadeIn {
|
||||
0% {opacity: 0}
|
||||
30% {opacity: .3;}
|
||||
60% {opacity: .6;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
@keyframes FadeIn {
|
||||
0% {opacity: 0}
|
||||
30% {opacity: .3;}
|
||||
60% {opacity: .6;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
@-webkit-keyframes InfiniteTurn {
|
||||
0% { -webkit-transform: rotate(0deg);}
|
||||
100% { -webkit-transform: rotate(360deg);};
|
||||
}
|
||||
@-moz-keyframes InfiniteTurn {
|
||||
0% { -moz-transform: rotate(0deg);}
|
||||
100% { -moz-transform: rotate(360deg);};
|
||||
}
|
||||
@-o-keyframes InfiniteTurn {
|
||||
0% { -o-transform: rotate(0deg);}
|
||||
100% { -o-transform: rotate(360deg);};
|
||||
}
|
||||
@-keyframes InfiniteTurn {
|
||||
0% { transform: rotate(0deg);}
|
||||
100% { transform: rotate(360deg);};
|
||||
}
|
||||
|
||||
@-webkit-keyframes bounceInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(30px);
|
||||
}
|
||||
80% {
|
||||
-webkit-transform: translateX(-10px);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes bounceInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(-2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(30px);
|
||||
}
|
||||
80% {
|
||||
-moz-transform: translateX(-10px);
|
||||
}
|
||||
100% {
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@-o-keyframes bounceInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(-2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(30px);
|
||||
}
|
||||
80% {
|
||||
-o-transform: translateX(-10px);
|
||||
}
|
||||
100% {
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@keyframes bounceInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(-2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateX(30px);
|
||||
}
|
||||
80% {
|
||||
transform: translateX(-10px);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
.animated.bounceInLeft {
|
||||
opacity: 1;
|
||||
-webkit-animation-name: bounceInLeft;
|
||||
-moz-animation-name: bounceInLeft;
|
||||
-o-animation-name: bounceInLeft;
|
||||
animation-name: bounceInLeft;
|
||||
}
|
||||
@-webkit-keyframes bounceInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(-30px);
|
||||
}
|
||||
80% {
|
||||
-webkit-transform: translateX(10px);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes bounceInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(-30px);
|
||||
}
|
||||
80% {
|
||||
-moz-transform: translateX(10px);
|
||||
}
|
||||
100% {
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@-o-keyframes bounceInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(-30px);
|
||||
}
|
||||
80% {
|
||||
-o-transform: translateX(10px);
|
||||
}
|
||||
100% {
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@keyframes bounceInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateX(-30px);
|
||||
}
|
||||
80% {
|
||||
transform: translateX(10px);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
.animated.bounceInRight {
|
||||
opacity: 1;
|
||||
-webkit-animation-name: bounceInRight;
|
||||
-moz-animation-name: bounceInRight;
|
||||
-o-animation-name: bounceInRight;
|
||||
animation-name: bounceInRight;
|
||||
}
|
||||
@-webkit-keyframes bounceInTop {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(-30px);
|
||||
}
|
||||
80% {
|
||||
-webkit-transform: translateY(10px);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes bounceInTop {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(-30px);
|
||||
}
|
||||
80% {
|
||||
-moz-transform: translateY(10px);
|
||||
}
|
||||
100% {
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@-o-keyframes bounceInTop {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(-30px);
|
||||
}
|
||||
80% {
|
||||
-o-transform: translateY(10px);
|
||||
}
|
||||
100% {
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@-ms-keyframes bounceInTop {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-ms-transform: translateY(2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-ms-transform: translateY(-30px);
|
||||
}
|
||||
80% {
|
||||
-ms-transform: translateY(10px);
|
||||
}
|
||||
100% {
|
||||
-ms-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@keyframes bounceInTop {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateY(-30px);
|
||||
}
|
||||
80% {
|
||||
transform: translateY(10px);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
.animated.bounceInTop {
|
||||
opacity: 1;
|
||||
-webkit-animation-name: bounceInTop;
|
||||
-moz-animation-name: bounceInTop;
|
||||
-o-animation-name: bounceInTop;
|
||||
animation-name: bounceInTop;
|
||||
}
|
||||
@-webkit-keyframes bounceInBottom {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(30px);
|
||||
}
|
||||
80% {
|
||||
-webkit-transform: translateY(-10px);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes bounceInBottom {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(-2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(30px);
|
||||
}
|
||||
80% {
|
||||
-moz-transform: translateY(-10px);
|
||||
}
|
||||
100% {
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@-o-keyframes bounceInBottom {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(-2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(30px);
|
||||
}
|
||||
80% {
|
||||
-o-transform: translateY(-10px);
|
||||
}
|
||||
100% {
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@keyframes bounceInBottom {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
80% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
.animated.bounceInBottom {
|
||||
opacity: 1;
|
||||
-webkit-animation-name: bounceInBottom;
|
||||
-moz-animation-name: bounceInBottom;
|
||||
-o-animation-name: bounceInBottom;
|
||||
animation-name: bounceInBottom;
|
||||
}
|
||||
/******************************************************************************************************************************
|
||||
PLUGINS
|
||||
*******************************************************************************************************************************/
|
||||
/* Preloader */
|
||||
#preloader {
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
right:0;
|
||||
bottom:0;
|
||||
background-color:#fff; /* change if the mask should have another color then white */
|
||||
z-index:99999; /* makes sure it stays on top */
|
||||
}
|
||||
#status {
|
||||
width:200px;
|
||||
height:200px;
|
||||
position:absolute;
|
||||
left:50%; /* centers the loading animation horizontally one the screen */
|
||||
top:50%; /* centers the loading animation vertically one the screen */
|
||||
background-repeat:no-repeat;
|
||||
background-position:center;
|
||||
margin:-100px 0 0 -100px; /* is width and height divided by two */
|
||||
}
|
||||
/* SLIDER */
|
||||
.rev_slider_wrapper{ position:relative;}
|
||||
.rev_slider_wrapper >ul { visibility:hidden;}
|
||||
.rev_slider img{
|
||||
max-width:none !important;
|
||||
-moz-transition: none 0 !important;
|
||||
-webkit-transition: none 0 !important;
|
||||
-o-transition: none 0 !important;
|
||||
transition: none 0 !important;
|
||||
margin:0px !important;
|
||||
padding:0px !important;
|
||||
border-width:0px !important;
|
||||
border:none;
|
||||
visibility:visible !important;
|
||||
}
|
||||
.rev_slider .no-slides-text{
|
||||
font-weight:bold;
|
||||
text-align:center;
|
||||
padding-top:80px;
|
||||
}
|
||||
.rev_slider ul{
|
||||
margin:0px !important;
|
||||
padding:0px !important;
|
||||
list-style: none !important;
|
||||
list-style-type: none !important;
|
||||
background-position:0px 0px !important;
|
||||
}
|
||||
.rev_slider ul li,.rev_slider >ul >li,.rev_slider >ul >li:before{
|
||||
list-style:none !important;
|
||||
position:absolute;
|
||||
visibility:hidden;
|
||||
margin:0px !important;
|
||||
padding:0px !important;
|
||||
overflow-x: visible;
|
||||
overflow-y: visible;
|
||||
list-style-type: none !important;
|
||||
background-image:none !important;
|
||||
background-position:0px 0px !important;
|
||||
text-indent: 0em !important;
|
||||
}
|
||||
.tp-bannertimer{
|
||||
width: 100%;
|
||||
border-radius: 0 5px 5px 0;
|
||||
height: 2px;
|
||||
z-index: 200;
|
||||
position: absolute;
|
||||
visibility: visible !important;
|
||||
bottom: 0;
|
||||
background-color: rgba(255, 255, 255, .6);
|
||||
}
|
||||
.tp-bullets {
|
||||
z-index:1000; position:absolute;
|
||||
left: 90% !important;
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
||||
-moz-opacity: 1;
|
||||
-khtml-opacity: 1;
|
||||
opacity: 1;
|
||||
-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;
|
||||
}
|
||||
.tp-bullets.simplebullets.round .bullet {
|
||||
cursor:pointer;
|
||||
position:relative;
|
||||
border: 3px solid rgba(255, 255, 255, .6);
|
||||
width:20px;
|
||||
height:20px;
|
||||
margin-right:0px;
|
||||
float:left;
|
||||
border-radius: 50%;
|
||||
margin-top:-10px;
|
||||
margin-left:3px;
|
||||
}
|
||||
.tp-bullets.simplebullets.round .bullet.selected{
|
||||
background: #FFF;
|
||||
border-color: #FFF;
|
||||
}
|
||||
.tp-bullets.simplebullets.round .bullet:hover{
|
||||
border-color: #FFF;
|
||||
-webkit-transition-duration: 0.4s;
|
||||
-moz-transition-duration: 0.4s;
|
||||
transition-duration: 0.4s;
|
||||
}
|
||||
.tp-bullets.simplebullets.round .bullet.last { margin-right:3px;}
|
||||
572
htdocs/css/style-responsive.css
Normal file
572
htdocs/css/style-responsive.css
Normal file
@@ -0,0 +1,572 @@
|
||||
@media (min-width: 980px) {
|
||||
/*-----*/
|
||||
.custom-bar-chart {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (min-width: 768px) and (max-width: 979px) {
|
||||
|
||||
.mail-box .sm-side {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.mail-box .lg-side {
|
||||
width: 70%;
|
||||
}
|
||||
/*-----*/
|
||||
.custom-bar-chart {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
/*chat room*/
|
||||
|
||||
.chat-room aside {
|
||||
display: block;
|
||||
}
|
||||
.chat-room .left-side, .chat-room .mid-side, .chat-room .right-side, .chat-room .left-side footer {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.chat-room .left-side footer {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
ul.chat-user {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.chat-room .left-side , .chat-room .mid-side{
|
||||
margin-bottom: 10px;
|
||||
|
||||
}
|
||||
|
||||
.chat-room .left-side .user-head , .chat-room-head, .chat-room .right-side .user-head{
|
||||
border-radius: 4px 4px 0 0;
|
||||
-webit-border-radius: 4px 4px 0 0;
|
||||
}
|
||||
.chat-room .left-side footer {
|
||||
border-radius: 0 0 4px 4px;
|
||||
-webkit-border-radius: 0 0 4px 4px;
|
||||
}
|
||||
/**/
|
||||
.chat-room .right-side .user-head {
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.chat-room .mid-side footer {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 100%;
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
.chat-txt {
|
||||
width: 65%;
|
||||
}
|
||||
|
||||
.chat-room .right-side footer {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.chat-room .mid-side {
|
||||
margin-bottom: 0!important;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
|
||||
.header {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
/*sidebar*/
|
||||
|
||||
|
||||
#sidebar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sidebar-close #sidebar {
|
||||
height: auto;
|
||||
/*overflow: hidden;*/
|
||||
overflow-y: auto;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
z-index: 1001;
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
/* body container */
|
||||
#main-content {
|
||||
margin: 0px!important;
|
||||
position: none !important;
|
||||
}
|
||||
|
||||
#sidebar > ul > li > a > span {
|
||||
line-height: 35px;
|
||||
}
|
||||
|
||||
#sidebar > ul > li {
|
||||
margin: 0 10px 5px 10px;
|
||||
}
|
||||
#sidebar > ul > li > a {
|
||||
height:35px;
|
||||
line-height:35px;
|
||||
padding: 0 10px;
|
||||
text-align: left;
|
||||
}
|
||||
#sidebar > ul > li > a i{
|
||||
/*display: none !important;*/
|
||||
}
|
||||
|
||||
.mail-info, .mail-info:hover {
|
||||
display: none !important;
|
||||
}
|
||||
#sidebar ul > li > a .arrow, #sidebar > ul > li > a .arrow.open {
|
||||
margin-right: 10px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
#sidebar ul > li.active > a .arrow, #sidebar ul > li > a:hover .arrow, #sidebar ul > li > a:focus .arrow,
|
||||
#sidebar > ul > li.active > a .arrow.open, #sidebar > ul > li > a:hover .arrow.open, #sidebar > ul > li > a:focus .arrow.open{
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
#sidebar > ul > li > a, #sidebar > ul > li > ul.sub > li {
|
||||
width: 100%;
|
||||
}
|
||||
#sidebar > ul > li > ul.sub > li > a {
|
||||
background: transparent !important ;
|
||||
}
|
||||
#sidebar > ul > li > ul.sub > li > a:hover {
|
||||
/*background: #4A8BC2 !important ;*/
|
||||
}
|
||||
|
||||
|
||||
/* sidebar */
|
||||
#sidebar {
|
||||
margin: 0px !important;
|
||||
}
|
||||
|
||||
/* sidebar collabler */
|
||||
#sidebar .btn-navbar.collapsed .arrow {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#sidebar .btn-navbar .arrow {
|
||||
position: absolute;
|
||||
right: 35px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
top:48px;
|
||||
border-bottom: 15px solid #282e36;
|
||||
border-left: 15px solid transparent;
|
||||
border-right: 15px solid transparent;
|
||||
}
|
||||
|
||||
|
||||
/*---------*/
|
||||
|
||||
.modal-footer .btn {
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
|
||||
.btn {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.mail-box aside {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.mail-box .sm-side , .mail-box .lg-side{
|
||||
width: 100% ;
|
||||
}
|
||||
|
||||
/* full calendar fix */
|
||||
.fc-header-right {
|
||||
left:25px;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.fc-header-left .fc-button {
|
||||
margin: 0px !important;
|
||||
top: -10px !important;
|
||||
}
|
||||
|
||||
.fc-header-right .fc-button {
|
||||
margin: 0px !important;
|
||||
top: -50px !important;
|
||||
}
|
||||
|
||||
.fc-state-active, .fc-state-active .fc-button-inner, .fc-state-hover, .fc-state-hover .fc-button-inner {
|
||||
background: none !important;
|
||||
color: #FFFFFF !important;
|
||||
}
|
||||
|
||||
.fc-state-default, .fc-state-default .fc-button-inner {
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
.fc-button {
|
||||
border: none !important;
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
.fc-view {
|
||||
top: 0px !important;
|
||||
}
|
||||
|
||||
.fc-button .fc-button-inner {
|
||||
margin: 0px !important;
|
||||
padding: 2px !important;
|
||||
border: none !important;
|
||||
margin-right: 2px !important;
|
||||
background-color: #fafafa !important;
|
||||
background-image: -moz-linear-gradient(top, #fafafa, #efefef) !important;
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafafa), to(#efefef)) !important;
|
||||
background-image: -webkit-linear-gradient(top, #fafafa, #efefef) !important;
|
||||
background-image: -o-linear-gradient(top, #fafafa, #efefef) !important;
|
||||
background-image: linear-gradient(to bottom, #fafafa, #efefef) !important;
|
||||
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fafafa', endColorstr='#efefef', GradientType=0) !important;
|
||||
-webkit-box-shadow: 0 1px 0px rgba(255, 255, 255, .8) !important;
|
||||
-moz-box-shadow: 0 1px 0px rgba(255, 255, 255, .8) !important;
|
||||
box-shadow: 0 1px 0px rgba(255, 255, 255, .8) !important;
|
||||
-webkit-border-radius: 3px !important;
|
||||
-moz-border-radius: 3px !important;
|
||||
border-radius: 3px !important;
|
||||
color: #646464 !important;
|
||||
border: 1px solid #ddd !important;
|
||||
text-shadow: 0 1px 0px rgba(255, 255, 255, .6) !important;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fc-button.fc-state-disabled .fc-button-inner {
|
||||
color: #bcbbbb !important;
|
||||
}
|
||||
|
||||
.fc-button.fc-state-active .fc-button-inner {
|
||||
background-color: #e5e4e4 !important;
|
||||
background-image: -moz-linear-gradient(top, #e5e4e4, #dddcdc) !important;
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e5e4e4), to(#dddcdc)) !important;
|
||||
background-image: -webkit-linear-gradient(top, #e5e4e4, #dddcdc) !important;
|
||||
background-image: -o-linear-gradient(top, #e5e4e4, #dddcdc) !important;
|
||||
background-image: linear-gradient(to bottom, #e5e4e4, #dddcdc) !important;
|
||||
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#e5e4e4', endColorstr='#dddcdc', GradientType=0) !important;
|
||||
}
|
||||
|
||||
.fc-content {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.fc-header-title h2 {
|
||||
line-height: 40px !important;
|
||||
font-size: 12px !important;
|
||||
}
|
||||
|
||||
.fc-header {
|
||||
margin-bottom:0px !important;
|
||||
}
|
||||
|
||||
/*--*/
|
||||
|
||||
/*.chart-position {*/
|
||||
/*margin-top: 0px;*/
|
||||
/*}*/
|
||||
|
||||
.timeline-desk .album a {
|
||||
margin-bottom: 5px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.stepy-titles li {
|
||||
margin: 10px 3px;
|
||||
}
|
||||
|
||||
.mail-option .btn {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.boxed-page .container #sidebar {
|
||||
position:absolute;
|
||||
}
|
||||
|
||||
/*--horizontal menu--*/
|
||||
.full-width .navbar-toggle {
|
||||
border: 1px solid #eaeaea;
|
||||
}
|
||||
.full-width .navbar-toggle .icon-bar {
|
||||
background: #c7c7c7;
|
||||
}
|
||||
|
||||
.full-width .navbar-toggle {
|
||||
float: left;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.horizontal-menu {
|
||||
float: left;
|
||||
margin-left:0px;
|
||||
width: 70%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.top-nav {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
.horizontal-menu .navbar-nav > li > a {
|
||||
padding-bottom: 10px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
/*-----*/
|
||||
.custom-bar-chart {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
/*menu icon plus minus*/
|
||||
.dcjq-icon {
|
||||
top: 10px;
|
||||
}
|
||||
ul.sidebar-menu li ul.sub li a {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/*---*/
|
||||
|
||||
.img-responsive {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (max-width: 480px) {
|
||||
|
||||
.notify-row, .search, .dont-show , .inbox-head .sr-input, .inbox-head .sr-btn{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.mail-box aside {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.mail-box .sm-side , .mail-box .lg-side{
|
||||
width: 100% ;
|
||||
}
|
||||
|
||||
#top_menu .nav > li, ul.top-menu > li {
|
||||
float: right;
|
||||
}
|
||||
.hidden-phone {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.dataTables_filter {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.dataTables_info {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mail-option .btn {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.mail-option .inbox-pagination {
|
||||
margin-top: 10px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.chart-position {
|
||||
margin-top: 0px;
|
||||
}
|
||||
/*--horizontal menu--*/
|
||||
.full-width .navbar-toggle {
|
||||
border: 1px solid #eaeaea;
|
||||
}
|
||||
.full-width .navbar-toggle .icon-bar {
|
||||
background: #c7c7c7;
|
||||
}
|
||||
|
||||
.full-width .navbar-toggle {
|
||||
float: left;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.horizontal-menu {
|
||||
float: left;
|
||||
margin-left:0px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.top-nav {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
.horizontal-menu .navbar-nav > li > a {
|
||||
padding-bottom: 10px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.ms-container {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cmt-form {
|
||||
display: inline-block;
|
||||
width: 84%;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
|
||||
background-color: #ccc;
|
||||
border-color:#ccc ;
|
||||
}
|
||||
|
||||
/*chat room*/
|
||||
|
||||
.chat-room aside {
|
||||
display: block;
|
||||
}
|
||||
.chat-room .left-side, .chat-room .mid-side, .chat-room .right-side, .chat-room .left-side footer {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.chat-room .left-side footer {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
ul.chat-user {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.chat-room .left-side , .chat-room .mid-side{
|
||||
margin-bottom: 10px;
|
||||
|
||||
}
|
||||
|
||||
.chat-room .left-side .user-head , .chat-room-head, .chat-room .right-side .user-head{
|
||||
border-radius: 4px 4px 0 0;
|
||||
-webit-border-radius: 4px 4px 0 0;
|
||||
}
|
||||
.chat-room .left-side footer {
|
||||
border-radius: 0 0 4px 4px;
|
||||
-webkit-border-radius: 0 0 4px 4px;
|
||||
}
|
||||
|
||||
/**/
|
||||
.chat-room .right-side .user-head {
|
||||
width: 100%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.chat-room .mid-side footer {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 100%;
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
.chat-txt {
|
||||
width: 65%;
|
||||
}
|
||||
|
||||
.chat-room .right-side footer {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.chat-room .mid-side {
|
||||
margin-bottom: 0!important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:320px) {
|
||||
.login-social-link a {
|
||||
padding: 15px 17px !important;
|
||||
}
|
||||
|
||||
.notify-row, .search, .dont-show, .inbox-head .sr-input, .inbox-head .sr-btn {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.mail-box aside {
|
||||
display: block ;
|
||||
}
|
||||
|
||||
.mail-box .sm-side , .mail-box .lg-side{
|
||||
width: 100% ;
|
||||
}
|
||||
|
||||
#top_menu .nav > li, ul.top-menu > li {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.hidden-phone {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.dataTables_filter {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.dataTables_info {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mail-option .btn {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.mail-option .inbox-pagination {
|
||||
margin-top: 10px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.chart-position {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
.lock-wrapper {
|
||||
margin: 10% auto;
|
||||
max-width: 310px;
|
||||
}
|
||||
.lock-input {
|
||||
width: 82%;
|
||||
}
|
||||
|
||||
.cmt-form {
|
||||
display: inline-block;
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
.chat-room .mid-side footer .btn-group {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.stepy-titles li.current-step div, .stepy-titles li div {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
line-height: 70px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
5688
htdocs/css/style.css
Normal file
5688
htdocs/css/style.css
Normal file
File diff suppressed because it is too large
Load Diff
94
htdocs/css/table-responsive.css
Normal file
94
htdocs/css/table-responsive.css
Normal file
@@ -0,0 +1,94 @@
|
||||
/*Unseen Column*/
|
||||
@media only screen and (max-width: 800px) {
|
||||
#unseen table td:nth-child(2),
|
||||
#unseen table th:nth-child(2) {display: none;}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 640px) {
|
||||
#unseen table td:nth-child(4),
|
||||
#unseen table th:nth-child(4),
|
||||
#unseen table td:nth-child(7),
|
||||
#unseen table th:nth-child(7),
|
||||
#unseen table td:nth-child(8),
|
||||
#unseen table th:nth-child(8){display: none;}
|
||||
}
|
||||
|
||||
/*flip-scroll*/
|
||||
|
||||
@media only screen and (max-width: 800px) {
|
||||
#flip-scroll .cf:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
|
||||
#flip-scroll * html .cf { zoom: 1; }
|
||||
#flip-scroll *:first-child+html .cf { zoom: 1; }
|
||||
#flip-scroll table { width: 100%; border-collapse: collapse; border-spacing: 0; }
|
||||
|
||||
#flip-scroll th,
|
||||
#flip-scroll td { margin: 0; vertical-align: top; }
|
||||
#flip-scroll th { text-align: left; }
|
||||
#flip-scroll table { display: block; position: relative; width: 100%; }
|
||||
#flip-scroll thead { display: block; float: left; }
|
||||
#flip-scroll tbody { display: block; width: auto; position: relative; overflow-x: auto; white-space: nowrap; }
|
||||
#flip-scroll thead tr { display: block; }
|
||||
#flip-scroll th { display: block; text-align: right; }
|
||||
#flip-scroll tbody tr { display: inline-block; vertical-align: top; }
|
||||
#flip-scroll td { display: block; min-height: 1.25em; text-align: left; }
|
||||
|
||||
|
||||
/* sort out borders */
|
||||
|
||||
#flip-scroll th { border-bottom: 0; border-left: 0; }
|
||||
#flip-scroll td { border-left: 0; border-right: 0; border-bottom: 0; }
|
||||
#flip-scroll tbody tr { border-left: 1px solid #babcbf; }
|
||||
#flip-scroll th:last-child,
|
||||
#flip-scroll td:last-child { border-bottom: 1px solid #babcbf; }
|
||||
}
|
||||
|
||||
/*no more table*/
|
||||
|
||||
@media only screen and (max-width: 800px) {
|
||||
/* Force table to not be like tables anymore */
|
||||
#no-more-tables table,
|
||||
#no-more-tables thead,
|
||||
#no-more-tables tbody,
|
||||
#no-more-tables th,
|
||||
#no-more-tables td,
|
||||
#no-more-tables tr {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Hide table headers (but not display: none;, for accessibility) */
|
||||
#no-more-tables thead tr {
|
||||
position: absolute;
|
||||
top: -9999px;
|
||||
left: -9999px;
|
||||
}
|
||||
|
||||
#no-more-tables tr { border: 1px solid #ccc; }
|
||||
|
||||
#no-more-tables td {
|
||||
/* Behave like a "row" */
|
||||
border: none;
|
||||
border-bottom: 1px solid #eee;
|
||||
position: relative;
|
||||
padding-left: 50%;
|
||||
white-space: normal;
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
#no-more-tables td:before {
|
||||
/* Now like a table header */
|
||||
position: absolute;
|
||||
/* Top/left values mimic padding */
|
||||
top: 6px;
|
||||
left: 6px;
|
||||
width: 45%;
|
||||
padding-right: 10px;
|
||||
white-space: nowrap;
|
||||
text-align:left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/*
|
||||
Label the data
|
||||
*/
|
||||
#no-more-tables td:before { content: attr(data-title); }
|
||||
}
|
||||
103
htdocs/css/tasks.css
Normal file
103
htdocs/css/tasks.css
Normal file
@@ -0,0 +1,103 @@
|
||||
/*--------------Tasks Widget--------------*/
|
||||
|
||||
.task-content {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.tasks-widget .task-content:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.tasks-widget .task-footer {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.tasks-widget .task-footer:after,
|
||||
.tasks-widget .task-footer:before {
|
||||
content: "";
|
||||
display: table;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.tasks-widget .task-footer:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list {
|
||||
padding:0;
|
||||
margin:0;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list > li {
|
||||
position:relative;
|
||||
padding:10px 5px;
|
||||
border-bottom:1px dashed #eaeaea;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li.last-line {
|
||||
border-bottom:none;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li > .task-bell {
|
||||
margin-left:10px;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li > .task-checkbox {
|
||||
float:left;
|
||||
width:30px;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li > .task-title {
|
||||
overflow:hidden;
|
||||
margin-right:10px;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li > .task-config {
|
||||
position:absolute;
|
||||
top:10px;
|
||||
right:10px;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li .task-title .task-title-sp {
|
||||
margin-right:5px;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li.task-done .task-title-sp {
|
||||
text-decoration:line-through;
|
||||
color: #bbbbbb;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li.task-done {
|
||||
background:#f6f6f6;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li.task-done:hover {
|
||||
background:#f4f4f4;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li:hover {
|
||||
background:#f9f9f9;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li .task-config {
|
||||
display:none;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list li:hover > .task-config {
|
||||
display:block;
|
||||
margin-bottom:0 !important;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
|
||||
.tasks-widget .task-config-btn {
|
||||
float:inherit;
|
||||
display:block;
|
||||
}
|
||||
|
||||
.tasks-widget .task-list-projects li > .label {
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
}
|
||||
359
htdocs/css/user.css
Normal file
359
htdocs/css/user.css
Normal file
@@ -0,0 +1,359 @@
|
||||
.btn-blue {
|
||||
color: #fff;
|
||||
background-color: #428bca;
|
||||
border-color: #357ebd;
|
||||
}
|
||||
.btn-blue:hover,
|
||||
.btn-blue:focus,
|
||||
.btn-blue:active,
|
||||
.btn-blue.active,
|
||||
.open > .dropdown-toggle.btn-blue {
|
||||
color: #fff;
|
||||
background-color: #3071a9;
|
||||
border-color: #285e8e;
|
||||
}
|
||||
.btn-blue:active,
|
||||
.btn-blue.active,
|
||||
.open > .dropdown-toggle.btn-blue {
|
||||
background-image: none;
|
||||
}
|
||||
.btn-blue.disabled,
|
||||
.btn-blue[disabled],
|
||||
fieldset[disabled] .btn-blue,
|
||||
.btn-blue.disabled:hover,
|
||||
.btn-blue[disabled]:hover,
|
||||
fieldset[disabled] .btn-blue:hover,
|
||||
.btn-blue.disabled:focus,
|
||||
.btn-blue[disabled]:focus,
|
||||
fieldset[disabled] .btn-blue:focus,
|
||||
.btn-blue.disabled:active,
|
||||
.btn-blue[disabled]:active,
|
||||
fieldset[disabled] .btn-blue:active,
|
||||
.btn-blue.disabled.active,
|
||||
.btn-blue[disabled].active,
|
||||
fieldset[disabled] .btn-blue.active {
|
||||
background-color: #428bca;
|
||||
border-color: #357ebd;
|
||||
}
|
||||
.btn-blue .badge {
|
||||
color: #428bca;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.btn-green {
|
||||
color: #fff;
|
||||
background-color: #5cb85c;
|
||||
border-color: #4cae4c;
|
||||
}
|
||||
.btn-green:hover,
|
||||
.btn-green:focus,
|
||||
.btn-green:active,
|
||||
.btn-green.active,
|
||||
.open > .dropdown-toggle.btn-green {
|
||||
color: #fff;
|
||||
background-color: #44c000;
|
||||
border-color: #398439;
|
||||
}
|
||||
.btn-green:active,
|
||||
.btn-green.active,
|
||||
.open > .dropdown-toggle.btn-green {
|
||||
background-image: none;
|
||||
}
|
||||
.btn-green.disabled,
|
||||
.btn-green[disabled],
|
||||
fieldset[disabled] .btn-green,
|
||||
.btn-green.disabled:hover,
|
||||
.btn-green[disabled]:hover,
|
||||
fieldset[disabled] .btn-green:hover,
|
||||
.btn-green.disabled:focus,
|
||||
.btn-green[disabled]:focus,
|
||||
fieldset[disabled] .btn-green:focus,
|
||||
.btn-green.disabled:active,
|
||||
.btn-green[disabled]:active,
|
||||
fieldset[disabled] .btn-green:active,
|
||||
.btn-green.disabled.active,
|
||||
.btn-green[disabled].active,
|
||||
fieldset[disabled] .btn-green.active {
|
||||
background-color: #5fb85c;
|
||||
border-color: #4cae4c;
|
||||
}
|
||||
.btn-green .badge {
|
||||
color: #5cb85c;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.btn-grey {
|
||||
color: #333;
|
||||
background-color: #e6e6e6;
|
||||
border-color: #adadad;
|
||||
}
|
||||
.btn-grey:hover,
|
||||
.btn-grey:focus,
|
||||
.btn-grey:active,
|
||||
.btn-grey.active,
|
||||
.open > .dropdown-toggle.btn-grey {
|
||||
color: #333;
|
||||
background-color: #efffef;
|
||||
border-color: #adadad;
|
||||
}
|
||||
.btn-grey:active,
|
||||
.btn-grey.active,
|
||||
.open > .dropdown-toggle.btn-grey {
|
||||
background-image: none;
|
||||
}
|
||||
.btn-grey.disabled,
|
||||
.btn-grey[disabled],
|
||||
fieldset[disabled] .btn-grey,
|
||||
.btn-grey.disabled:hover,
|
||||
.btn-grey[disabled]:hover,
|
||||
fieldset[disabled] .btn-grey:hover,
|
||||
.btn-grey.disabled:focus,
|
||||
.btn-grey[disabled]:focus,
|
||||
fieldset[disabled] .btn-grey:focus,
|
||||
.btn-grey.disabled:active,
|
||||
.btn-grey[disabled]:active,
|
||||
fieldset[disabled] .btn-grey:active,
|
||||
.btn-grey.disabled.active,
|
||||
.btn-grey[disabled].active,
|
||||
fieldset[disabled] .btn-grey.active {
|
||||
background-color: #fff;
|
||||
border-color: #ccc;
|
||||
}
|
||||
.btn-grey .badge {
|
||||
color: #fff;
|
||||
background-color: #333;
|
||||
}
|
||||
|
||||
.btn-red {
|
||||
color: #fff;
|
||||
background-color: #d9534f;
|
||||
border-color: #d43f3a;
|
||||
}
|
||||
.btn-red:hover,
|
||||
.btn-red:focus,
|
||||
.btn-red:active,
|
||||
.btn-red.active,
|
||||
.open > .dropdown-toggle.btn-red {
|
||||
color: #fff;
|
||||
background-color: #c9302c;
|
||||
border-color: #ac2925;
|
||||
}
|
||||
.btn-red:active,
|
||||
.btn-red.active,
|
||||
.open > .dropdown-toggle.btn-red {
|
||||
background-image: none;
|
||||
}
|
||||
.btn-red.disabled,
|
||||
.btn-red[disabled],
|
||||
fieldset[disabled] .btn-red,
|
||||
.btn-red.disabled:hover,
|
||||
.btn-red[disabled]:hover,
|
||||
fieldset[disabled] .btn-red:hover,
|
||||
.btn-red.disabled:focus,
|
||||
.btn-red[disabled]:focus,
|
||||
fieldset[disabled] .btn-red:focus,
|
||||
.btn-red.disabled:active,
|
||||
.btn-red[disabled]:active,
|
||||
fieldset[disabled] .btn-red:active,
|
||||
.btn-red.disabled.active,
|
||||
.btn-red[disabled].active,
|
||||
fieldset[disabled] .btn-red.active {
|
||||
background-color: #d9534f;
|
||||
border-color: #d43f3a;
|
||||
}
|
||||
.btn-red .badge {
|
||||
color: #d9534f;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.btn-cyan {
|
||||
color: #fff;
|
||||
background-color: #5bc0de;
|
||||
border-color: #46b8da;
|
||||
}
|
||||
.btn-cyan:hover,
|
||||
.btn-cyan:focus,
|
||||
.btn-cyan:active,
|
||||
.btn-cyan.active,
|
||||
.open > .dropdown-toggle.btn-cyan {
|
||||
color: #fff;
|
||||
background-color: #31b0d5;
|
||||
border-color: #269abc;
|
||||
}
|
||||
.btn-cyan:active,
|
||||
.btn-cyan.active,
|
||||
.open > .dropdown-toggle.btn-cyan {
|
||||
background-image: none;
|
||||
}
|
||||
.btn-cyan.disabled,
|
||||
.btn-cyan[disabled],
|
||||
fieldset[disabled] .btn-cyan,
|
||||
.btn-cyan.disabled:hover,
|
||||
.btn-cyan[disabled]:hover,
|
||||
fieldset[disabled] .btn-cyan:hover,
|
||||
.btn-cyan.disabled:focus,
|
||||
.btn-cyan[disabled]:focus,
|
||||
fieldset[disabled] .btn-cyan:focus,
|
||||
.btn-cyan.disabled:active,
|
||||
.btn-cyan[disabled]:active,
|
||||
fieldset[disabled] .btn-cyan:active,
|
||||
.btn-cyan.disabled.active,
|
||||
.btn-cyan[disabled].active,
|
||||
fieldset[disabled] .btn-cyan.active {
|
||||
background-color: #5bc0de;
|
||||
border-color: #46b8da;
|
||||
}
|
||||
.btn-cyan .badge {
|
||||
color: #5bc0de;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.btn-yellow {
|
||||
color: #fff;
|
||||
background-color: #f0ad4e;
|
||||
border-color: #eea236;
|
||||
}
|
||||
.btn-yellow:hover,
|
||||
.btn-yellow:focus,
|
||||
.btn-yellow:active,
|
||||
.btn-yellow.active,
|
||||
.open > .dropdown-toggle.btn-yellow {
|
||||
color: #fff;
|
||||
background-color: #ec971f;
|
||||
border-color: #d58512;
|
||||
}
|
||||
.btn-yellow:active,
|
||||
.btn-yellow.active,
|
||||
.open > .dropdown-toggle.btn-yellow {
|
||||
background-image: none;
|
||||
}
|
||||
.btn-yellow.disabled,
|
||||
.btn-yellow[disabled],
|
||||
fieldset[disabled] .btn-yellow,
|
||||
.btn-yellow.disabled:hover,
|
||||
.btn-yellow[disabled]:hover,
|
||||
fieldset[disabled] .btn-yellow:hover,
|
||||
.btn-yellow.disabled:focus,
|
||||
.btn-yellow[disabled]:focus,
|
||||
fieldset[disabled] .btn-yellow:focus,
|
||||
.btn-yellow.disabled:active,
|
||||
.btn-yellow[disabled]:active,
|
||||
fieldset[disabled] .btn-yellow:active,
|
||||
.btn-yellow.disabled.active,
|
||||
.btn-yellow[disabled].active,
|
||||
fieldset[disabled] .btn-yellow.active {
|
||||
background-color: #f0ad4e;
|
||||
border-color: #eea236;
|
||||
}
|
||||
.btn-yellow .badge {
|
||||
color: #f0ad4e;
|
||||
background-color: #fff;
|
||||
}
|
||||
li.disabled {
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
}
|
||||
a.disabled {
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
textarea.input-select,
|
||||
select[multiple].input-select {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.input-select {
|
||||
height: 25px;
|
||||
padding: 1px 10px;
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
text-align: right;
|
||||
border-radius: 500px;
|
||||
-webkit-border-radius: 500px;
|
||||
}
|
||||
}
|
||||
|
||||
select.input-select {
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
.shadow-input {
|
||||
text-align: center !important;
|
||||
border-style: none;
|
||||
border-width: 0px;
|
||||
box-shadow: inset 0 0 2px 1px #488;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'BebasNeueRegular';
|
||||
src: url('BebasNeue-webfont.eot');
|
||||
src: url('BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('BebasNeue-webfont.woff') format('woff'),
|
||||
url('BebasNeue-webfont.ttf') format('truetype'),
|
||||
url('BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.clock {
|
||||
display: inline;
|
||||
margin: 0 auto;
|
||||
font-size: 12px;
|
||||
padding: 0px;
|
||||
border: 0px solid #333;
|
||||
color: #ffff;
|
||||
}
|
||||
|
||||
#Date {
|
||||
display: inline;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
text-shadow: 0 0 5px #00c6ff;
|
||||
}
|
||||
|
||||
#point {
|
||||
position: relative;
|
||||
-moz-animation: mymove 1s ease infinite;
|
||||
-webkit-animation: mymove 1s ease infinite;
|
||||
padding-left: 1px;
|
||||
padding-right: 1px;
|
||||
}
|
||||
|
||||
/* Simple Animation */
|
||||
@-webkit-keyframes mymove {
|
||||
0% {
|
||||
opacity: 1.0;
|
||||
text-shadow: 0 0 10px #00c6ff;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 0;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1.0;
|
||||
text-shadow: 0 0 10px #00c6ff;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes mymove {
|
||||
0% {
|
||||
opacity: 1.0;
|
||||
text-shadow: 0 0 10px #00c6ff;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 0;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1.0;
|
||||
text-shadow: 0 0 10px #00c6ff;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user