2016-03-01 19:46:20 +01:00
|
|
|
/**
|
|
|
|
* @author Gabor X. Toth
|
|
|
|
* @author Marcello Stanisci
|
|
|
|
* @author Florian Dold
|
|
|
|
*/
|
|
|
|
|
2015-12-03 20:07:03 +01:00
|
|
|
body {
|
2020-03-30 12:39:32 +02:00
|
|
|
min-height: 20em;
|
2021-05-07 23:10:27 +02:00
|
|
|
/* width: 30em; */
|
2020-03-30 12:39:32 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
max-height: 800px;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: #f8faf7;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2015-12-03 20:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav {
|
2020-03-30 12:39:32 +02:00
|
|
|
background-color: #033;
|
|
|
|
padding: 0.5em 0;
|
2015-12-03 20:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav a {
|
2020-03-30 12:39:32 +02:00
|
|
|
color: #f8faf7;
|
|
|
|
padding: 0.7em 1.4em;
|
|
|
|
text-decoration: none;
|
2015-12-03 20:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav a.active {
|
2020-03-30 12:39:32 +02:00
|
|
|
background-color: #f8faf7;
|
|
|
|
color: #000;
|
|
|
|
font-weight: bold;
|
2015-12-03 20:07:03 +01:00
|
|
|
}
|
|
|
|
|
2016-01-24 19:57:09 +01:00
|
|
|
.container {
|
2020-03-30 12:39:32 +02:00
|
|
|
overflow-y: scroll;
|
|
|
|
max-height: 400px;
|
2016-01-24 19:57:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.abbrev {
|
2020-03-30 12:39:32 +02:00
|
|
|
text-decoration-style: dotted;
|
2016-01-24 19:57:09 +01:00
|
|
|
}
|
|
|
|
|
2015-12-03 20:07:03 +01:00
|
|
|
#content {
|
2020-03-30 12:39:32 +02:00
|
|
|
padding: 1em;
|
2015-12-03 20:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wallet-table .amount {
|
2020-03-30 12:39:32 +02:00
|
|
|
text-align: right;
|
2015-12-03 20:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
2020-03-30 12:39:32 +02:00
|
|
|
display: none;
|
2015-12-03 20:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#transactions-table th,
|
|
|
|
#transactions-table td {
|
2020-03-30 12:39:32 +02:00
|
|
|
padding: 0.2em 0.5em;
|
2015-12-03 20:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#reserve-create table {
|
2020-03-30 12:39:32 +02:00
|
|
|
width: 100%;
|
2015-12-03 20:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#reserve-create table td.label {
|
2020-03-30 12:39:32 +02:00
|
|
|
width: 5em;
|
2015-12-03 20:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#reserve-create table .input input[type="text"] {
|
2020-03-30 12:39:32 +02:00
|
|
|
width: 100%;
|
2015-12-16 08:01:43 +01:00
|
|
|
}
|
2016-09-29 01:40:29 +02:00
|
|
|
|
|
|
|
.historyItem {
|
2020-03-30 12:39:32 +02:00
|
|
|
min-width: 380px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
border-bottom: 1px solid #d9dbd8;
|
|
|
|
padding: 0.5em;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyItem .amount {
|
|
|
|
font-size: 110%;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyDate,
|
|
|
|
.historyTitle,
|
|
|
|
.historyText,
|
|
|
|
.historySmall {
|
|
|
|
margin: 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyDate {
|
|
|
|
font-size: 90%;
|
|
|
|
color: slategray;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyLeft {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyContent {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyTitle {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyText {
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historySmall {
|
|
|
|
font-size: 70%;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyAmount {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyAmount .primary {
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyAmount .secondary {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyAmount .positive {
|
|
|
|
color: #088;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyAmount .positive:before {
|
|
|
|
content: "+";
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyAmount .negative {
|
|
|
|
color: #800;
|
|
|
|
}
|
|
|
|
|
|
|
|
.historyAmount .negative:before {
|
|
|
|
color: #800;
|
|
|
|
content: "-";
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
margin: 0 10px;
|
|
|
|
text-align: center;
|
|
|
|
width: 35px;
|
|
|
|
font-size: 20px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: #ccc;
|
|
|
|
color: #fff;
|
|
|
|
padding-top: 4px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.option {
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-align: right;
|
|
|
|
padding: 0.4em;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"],
|
|
|
|
input[type="radio"] {
|
|
|
|
vertical-align: middle;
|
|
|
|
position: relative;
|
|
|
|
bottom: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="radio"] {
|
|
|
|
bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.balance {
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 2em;
|
|
|
|
}
|
2021-05-07 23:10:27 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
pay html
|
|
|
|
*/
|
|
|
|
button.accept {
|
|
|
|
background-color: #5757d2;
|
|
|
|
border: 1px solid black;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
button.linky {
|
|
|
|
background: none !important;
|
|
|
|
border: none;
|
|
|
|
padding: 0 !important;
|
|
|
|
|
|
|
|
font-family: arial, sans-serif;
|
|
|
|
color: #069;
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.url {
|
|
|
|
width: 25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.accept:disabled {
|
|
|
|
background-color: #dedbe8;
|
|
|
|
border: 1px solid white;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #2c2c2c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.errorbox {
|
|
|
|
border: 1px solid;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 1em;
|
|
|
|
padding: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
background: #ff8a8a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.okaybox {
|
|
|
|
border: 1px solid;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 1em;
|
|
|
|
padding: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
background: #00fa9a;
|
|
|
|
}
|