aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/static/style.css
blob: e4da17680a2f2590133691917501b5c7cf4d5cc2 (plain) (blame)
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
@charset "UTF-8";

body {
  font-family: 'Fira Mono', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  background-color: rgb(246, 248, 251);
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

a:focus {
  text-decoration: none;
  color: inherit;
}

i.cc {
  font-size: 1.5em;
}

#logo {
  text-align: center;
  display: inline-block;
  color: white;
  background-color: rgb(20, 20, 20);
  border-radius: 4px;
  font-weight: bold;
  padding: 10px 10px 10px 10px;
  vertical-align: middle;
}

#header {
  margin-top: 20px;
  margin-bottom: 30px;
}

.header-menu-section {
  margin-right: 10px;
}

h1 {
  font-size: 1.5em;
  margin-bottom: 5px;
  margin-top: 5px;
}

.performance-up {
  color: green;
}

.performance-down {
  color: red;
}

.sign-in .form-control {
  margin-bottom: 20px;
  border-radius: 2px;
  border: none;
  background-color: white;
}

.config-status {
  margin-bottom: 10px;
}

.config-status .icon-cancel-circled {}

.config-status .icon-ok-circled {}

.config-status i {
  font-size: 1.2em;
}

.sign-in .submit {
  background-color: rgb(20, 20, 20);
  color: white;
}

.api-credentials-form .form-control {
  margin-bottom: 20px;
  border-radius: 2px;
  border: none;
  background-color: white;
}

.api-credentials-form .submit {
  background-color: rgb(20, 20, 20);
  color: white;
}

.otp-enroll .form-control {
  margin-bottom: 20px;
  border-radius: 2px;
  border: none;
  background-color: white;
}

.otp-enroll .submit {
  background-color: rgb(20, 20, 20);
  color: white;
}
.form-message {
  background-color: rgba(255, 6, 6, .33);
  border-radius: 2px;
  line-height: 50px;
}

.form-message.message-ok {
  background-color: rgba(33, 255, 72, .33);
}

#main {
  padding-top: 100px;
}

.currency-logo {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  
  height: 24px;
  width: 24px;
}

.balance > .btcValue {
  font-size: 1.2em;
}

.balance > .variation {
  font-size: 1.2em;
}

.balance > .row {
  margin-bottom: 10px;
}

.assets > .row {
  margin-bottom: 10px;
}

.balances > div {
  margin-bottom: 5px;
}

.box {
  position: relative;
  background-color: rgb(250, 250, 250);
  box-shadow: 0 2px 6px 2px rgba(0,0,0,.05);
  border-radius: 4px;
  margin-bottom: 10px;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@font-face {
  font-family: 'fontello';
  src: url('fonts/fontello.eot?12278570');
  src: url('fonts/fontello.eot?12278570#iefix') format('embedded-opentype'),
       url('fonts/fontello.woff2?12278570') format('woff2'),
       url('fonts/fontello.woff?12278570') format('woff'),
       url('fonts/fontello.ttf?12278570') format('truetype'),
       url('fonts/fontello.svg?12278570#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}