forked from verdnatura/hedera-web
97 lines
1.0 KiB
CSS
97 lines
1.0 KiB
CSS
|
#start-order,
|
||
|
#debt
|
||
|
{
|
||
|
float: right;
|
||
|
}
|
||
|
#orders .info
|
||
|
{
|
||
|
margin: 15px;
|
||
|
padding: 5px;
|
||
|
background-color: #FFC;
|
||
|
border: 1px solid #CC9;
|
||
|
border-radius: 2px;
|
||
|
}
|
||
|
#orders .info > img
|
||
|
{
|
||
|
vertical-align: middle;
|
||
|
margin: 8px;
|
||
|
}
|
||
|
#orders td.hide
|
||
|
{
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
/* Balance */
|
||
|
|
||
|
#debt
|
||
|
{
|
||
|
display: inline;
|
||
|
}
|
||
|
#debt > img
|
||
|
{
|
||
|
padding-left: 4px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
#pay-button
|
||
|
{
|
||
|
padding: 7px;
|
||
|
margin-left: 15px;
|
||
|
}
|
||
|
#debt-popup
|
||
|
{
|
||
|
display: none;
|
||
|
background-color: white;
|
||
|
border: 1px solid #999;
|
||
|
border-radius: 2px;
|
||
|
padding: 15px;
|
||
|
width: 300px;
|
||
|
}
|
||
|
#debt-grid
|
||
|
{
|
||
|
width: 100%;
|
||
|
margin: auto;
|
||
|
}
|
||
|
.positive-debt
|
||
|
{
|
||
|
color: red;
|
||
|
}
|
||
|
.negative-debt
|
||
|
{
|
||
|
color: green;
|
||
|
}
|
||
|
|
||
|
/* TPV */
|
||
|
|
||
|
div.tpv
|
||
|
{
|
||
|
position: absolute;
|
||
|
margin-left: -375px;
|
||
|
top: 10px;
|
||
|
left: 50%;
|
||
|
height: 570px;
|
||
|
width: 750px;
|
||
|
border: 1px solid #999;
|
||
|
border-radius: 2px;
|
||
|
background-color: white;
|
||
|
text-align: center;
|
||
|
z-index: 2;
|
||
|
}
|
||
|
|
||
|
div.tpv button
|
||
|
{
|
||
|
position: absolute;
|
||
|
right: 8px;
|
||
|
bottom: 8px;
|
||
|
z-index: 4;
|
||
|
}
|
||
|
|
||
|
div.tpv iframe
|
||
|
{
|
||
|
width: 100%;
|
||
|
height: 570px;
|
||
|
bottom: 0px;
|
||
|
overflow: auto;
|
||
|
border-width: 0px;
|
||
|
}
|
||
|
|