195 lines
3.0 KiB
CSS
195 lines
3.0 KiB
CSS
@charset "utf-8";
|
|
/* CSS Document */
|
|
|
|
#dimension {
|
|
white-space: pre-wrap;
|
|
/* CSS3 */
|
|
white-space: -moz-pre-wrap;
|
|
/* Firefox */
|
|
white-space: -pre-wrap;
|
|
/* Opera <7 */
|
|
white-space: -o-pre-wrap;
|
|
/* Opera 7 */
|
|
word-wrap: break-word;
|
|
/* IE */
|
|
padding-bottom: 10px;
|
|
clear: both;
|
|
}
|
|
|
|
#squaremeter legend{
|
|
font-size:12px;
|
|
}
|
|
|
|
.labels, #dimension {
|
|
font-size:11px;
|
|
}
|
|
|
|
.squaremeter_disablecart {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.squaremeter_disablecart_wrapper {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
#fields p, .fields p {
|
|
float: left;
|
|
}
|
|
|
|
#multiplicationsign {
|
|
padding-top: 12px;
|
|
}
|
|
|
|
#width input, #height input, #depth input, #quantitym input, #directinput_p input
|
|
/* #quantity_wanted_p input */
|
|
{
|
|
width: 53px !important;
|
|
height: 42px !important;
|
|
/* border: 1px solid #CDCDCD !important; */
|
|
text-align: right !important;
|
|
font-size: 13px !important;
|
|
padding: 5px;
|
|
outline: 0;
|
|
line-height: 27px !important;
|
|
}
|
|
|
|
#width select, #height select, #depth select, #weight select, #direct_input_p select, #directinput_p select {
|
|
width: 86.2px !important;
|
|
height: 49.19px !important;
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border: 1px solid #d3d3d3;
|
|
padding: .222em 0;
|
|
/* margin: .2em 0; */
|
|
font-family: Verdana,Arial,sans-serif;
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
#totalpriceinfo {
|
|
padding-top: 10px;
|
|
color: rgb(105, 111, 94);
|
|
font-weight: bold;
|
|
font-size: 21px;
|
|
}
|
|
|
|
#preview {
|
|
position: absolute;
|
|
border: 1px solid #ccc;
|
|
background: #333;
|
|
padding: 5px;
|
|
display: none;
|
|
color: #fff;
|
|
}
|
|
|
|
.hint {
|
|
width: 18px;
|
|
margin-top: -5px;
|
|
}
|
|
|
|
#preview>img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
#preview {
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
|
|
/* The switch - the box around the slider */
|
|
|
|
#switchx {
|
|
font-size: 12px !important;
|
|
}
|
|
|
|
.switchx {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 30px;
|
|
height: 17px;
|
|
}
|
|
|
|
/* Hide default HTML checkbox */
|
|
|
|
.switchx input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
/* The slider */
|
|
|
|
.sliderx {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: #ccc;
|
|
-webkit-transition: .4s;
|
|
transition: .4s;
|
|
}
|
|
|
|
.sliderx:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 13px;
|
|
width: 13px;
|
|
left: 2px;
|
|
bottom: 2px;
|
|
background-color: white;
|
|
-webkit-transition: .4s;
|
|
transition: .4s;
|
|
}
|
|
|
|
input:checked+.sliderx {
|
|
background-color: #2196F3;
|
|
}
|
|
|
|
input:focus+.sliderx {
|
|
box-shadow: 0 0 1px #2196F3;
|
|
}
|
|
|
|
input:checked+.sliderx:before {
|
|
-webkit-transform: translateX(13px);
|
|
-ms-transform: translateX(13px);
|
|
transform: translateX(13px);
|
|
}
|
|
|
|
/* Rounded sliders */
|
|
|
|
.sliderx.roundx {
|
|
border-radius: 34px;
|
|
}
|
|
|
|
.sliderx.roundx:before {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
div.checker, div.checker span, div.checker input {
|
|
width:0;
|
|
}
|
|
|
|
.extrafee, .waste {
|
|
border:1px solid #ccc;
|
|
padding:10px;
|
|
/* margin:0 0 10px; */
|
|
display:block;
|
|
border-radius: 5px;
|
|
text-align: left;
|
|
}
|
|
|
|
.extrafee:hover, .waste:hover {
|
|
background:#eee;
|
|
cursor:pointer;
|
|
}
|
|
|
|
#extrafee, #waste {
|
|
width: 20px;
|
|
height: 20px;
|
|
vertical-align: bottom;
|
|
margin-right: 5px;
|
|
} |