2021-08-07 21:06:24 +02:00
|
|
|
* {
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2018-07-11 15:32:07 +02:00
|
|
|
.thumblist-item {
|
|
|
|
display: inline-block;
|
2020-02-03 20:44:58 +01:00
|
|
|
margin: 5px;
|
|
|
|
padding: 5px;
|
2018-07-11 15:32:07 +02:00
|
|
|
background: #f0f0f0;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumblist-item a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumblist-item .imgcontainer {
|
2020-02-03 20:44:58 +01:00
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
2018-07-11 15:32:07 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumblist-item .imgcontainer img {
|
2020-02-03 20:44:58 +01:00
|
|
|
max-width: 100px;
|
|
|
|
max-height: 100px;
|
2018-07-11 15:32:07 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumblist-title {
|
|
|
|
display: block;
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
2018-10-01 21:08:37 +02:00
|
|
|
|
2020-02-03 20:44:58 +01:00
|
|
|
.thumblist-stock {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
background: #f0f0f0;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2018-10-01 21:08:37 +02:00
|
|
|
@media print {
|
|
|
|
footer {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
footer li {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 40px;
|
|
|
|
}
|
2021-04-07 02:41:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#depositlist {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
#deposit-wrapper {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background: rgba(0,0,0,.75);
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
#deposit-input {
|
|
|
|
display: grid;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: 320px;
|
|
|
|
height: 540px;
|
2022-07-16 19:15:25 +02:00
|
|
|
grid-template-columns: 100px 100px 100px 200px;
|
2021-04-07 02:41:53 +02:00
|
|
|
grid-template-rows: 100px 100px 100px 100px 100px;
|
|
|
|
column-gap: 10px;
|
|
|
|
row-gap: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#deposit-wrapper.show {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fakelink {
|
|
|
|
cursor: pointer;
|
|
|
|
color: blue;
|
|
|
|
}
|
|
|
|
|
2021-04-07 09:36:18 +02:00
|
|
|
#deposit-output {
|
2021-04-07 02:41:53 +02:00
|
|
|
grid-column-start: 1;
|
|
|
|
grid-column-end: 4;
|
|
|
|
grid-row: 1;
|
2021-04-07 09:36:18 +02:00
|
|
|
background: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#deposit-title {
|
|
|
|
display: block;
|
|
|
|
font-family: sans-serif;
|
|
|
|
padding: 0 10px;
|
|
|
|
line-height: 30px;
|
|
|
|
font-size: 25px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#deposit-amount {
|
|
|
|
display: block;
|
|
|
|
text-align: right;
|
2021-04-07 02:41:53 +02:00
|
|
|
font-size: 50px;
|
2021-04-07 09:36:18 +02:00
|
|
|
line-height: 70px;
|
|
|
|
height: 70px;
|
|
|
|
padding: 0 10px;
|
2021-04-07 02:41:53 +02:00
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
.numpad {
|
|
|
|
background: #f0f0f0;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 50px;
|
|
|
|
font-family: sans-serif;
|
|
|
|
line-height: 100px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-1 {
|
|
|
|
grid-column: 1;
|
|
|
|
grid-row: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-2 {
|
|
|
|
grid-column: 2;
|
|
|
|
grid-row: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-3 {
|
|
|
|
grid-column: 3;
|
|
|
|
grid-row: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-4 {
|
|
|
|
grid-column: 1;
|
|
|
|
grid-row: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-5 {
|
|
|
|
grid-column: 2;
|
|
|
|
grid-row: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-6 {
|
|
|
|
grid-column: 3;
|
|
|
|
grid-row: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-7 {
|
|
|
|
grid-column: 1;
|
|
|
|
grid-row: 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-8 {
|
|
|
|
grid-column: 2;
|
|
|
|
grid-row: 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-9 {
|
|
|
|
grid-column: 3;
|
|
|
|
grid-row: 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-del {
|
|
|
|
grid-column: 1;
|
|
|
|
grid-row: 5;
|
|
|
|
background: #f06060;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-0 {
|
|
|
|
grid-column: 2;
|
|
|
|
grid-row: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
#numpad-ok {
|
|
|
|
grid-column: 3;
|
|
|
|
grid-row: 5;
|
|
|
|
background: #60f060;
|
|
|
|
}
|
2022-07-16 19:15:25 +02:00
|
|
|
|
|
|
|
#numpad-ok.disabled {
|
|
|
|
background: #606060;
|
|
|
|
}
|
|
|
|
|
|
|
|
#transfer-userlist {
|
2022-07-18 23:49:13 +02:00
|
|
|
display: none;
|
|
|
|
flex-direction: column;
|
2022-07-16 19:15:25 +02:00
|
|
|
column-gap: 10px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2022-07-18 23:49:13 +02:00
|
|
|
grid-column: 4;
|
|
|
|
grid-row-start: 1;
|
|
|
|
grid-row-end: 6;
|
2022-07-16 19:15:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#transfer-userlist.show {
|
2022-07-18 23:49:13 +02:00
|
|
|
display: flex;
|
2022-07-16 19:15:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#transfer-userlist-list {
|
|
|
|
margin: 10px 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-y: hidden;
|
2022-07-18 23:49:13 +02:00
|
|
|
flex-grow: 1;
|
2022-07-16 19:15:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#transfer-userlist-list > li {
|
|
|
|
display: block;
|
|
|
|
background: #f0f0f0;
|
|
|
|
padding: 15px 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
list-style-type: none;
|
|
|
|
font-family: sans-serif;
|
|
|
|
line-height: 20px;
|
|
|
|
font-size: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#transfer-userlist > #scroll-up, #transfer-userlist > #scroll-down {
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 25px;
|
|
|
|
text-align: center;
|
|
|
|
background: #f0f0f0;
|
|
|
|
padding: 20px;
|
|
|
|
font-family: sans-serif;
|
|
|
|
line-height: 25px;
|
|
|
|
font-size: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#transfer-userlist-list > li.active {
|
|
|
|
background: #60f060;
|
|
|
|
}
|