-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (63 loc) · 1.15 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
body {
padding-top: 70px;
}
#currency-list {
margin-bottom: 10px;
text-align: right;
}
#currency-table thead th {
background-color: #444;
color: #efefef;
text-transform: uppercase;
}
#currency-table tfoot tr {
background-color: #eee;
font-weight: bold;
}
.number::before {
content: "$";
}
.loss {
color: red;
}
.loss .number::before {
content: "($";
}
.loss .number::after {
content: ")";
}
@media only screen and (max-width: 800px) {
/*#currency-table,
#currency-table thead,
#currency-table tbody,
#currency-table th,
#currency-table td,
#currency-table tr {
display: block;
}
#currency-table thead tr {
position: absolute;
top: -9999px;
left: -9999px;
}
#currency-table tr { border: 1px solid #ccc; }
#currency-table td {
border: none;
border-bottom: 1px solid #eee;
position: relative;
padding-left: 50%;
white-space: normal;
text-align:left;
}
#currency-table td:before {
position: absolute;
top: 6px;
left: 6px;
width: 45%;
padding-right: 10px;
white-space: nowrap;
text-align:left;
font-weight: bold;
}
#currency-table td:before { content: attr(data-title); }*/
}