-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
72 lines (58 loc) · 966 Bytes
/
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
.tabs-wrapper {
position: relative;
}
.tabs-buttons {
position: absolute;
right: 0px;
top: 0px;
}
.tabs-buttons > * + * {
margin-left: 8px;
}
.data-table-wrapper {
position: relative;
}
.overlay {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: 100;
background: rgba(255, 255, 255, 0.6);
}
.table-wrapper {
overflow-y: auto;
}
.mc-table {
margin-top: -1px;
white-space: nowrap;
font-size: 0.9em;
}
.mc-table thead th {
color: rgba(0, 0, 0, 0.65);
transition: color 100ms ease-in-out;
}
.mc-table thead th[data-sort-column] {
cursor: pointer;
}
.mc-table thead th[data-sort-column].active {
color: rgba(0, 0, 0, 1);
}
.mc-table thead th[data-sort-column]:hover {
color: rgba(0, 0, 0, 1);
text-decoration-line: underline;
}
.positive {
color: #1f9e36;
}
.negative {
color: #db5c60;
}
.coin-info img {
height: 1em;
margin-right: 4px;
}
.coin-symbol {
text-transform: uppercase;
}