[+] FO : New Responsive, Bootstrap template
This commit is contained in:
@@ -0,0 +1,404 @@
|
||||
/*
|
||||
* Core Owl Carousel CSS File
|
||||
* v1.24
|
||||
*/
|
||||
/* 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;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.owl-carousel .owl-wrapper {
|
||||
display: none;
|
||||
position: relative;
|
||||
-webkit-transform: translate3d(0px, 0px, 0px);
|
||||
}
|
||||
|
||||
.owl-carousel .owl-wrapper-outer {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
margin: 0 -10px;
|
||||
}
|
||||
|
||||
.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;
|
||||
width: 200px !important;
|
||||
}
|
||||
|
||||
.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;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
-moz-transform: translate3d(0, 0, 0);
|
||||
-ms-transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
/* CSS3 Transitions */
|
||||
.owl-origin {
|
||||
-webkit-perspective: 1200px;
|
||||
-webkit-perspective-origin-x: 50%;
|
||||
-webkit-perspective-origin-y: 50%;
|
||||
-moz-perspective: 1200px;
|
||||
-moz-perspective-origin-x: 50%;
|
||||
-moz-perspective-origin-y: 50%;
|
||||
perspective: 1200px;
|
||||
}
|
||||
|
||||
/* fade */
|
||||
.owl-fade-out {
|
||||
z-index: 10;
|
||||
-webkit-animation: fadeOut .7s both ease;
|
||||
-moz-animation: fadeOut .7s both ease;
|
||||
animation: fadeOut .7s both ease;
|
||||
}
|
||||
|
||||
.owl-fade-in {
|
||||
-webkit-animation: fadeIn .7s both ease;
|
||||
-moz-animation: fadeIn .7s both ease;
|
||||
animation: fadeIn .7s both ease;
|
||||
}
|
||||
|
||||
/* backSlide */
|
||||
.owl-backSlide-out {
|
||||
-webkit-animation: backSlideOut 1s both ease;
|
||||
-moz-animation: backSlideOut 1s both ease;
|
||||
animation: backSlideOut 1s both ease;
|
||||
}
|
||||
|
||||
.owl-backSlide-in {
|
||||
-webkit-animation: backSlideIn 1s both ease;
|
||||
-moz-animation: backSlideIn 1s both ease;
|
||||
animation: backSlideIn 1s both ease;
|
||||
}
|
||||
|
||||
/* goDown */
|
||||
.owl-goDown-out {
|
||||
-webkit-animation: scaleToFade .7s ease both;
|
||||
-moz-animation: scaleToFade .7s ease both;
|
||||
animation: scaleToFade .7s ease both;
|
||||
}
|
||||
|
||||
.owl-goDown-in {
|
||||
-webkit-animation: goDown .6s ease both;
|
||||
-moz-animation: goDown .6s ease both;
|
||||
animation: goDown .6s ease both;
|
||||
}
|
||||
|
||||
/* scaleUp */
|
||||
.owl-fadeUp-in {
|
||||
-webkit-animation: scaleUpFrom .5s ease both;
|
||||
-moz-animation: scaleUpFrom .5s ease both;
|
||||
animation: scaleUpFrom .5s ease both;
|
||||
}
|
||||
|
||||
.owl-fadeUp-out {
|
||||
-webkit-animation: scaleUpTo .5s ease both;
|
||||
-moz-animation: scaleUpTo .5s ease both;
|
||||
animation: scaleUpTo .5s ease both;
|
||||
}
|
||||
|
||||
/* Keyframes */
|
||||
/*empty*/
|
||||
@-webkit-keyframes empty {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes empty {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes empty {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fadeOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes backSlideOut {
|
||||
25% {
|
||||
opacity: .5;
|
||||
-webkit-transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
-webkit-transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: .5;
|
||||
-webkit-transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes backSlideOut {
|
||||
25% {
|
||||
opacity: .5;
|
||||
-moz-transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
-moz-transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: .5;
|
||||
-moz-transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes backSlideOut {
|
||||
25% {
|
||||
opacity: .5;
|
||||
transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: .5;
|
||||
transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes backSlideIn {
|
||||
0%, 25% {
|
||||
opacity: .5;
|
||||
-webkit-transform: translateZ(-500px) translateX(200%);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
-webkit-transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateZ(0) translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes backSlideIn {
|
||||
0%, 25% {
|
||||
opacity: .5;
|
||||
-moz-transform: translateZ(-500px) translateX(200%);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
-moz-transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateZ(0) translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes backSlideIn {
|
||||
0%, 25% {
|
||||
opacity: .5;
|
||||
transform: translateZ(-500px) translateX(200%);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateZ(0) translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scaleToFade {
|
||||
to {
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes scaleToFade {
|
||||
to {
|
||||
opacity: 0;
|
||||
-moz-transform: scale(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scaleToFade {
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: scale(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes goDown {
|
||||
from {
|
||||
-webkit-transform: translateY(-100%);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes goDown {
|
||||
from {
|
||||
-moz-transform: translateY(-100%);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes goDown {
|
||||
from {
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scaleUpFrom {
|
||||
from {
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes scaleUpFrom {
|
||||
from {
|
||||
opacity: 0;
|
||||
-moz-transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scaleUpFrom {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scaleUpTo {
|
||||
to {
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes scaleUpTo {
|
||||
to {
|
||||
opacity: 0;
|
||||
-moz-transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scaleUpTo {
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/*
|
||||
* Owl Carousel Owl Demo Theme
|
||||
* v1.24
|
||||
*/
|
||||
.owl-theme {
|
||||
/* Styling Next and Prev buttons */
|
||||
/* preloading images */
|
||||
}
|
||||
.owl-theme .owl-controls {
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
.owl-theme .owl-controls {
|
||||
/* Styling Pagination*/
|
||||
/* If PaginationNumbers is true */
|
||||
}
|
||||
.owl-theme .owl-controls .owl-buttons div {
|
||||
margin-top: 38px;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
line-height: 0;
|
||||
position: absolute;
|
||||
top: 40%;
|
||||
margin-top: -10px;
|
||||
font-size: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-buttons div:before {
|
||||
padding-left: 2px;
|
||||
color: #c0c0c0;
|
||||
font-family: FontAwesome;
|
||||
font-size: 20px;
|
||||
line-height: 22px;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-buttons div:hover:before {
|
||||
color: #333;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-next {
|
||||
right: 10px;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-next:before {
|
||||
content: "";
|
||||
}
|
||||
.owl-theme .owl-controls .owl-prev {
|
||||
left: 10px;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-prev:before {
|
||||
content: "";
|
||||
}
|
||||
.owl-theme .owl-controls .owl-pagination {
|
||||
display: none;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-page {
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
/*IE7 life-saver */
|
||||
}
|
||||
.owl-theme .owl-controls .owl-page span {
|
||||
display: block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
margin: 5px 7px;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
|
||||
opacity: 0;
|
||||
-webkit-border-radius: 20px;
|
||||
-moz-border-radius: 20px;
|
||||
-ms-border-radius: 20px;
|
||||
-o-border-radius: 20px;
|
||||
border-radius: 20px;
|
||||
background: #869791;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-page span.owl-numbers {
|
||||
height: auto;
|
||||
width: auto;
|
||||
color: #FFF;
|
||||
padding: 2px 10px;
|
||||
font-size: 12px;
|
||||
-webkit-border-radius: 30px;
|
||||
-moz-border-radius: 30px;
|
||||
-ms-border-radius: 30px;
|
||||
-o-border-radius: 30px;
|
||||
border-radius: 30px;
|
||||
}
|
||||
.owl-theme .owl-item.loading {
|
||||
min-height: 150px;
|
||||
background: url(AjaxLoader.gif) no-repeat center center;
|
||||
}
|
||||
@@ -0,0 +1,507 @@
|
||||
/*
|
||||
Uniform Theme: Uniform Default
|
||||
Version: 1.8
|
||||
By: Josh Pyles
|
||||
License: MIT License
|
||||
---
|
||||
For use with the Uniform plugin:
|
||||
http://uniformjs.com/
|
||||
|
||||
*/
|
||||
/* General settings */
|
||||
div.selector, div.selector span, div.checker span, div.radio span, div.uploader, div.uploader span.action, div.button, div.button span {
|
||||
background-image: url("../../../img/jquery/uniform/sprite.png");
|
||||
background-repeat: no-repeat;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
div.selector, div.checker, div.button, div.radio, div.uploader {
|
||||
vertical-align: middle;
|
||||
/* Keeping this as :focus to remove browser styles */
|
||||
}
|
||||
div.selector:focus, div.checker:focus, div.button:focus, div.radio:focus, div.uploader:focus {
|
||||
outline: 0;
|
||||
}
|
||||
div.selector, div.selector *, div.radio, div.radio *, div.checker, div.checker *, div.uploader, div.uploader *, div.button, div.button * {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.highContrastDetect {
|
||||
background: url("../../../img/jquery/uniform/bg-input.png") repeat-x 0 0;
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
}
|
||||
|
||||
/* Input & Textarea */
|
||||
input.uniform-input,
|
||||
select.uniform-multiselect,
|
||||
textarea.uniform {
|
||||
padding: 3px;
|
||||
background: white;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* Remove default webkit and possible mozilla .search styles.
|
||||
* Keeping this as :active to remove browser styles */
|
||||
div.checker input,
|
||||
input[type="search"],
|
||||
input[type="search"]:active {
|
||||
-moz-appearance: none;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/* Select */
|
||||
div.selector {
|
||||
background-position: 0 -54px;
|
||||
line-height: 27px;
|
||||
height: 27px;
|
||||
padding: 0 0 0 10px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
div.selector span {
|
||||
text-overflow: ellipsis;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
background-position: right 0;
|
||||
height: 27px;
|
||||
line-height: 27px;
|
||||
padding-right: 30px;
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
div.selector.fixedWidth {
|
||||
width: 190px;
|
||||
}
|
||||
div.selector.fixedWidth span {
|
||||
width: 150px;
|
||||
}
|
||||
div.selector select {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
-moz-opacity: 0;
|
||||
border: none;
|
||||
background: none;
|
||||
position: absolute;
|
||||
height: 27px;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
}
|
||||
div.selector.active span {
|
||||
background-position: right -27px;
|
||||
}
|
||||
div.selector.hover span, div.selector.focus span {
|
||||
background-position: right -27px;
|
||||
}
|
||||
div.selector.hover.active span, div.selector.focus.active span {
|
||||
background-position: right -27px;
|
||||
}
|
||||
div.selector.disabled span, div.selector.disabled.active span {
|
||||
background-position: right 0;
|
||||
}
|
||||
|
||||
/* Select1 */
|
||||
div.selector1 > div {
|
||||
background-position: 0 -135px;
|
||||
}
|
||||
div.selector1 > div span {
|
||||
background-position: right -81px;
|
||||
}
|
||||
div.selector1 > div.active span {
|
||||
background-position: right -108px;
|
||||
}
|
||||
div.selector1 > div.hover span, div.selector1 > div.focus span {
|
||||
background-position: right -108px;
|
||||
}
|
||||
div.selector1 > div.hover.active span, div.selector1 > div.focus.active span {
|
||||
background-position: right -108px;
|
||||
}
|
||||
div.selector1 > div.disabled, div.selector1 > div.disabled.active {
|
||||
background-position: 0 -135px;
|
||||
}
|
||||
div.selector1 > div.disabled span, div.selector1 > div.disabled.active span {
|
||||
background-position: right -81px;
|
||||
}
|
||||
|
||||
/* Select2 */
|
||||
div.selector2 > div {
|
||||
background-position: 0 -216px;
|
||||
}
|
||||
div.selector2 > div span {
|
||||
background-position: right -162px;
|
||||
}
|
||||
div.selector2 > div.active span {
|
||||
background-position: right -189px;
|
||||
}
|
||||
div.selector2 > div.hover span, div.selector2 > div.focus span {
|
||||
background-position: right -189px;
|
||||
}
|
||||
div.selector2 > div.hover.active span, div.selector2 > div.focus.active span {
|
||||
background-position: right -189px;
|
||||
}
|
||||
div.selector2 > div.disabled, div.selector2 > div.disabled.active {
|
||||
background-position: 0 -216px;
|
||||
}
|
||||
div.selector2 > div.disabled span, div.selector2 > div.disabled.active span {
|
||||
background-position: right -162px;
|
||||
}
|
||||
|
||||
/* Select3 */
|
||||
div.selector3 > div {
|
||||
background-position: 0 -351px;
|
||||
}
|
||||
div.selector3 > div span {
|
||||
background-position: right -297px;
|
||||
}
|
||||
div.selector3 > div.active span {
|
||||
background-position: right -324px;
|
||||
}
|
||||
div.selector3 > div.hover span, div.selector3 > div.focus span {
|
||||
background-position: right -324px;
|
||||
}
|
||||
div.selector3 > div.hover.active span, div.selector3 > div.focus.active span {
|
||||
background-position: right -324px;
|
||||
}
|
||||
div.selector3 > div.disabled, div.selector3 > div.disabled.active {
|
||||
background-position: 0 -351px;
|
||||
}
|
||||
div.selector3 > div.disabled span, div.selector3 > div.disabled.active span {
|
||||
background-position: right -297px;
|
||||
}
|
||||
|
||||
/* Checkbox */
|
||||
div.checker {
|
||||
position: relative;
|
||||
}
|
||||
div.checker, div.checker span, div.checker input {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
div.checker span {
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
text-align: center;
|
||||
background-position: 0 -257px;
|
||||
}
|
||||
div.checker span.checked {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
div.checker input {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
-moz-opacity: 0;
|
||||
border: none;
|
||||
background: none;
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
}
|
||||
div.checker.active span {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
div.checker.active span.checked {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
div.checker.hover span, div.checker.focus span {
|
||||
background-position: -30px -257px;
|
||||
}
|
||||
div.checker.hover span.checked, div.checker.focus span.checked {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
div.checker.hover.active span, div.checker.focus.active span {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
div.checker.hover.active span.checked, div.checker.focus.active span.checked {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
div.checker.disabled, div.checker.disabled.active {
|
||||
background-position: 0 -257px;
|
||||
}
|
||||
div.checker.disabled span.checked, div.checker.disabled.active span.checked {
|
||||
background-position: 0 -257px;
|
||||
}
|
||||
|
||||
/* Radio */
|
||||
div.radio {
|
||||
position: relative;
|
||||
display: inline;
|
||||
}
|
||||
div.radio, div.radio span, div.radio input {
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
}
|
||||
div.radio span {
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
text-align: center;
|
||||
background-position: 0 -243px;
|
||||
}
|
||||
div.radio span.checked {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
div.radio input {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
-moz-opacity: 0;
|
||||
border: none;
|
||||
background: none;
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
text-align: center;
|
||||
}
|
||||
div.radio.active span {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
div.radio.active span.checked {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
div.radio.hover span, div.radio.focus span {
|
||||
background-position: -13px -36px -243px;
|
||||
}
|
||||
div.radio.hover span.checked, div.radio.focus span.checked {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
div.radio.hover.active span, div.radio.focus.active span {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
div.radio.hover.active span.checked, div.radio.focus.active span.checked {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
div.radio.disabled span, div.radio.disabled.active span {
|
||||
background-position: 0 -243px;
|
||||
}
|
||||
div.radio.disabled span.checked, div.radio.disabled.active span.checked {
|
||||
background-position: 0 -243px;
|
||||
}
|
||||
|
||||
/* Uploader */
|
||||
div.uploader {
|
||||
background: none;
|
||||
height: 27px;
|
||||
width: 100%;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
div.uploader span.action {
|
||||
background-position: 0 -378px;
|
||||
height: 27px;
|
||||
line-height: 27px;
|
||||
width: 94px;
|
||||
text-align: center;
|
||||
float: left;
|
||||
display: inline;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
}
|
||||
div.uploader span.filename {
|
||||
text-overflow: ellipsis;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
float: left;
|
||||
cursor: default;
|
||||
height: 27px;
|
||||
margin: 0px 0 0px 0px;
|
||||
line-height: 27px;
|
||||
width: 172px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
div.uploader input {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
-moz-opacity: 0;
|
||||
border: none;
|
||||
background: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
float: right;
|
||||
cursor: default;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
div.button {
|
||||
background-position: 0 -634px;
|
||||
height: 30px;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
/* Keep buttons barely visible so they can get focus */
|
||||
}
|
||||
div.button a, div.button button, div.button input {
|
||||
opacity: 0.01;
|
||||
filter: alpha(opacity=1);
|
||||
-moz-opacity: 0.01;
|
||||
display: block;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
}
|
||||
div.button span {
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
line-height: 30px;
|
||||
text-align: center;
|
||||
background-position: right -514px;
|
||||
height: 30px;
|
||||
margin-left: 13px;
|
||||
padding: 0;
|
||||
}
|
||||
div.button.active {
|
||||
background-position: 0 -664px;
|
||||
}
|
||||
div.button.active span {
|
||||
background-position: right -544px;
|
||||
cursor: default;
|
||||
}
|
||||
div.button.hover, div.button.focus {
|
||||
background-position: 0 -694px;
|
||||
}
|
||||
div.button.hover span, div.button.focus span {
|
||||
background-position: right -574px;
|
||||
}
|
||||
div.button.disabled, div.button.disabled.active {
|
||||
background-position: 0 -724px;
|
||||
}
|
||||
div.button.disabled span, div.button.disabled.active span {
|
||||
background-position: right -604px;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* INPUT & TEXTAREA */
|
||||
/* ************************************************************************************************
|
||||
uniform
|
||||
************************************************************************************************ */
|
||||
input.uniform-input,
|
||||
select.uniform-multiselect,
|
||||
textarea.uniform {
|
||||
font-size: 13px;
|
||||
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||
font-weight: normal;
|
||||
line-height: 18px;
|
||||
color: #777;
|
||||
border: solid 1px #d6d4d4;
|
||||
}
|
||||
input.uniform-input.hover, input.uniform-input.focus,
|
||||
select.uniform-multiselect.hover,
|
||||
select.uniform-multiselect.focus,
|
||||
textarea.uniform.hover,
|
||||
textarea.uniform.focus {
|
||||
-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
|
||||
-moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
|
||||
border-color: #cbcaca;
|
||||
}
|
||||
|
||||
/* PRESENTATION */
|
||||
/* Buttons */
|
||||
div.button span {
|
||||
font-weight: bold;
|
||||
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
div.button.hover span, div.button.focus span {
|
||||
color: #555;
|
||||
}
|
||||
div.button.disabled span, div.button.disabled.active span {
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
/* Select */
|
||||
#compare_shipping .form-group label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.selector {
|
||||
font-size: 12px;
|
||||
}
|
||||
div.selector span {
|
||||
color: #666;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
}
|
||||
div.selector select {
|
||||
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
}
|
||||
div.selector.disabled span, div.selector.disabled.active span {
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
.checker span input {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.radio-inline, .checkbox-inline {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* Checker */
|
||||
div.checker {
|
||||
cursor: pointer;
|
||||
margin-right: 5px;
|
||||
}
|
||||
div.checker span {
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
#layered_form div.checker {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/* Radio */
|
||||
div.radio {
|
||||
margin-right: 3px;
|
||||
}
|
||||
div.radio span {
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* Uploader */
|
||||
div.uploader span.action {
|
||||
text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px;
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
}
|
||||
div.uploader span.filename {
|
||||
color: #777;
|
||||
border: solid 1px #d6d4d4;
|
||||
font-size: 13px;
|
||||
background: #fbfbfb;
|
||||
margin-right: 2px;
|
||||
}
|
||||
div.uploader.disabled span.action, div.uploader.disabled.active span.action {
|
||||
color: #aaa;
|
||||
}
|
||||
div.uploader.disabled span.filename, div.uploader.disabled.active span.filename {
|
||||
border-color: #ddd;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
input.uniform-input, input.uniform-input:focus {
|
||||
background-color: #fff;
|
||||
}
|
||||
Reference in New Issue
Block a user