aboutsummaryrefslogtreecommitdiff
path: root/extension/style
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2015-12-20 20:06:05 +0100
committerFlorian Dold <florian.dold@gmail.com>2015-12-20 20:06:05 +0100
commit8e80bbbbb8489532e1f2a5c9b632e5ead4a6ec68 (patch)
tree2756dced35749f38ef81089aaabdf141f524ae53 /extension/style
parent4bba46b53eb93de669b91c3078cd04ac13a0647c (diff)
parentac74006f679cdf9209b500625abdd05c5dfa69fa (diff)
Merge branch 'master' of ssh://taler.net/var/git/wallet
Diffstat (limited to 'extension/style')
-rw-r--r--extension/style/wallet.css74
1 files changed, 74 insertions, 0 deletions
diff --git a/extension/style/wallet.css b/extension/style/wallet.css
index 487cdd407..01b9cd96f 100644
--- a/extension/style/wallet.css
+++ b/extension/style/wallet.css
@@ -1,3 +1,72 @@
+body {
+ background-color: white;
+ margin: 0;
+ padding: 0;
+ font-family: Verdana, sans;
+}
+
+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: 0 0 0 100px;
+ padding: 20px;
+ border-left: 1px solid black;
+ height: 100%;
+ max-width: 40em;
+}
+
+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;
@@ -27,3 +96,8 @@ input.url {
.json-string {
color: olive;
}
+
+button {
+ font-size: 120%;
+ padding: 0.5em;
+}