aboutsummaryrefslogtreecommitdiff
path: root/style/wallet.css
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-13 23:30:18 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-13 23:31:17 +0100
commitf3fb8be7db6de87dae40d41bd5597a735c800ca1 (patch)
tree1a061db04de8f5bb5a6b697fa56a9948f67fac2f /style/wallet.css
parent200d83c3886149ebb3f018530302079e12a81f6b (diff)
downloadwallet-core-f3fb8be7db6de87dae40d41bd5597a735c800ca1.tar.xz
restructuring
Diffstat (limited to 'style/wallet.css')
-rw-r--r--style/wallet.css139
1 files changed, 0 insertions, 139 deletions
diff --git a/style/wallet.css b/style/wallet.css
deleted file mode 100644
index 4609a1f96..000000000
--- a/style/wallet.css
+++ /dev/null
@@ -1,139 +0,0 @@
-#main {
- border: solid 1px black;
- border-radius: 10px;
- margin: auto;
- max-width: 50%;
- padding: 2em;
-}
-
-header {
- width: 100%;
- height: 100px;
- margin: 0;
- padding: 0;
- border-bottom: 1px solid black;
-}
-
-header h1 {
- font-size: 200%;
- margin: 0;
- padding: 0 0 0 120px;
- position: relative;
- top: 50%;
- transform: translateY(-50%);
-}
-
-header #logo {
- float: left;
- width: 100px;
- height: 100px;
- padding: 0;
- margin: 0;
- text-align: center;
- border-right: 1px solid black;
- background-image: url(../img/logo.png);
- background-size: 100px;
-}
-
-aside {
- width: 100px;
- float: left;
-}
-
-section#main {
- margin: auto;
- padding: 20px;
- border-left: 1px solid black;
- height: 100%;
- max-width: 50%;
-}
-
-section#main h1:first-child {
- margin-top: 0;
-}
-
-h1 {
- font-size: 160%;
-}
-
-h2 {
- font-size: 140%;
-}
-
-h3 {
- font-size: 120%;
-}
-
-h4, h5, h6 {
- font-size: 100%;
-}
-
-.form-row {
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-label {
- padding-right: 1em;
-}
-
-label::after {
- content: ":";
-}
-
-input.url {
- width: 25em;
-}
-
-.formish {
-}
-
-.json-key {
- color: brown;
-}
-.json-value {
- color: navy;
- }
-.json-string {
- color: olive;
-}
-
-button {
- font-size: 120%;
- padding: 0.5em;
-}
-
-button.confirm-pay {
- float: right;
-}
-
-/* We use fading to hide slower DOM updates */
-.fade {
- -webkit-animation: fade 0.7s;
- animation: fade 0.7s;
- opacity: 1;
-}
-
-@-webkit-keyframes fade {
- from {opacity: 0}
- to {opacity: 1}
-}
-@keyframes fade {
- from {opacity: 0}
- to {opacity: 1}
- }
-
-button.linky {
- background:none!important;
- border:none;
- padding:0!important;
-
- font-family:arial,sans-serif;
- color:#069;
- text-decoration:underline;
- cursor:pointer;
-}
-
-table, th, td {
- border: 1px solid black;
-}