50 lines
1.0 KiB
CSS
50 lines
1.0 KiB
CSS
/* ------------------------------------------------------------
|
|
* Name : admin.css
|
|
* Desc : Admin StyleSheet
|
|
* Created : 2016/9/11 Tri-aBility by Junheum,Choi
|
|
* Updated :
|
|
------------------------------------------------------------ */
|
|
div#order {
|
|
position:relative;
|
|
margin:0px;
|
|
padding:0px;
|
|
/* border:1px solid red; */
|
|
}
|
|
div#order div.orderbox {
|
|
position:fixed;
|
|
width:200px;
|
|
padding:5px;
|
|
border:1px solid gray;
|
|
}
|
|
div#order div.orderbox div.title{
|
|
font-size:18px;
|
|
font-weight: 600;
|
|
border-bottom:2px solid gray;
|
|
}
|
|
|
|
div#order div.orderbox div.item{
|
|
padding-bottom:5px;
|
|
/* border:1px solid red; */
|
|
}
|
|
div#order div.orderbox div.item span.label{
|
|
color: gray;
|
|
}
|
|
div#order div.orderbox div.item span.value{
|
|
float:right;
|
|
}
|
|
div#order div.orderbox div.total{
|
|
padding-top:10px;
|
|
border-top:2px solid gray;
|
|
}
|
|
div#order div.orderbox div.total span.label{
|
|
color: gray;
|
|
}
|
|
div#order div.orderbox div.total span.value{
|
|
float:right;
|
|
font-size:18px;
|
|
font-weight: 800;
|
|
}
|
|
div#order div.orderbox div.submit{
|
|
padding-top:10px;
|
|
text-align:center;
|
|
} |