-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (72 loc) · 1.12 KB
/
styles.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
75
76
.desc-container{
margin-bottom: 2em;
}
.tool-desc{
text-align: justify;
}
#viewDiv{
width: 100%;
height: 100%;
}
.map-container{
width: 100%;
height: 600px;
}
.chart-container{
display: flex;
flex-direction: column;
width: 100%;
height: 600px;
margin-top: 2em;
margin-bottom: 5em;
}
.chart{
height: 50%;
display: flex;
flex-direction: column;
}
.index-title{
font-size: 16pt;
font-weight: 900;
}
.chart-desc-hide{
display: none;
}
.chart {
width: 100%;
position: relative;
align-items: center;
}
.chart-canvas {
position: absolute;
height: 200px;
width: 100%;
}
footer{
margin-top: 5em;
}
@media only screen and (min-width: 1200px) {
.map-container{
width: 50%;
}
.container{
display: flex;
flex-direction: row;
gap: 2em;
}
.chart-container{
width: 50%;
margin-top: 2em;
}
footer{
margin-top: 0em;
}
}
#prompt-text{
font-family: 'Courier New', Courier, monospace;
font-size: 8pt;
color: #666;
}
.chart-desc{
font-size: 10pt;
}