This repository has been archived by the owner on Sep 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
style.css
214 lines (200 loc) · 3.86 KB
/
style.css
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
212
213
214
/* These are some styles taken from the stellar.org website */
/* These styles are just meant as a light styling and is in no way a comprehensive styling */
*, *:before, *:after {
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
body,
button,
input,
select,
textarea {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 16px;
}
td {
padding: .5em;
}
section.search-bar {
max-width: 980px;
margin-left: auto;
margin-right: auto;
padding: 1.25em 0;
}
section.search-bar:after {
content: "";
display: table;
clear: both;
}
section.search-bar input {
margin-right: 0.625em;
}
section.search-bar input[type="text"] {
max-width: 470px;
width: 100%;
}
section.explorer-row {
max-width: 980px;
margin-left: auto;
margin-right: auto;
padding-top: 2.7em;
}
section.explorer-row:after {
content: "";
display: table;
clear: both;
}
section.explorer-row table {
margin-bottom: 2.68em;
}
section.main-title {
max-width: 980px;
margin-left: auto;
margin-right: auto;
margin-bottom: 1em;
margin-top: 2.25em;
}
section.main-title:after {
content: "";
display: table;
clear: both;
}
section.main-title h2 {
color: #9b9b9b;
font-weight: 300;
margin-bottom: 0;
}
section.main-title h2 strong {
color: #5b6a72;
font-weight: 300;
}
section.column-title {
float: left;
display: block;
margin-right: 2.35765%;
width: 31.76157%;
}
section.column-title:last-child {
margin-right: 0;
}
section.column-content {
float: left;
display: block;
margin-right: 2.35765%;
width: 65.88078%;
margin-right: 0;
}
section.balance-currency {
float: left;
display: block;
margin-right: 2.35765%;
width: 48.82117%;
margin-right: 0;
padding: 0 1em;
margin-bottom: 3em;
font-weight: 700;
}
section.balance-currency:last-child {
margin-right: 0;
}
section.balance-currency dt {
margin-bottom: 0;
line-height: 1;
text-align: center;
}
section.balance-currency dd {
text-align: center;
text-rendering: optimizeLegibility;
color: #9fabb1;
margin: 0;
}
section.balance-currency.balance-large {
float: left;
display: block;
margin-right: 2.35765%;
width: 100%;
}
section.balance-currency.balance-large:last-child {
margin-right: 0;
}
section.balance-currency.negative dt {
color: #d41b32;
}
@media only screen and (max-width: 864px) {
section.column-title {
float: left;
display: block;
margin-right: 2.35765%;
width: 100%;
}
section.column-title:last-child {
margin-right: 0;
}
section.column-content {
float: left;
display: block;
margin-right: 2.35765%;
width: 100%;
}
section.column-content:last-child {
margin-right: 0;
}
}
@media only screen and (max-width: 672px) {
#explorer-search-form input {
width: 100%;
max-width: none;
margin-top: .625em;
}
#explorer-search-form input:first-child {
margin-top: 0;
}
}
@media only screen and (max-width: 512px) {
section.balance-currency {
float: left;
display: block;
margin-right: 2.35765%;
width: 100%;
}
section.balance-currency:last-child {
margin-right: 0;
}
section.balance-currency dt {
font-size: 32px;
}
}
.network-label {
margin-right: 10px;
}
.no-data {
color: #9fabb1;
}
.trust-balance.negative {
color: #d41b32;
}
.offer-issuer {
font-size: 12px;
color: #9fabb1;
}
.query-address {
cursor: pointer;
-webkit-transition: color 200ms ease-in-out;
transition: color 200ms ease-in-out;
}
.query-address {
color: #08b5e5;
}
.query-address:hover {
color: #068eb4;
}
.balance-currency dt,
.trust-balance {
-webkit-transition: color 1000ms ease-in-out;
transition: color 1000ms ease-in-out;
}
.balance-currency dt.fresh,
.trust-balance.fresh {
-webkit-transition: none;
transition: none;
color: #08b5e5 !important;
}