-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.scss
93 lines (78 loc) · 1.13 KB
/
app.scss
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
@media (max-width: 800px) {
grid-template-columns: 1fr;
}
}
#app,
#tickers {
margin: 0 auto;
max-width: 400px;
padding: 20px;
}
canvas {
width: 100%;
background: #33325e;
// background: rgba(lightsteelblue, 0.3);
}
header {
margin-bottom: 20px;
}
h1 {
font-size: 2rem;
font-weight: 600;
text-align: center;
& + p {
text-align: center;
}
}
h2 {
font-size: 1.5rem;
font-weight: 600;
}
h3 {
font-size: 1.2rem;
font-weight: 600;
}
table {
width: 100%;
text-align: left;
border-collapse: collapse;
margin-bottom: 10px;
th,
td {
padding: 10px;
}
th {
background: rgba(lightsteelblue, 0.6);
}
td {
background: rgba(lightsteelblue, 0.3);
border-bottom: 1px dashed white;
}
.num {
text-align: right !important;
}
}
form {
margin-bottom: 30px;
}
.input-row {
display: flex;
input,
.select {
margin-right: 5px;
}
input:first-child,
.select:first-child {
flex-grow: 1;
select {
width: 100%;
}
}
input:nth-child(2) {
max-width: 75px;
}
}