aboutsummaryrefslogtreecommitdiff
path: root/extension/style/wallet.css
blob: 9f7a7b525188f86bb98803049a1b3b4c1cd7f0fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
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;
}

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;
}

/* 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}
 }