-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
70 lines (70 loc) · 983 Bytes
/
main.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
body {
background: black;
color: white;
font-family: "avenir next", avenir, sans-serif;
}
.row {
display: flex;
}
.column {
flex: 50%;
}
.info {
font-size: 0.7em;
border-bottom: 1px solid #19999F;
}
.info .key {
color: #19999F
}
.info .value {
color: #2BA50E
}
.stock {
padding: 0.2em 0.1em 0.25em 0.1em;
border-bottom: 1px solid #19999F;
}
.stock .header {
font-size: 0.8em;
cursor: pointer;
}
.stock .price {
font-size: 1em;
float: right;
}
.stock .key {
font-size: 0.6em;
}
.stock .value {
font-size: 0.6em;
color: orange;
}
.stock .last-transaction {
line-height: 0.7em;
}
.stock .volumen {
line-height: 0.7em;
}
.stock .up {
color: green;
}
.stock .no-change {
color: grey;
}
.stock .down {
color: red;
}
.stock .padding-right {
padding-right: 0.8em;
}
.stock .padding-right02 {
padding-right: 0.2em;
}
.stock .signals {
font-size: 0.6em;
}
.stock .signals .signal {
color: #A49B09;
}
.stock .summary {
font-size: 0.6em;
}