aboutsummaryrefslogtreecommitdiff
path: root/src/style/wallet.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/style/wallet.css')
-rw-r--r--src/style/wallet.css81
1 files changed, 80 insertions, 1 deletions
diff --git a/src/style/wallet.css b/src/style/wallet.css
index e5a8f91b3..7fe5e37c8 100644
--- a/src/style/wallet.css
+++ b/src/style/wallet.css
@@ -1,7 +1,9 @@
#main {
border: solid 1px black;
border-radius: 10px;
- margin: auto;
+ margin-left: auto;
+ margin-right: auto;
+ margin-top: 2em;
max-width: 50%;
padding: 2em;
}
@@ -137,3 +139,80 @@ button.linky {
table, th, td {
border: 1px solid black;
}
+
+
+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;
+}
+
+
+button.accept:disabled {
+ background-color: #dedbe8;
+ border: 1px solid white;
+ border-radius: 5px;
+ margin: 1em 0;
+ padding: 0.5em;
+ font-weight: bold;
+ color: #2C2C2C;
+}
+
+input.url {
+ width: 25em;
+}
+
+table {
+ border-collapse: collapse;
+}
+
+td {
+ border-left: 1px solid black;
+ border-right: 1px solid black;
+ text-align: center;
+ padding: 0.3em;
+}
+
+span.spacer {
+ padding-left: 0.5em;
+ padding-right: 0.5em;
+}
+
+.button-success,
+.button-destructive,
+.button-warning,
+.button-secondary {
+ color: white;
+ border-radius: 4px;
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
+}
+
+.button-success {
+ background: rgb(28, 184, 65);
+}
+
+.button-destructive {
+ background: rgb(202, 60, 60);
+}
+
+.button-warning {
+ background: rgb(223, 117, 20);
+}
+
+.button-secondary {
+ background: rgb(66, 184, 221);
+}