bitcoin-atm
bitcoin atm for pyc inc.
git clone https://9o.is/git/bitcoin-atm.git
receipt.less
(1264B)
1 #receipt-slot {
2 width: @receipt-holder-width !important;
3 height: 5px;
4 background-color: black;
5 margin: 10px !important;
6 border-radius: 5px;
7 position: relative;
8 overflow: visible !important;
9 }
10
11 #receipt-holder {
12 position: absolute;
13 overflow: hidden;
14 height: 0;
15 top: 3px;
16 left: 0;
17 right: 0;
18 -moz-transition: height 4.0s linear;
19 transition: height 4.0s linear;
20 }
21
22 #receipt {
23 position: absolute;
24 width: @receipt-holder-width - 12px !important;
25 left: 5px;
26 bottom: 0;
27 height: @receipt-height;
28 background-color: #FFF;
29 border:1px solid #ccc;
30 box-shadow:2px 2px 2px rgba(0,0,0,0.1);
31 border-top:0;
32 padding: 30px;
33
34 table {
35 margin-top: 20px !important;
36
37 tr {
38 td {
39 width: @receipt-holder-width - 12px !important;
40 padding-top: 13px !important;
41 }
42
43 td:first-child {
44 .extra-small();
45 text-align: right !important;
46 padding-right: 5px !important;
47 }
48
49 td:nth-child(2) {
50 .xx-small();
51 text-align: left !important;
52 padding-left: 20px !important;
53 }
54 }
55 }
56 }
57
58 #receipt-holder.print {
59 height: @receipt-height + 1;
60 }