blob: fcfb29c6c16beecf3cdb3f991ccc9ea35cafd119 (
plain)
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
|
#top-bar {
display: flex;
flex-direction: row;
justify-content: space-evenly;
margin-right: 10px;
margin-left: 10px;
border-bottom: solid 1px white;
margin-top: 0px;
padding-bottom: 20px;
}
/* div {
border: solid white;
} */
/* p {
border: solid white;
} */
.bigNumber {
font-size: 25pt;
margin: 0;
}
.Chosen-user {
background-color: #333333;
color: lightgreen;
width: 25vw;
border-radius: 10px;
}
.Stock-row {
display: flex;
justify-content: space-evenly;
color: white;
margin-bottom: 5px;
}
.tableHeader {
display: flex;
flex-direction: row;
justify-content: left;
margin-right: 10px;
margin-left: 10px;
font-size: 120%;
padding: 5px;
color: lightgreen;
}
.symbol-row {
margin-right: 20px;
}
.gain-row {
margin-right: 20px;
}
|