-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (54 loc) · 1.18 KB
/
styles.css
File metadata and controls
65 lines (54 loc) · 1.18 KB
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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@creativebulma/bulma-divider@1.1.0/dist/bulma-divider.min.css');
.is-primary {
background: linear-gradient(50deg, #ff7a3e, #ff4962, #ff2780) !important;
}
html {
zoom: 1.05;
}
.monospace {
/* Monospace font for TXIDs */
font-family: 'Roboto Mono', monospace;
;
}
#workers {
max-height: 25em;
overflow: auto;
}
@media (max-width: 768px) {
#workers {
columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
}
}
@media (min-width: 768px) {
#workers {
columns: 6;
-webkit-columns: 6;
-moz-columns: 6;
}
}
img {
image-rendering: -moz-crisp-edges;
/* Firefox */
image-rendering: -o-crisp-edges;
/* Opera */
image-rendering: -webkit-optimize-contrast;
/* Webkit (non-standard naming) */
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
/* IE (non-standard property) */
}
.divider {
z-index: 5;
margin: 0.5em !important;
}
.block1,
.transaction2 {
color: #ff7a3e;
}
.block2,
.transaction1 {
color: #ff4962;
}