48 lines
1003 B
CSS
48 lines
1003 B
CSS
/* ------------------------------------------------------------
|
|
* Name : admin.css
|
|
* Desc : Admin StyleSheet
|
|
* Created : 2016/9/11 Tri-aBility by Junheum,Choi
|
|
* Updated :
|
|
------------------------------------------------------------ */
|
|
div#order {
|
|
position:relative;
|
|
}
|
|
div#order div.orderbox {
|
|
position:fixed;
|
|
width:200px;
|
|
height:220px;
|
|
padding:10px;
|
|
border:1px solid gray;
|
|
}
|
|
div#order div.orderbox div.title{
|
|
font-size:18px;
|
|
font-weight: 500;
|
|
padding-bottom:10px;
|
|
border-bottom:2px solid gray;
|
|
}
|
|
|
|
div#order div.orderbox div.item{
|
|
padding-bottom:5px;
|
|
}
|
|
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{
|
|
text-align:center;
|
|
padding-top:25px;
|
|
} |