-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (122 loc) · 2.2 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
* {
font-family: 'Trebuchet MS';
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
height: 100%;
overflow-y: hidden;
}
a{
color: royalblue;
}
.menu {
display: flex;
flex-direction: column;
width: 15%;
min-height: 100%;
padding: 1em;
border-right: 1px solid black;
font-size: .8vw;
overflow-x: visible;
overflow-y:scroll;
}
.menuLabel{
display: block;
width: 100%;
padding-top: 1em;
padding-bottom: 0.5em;
}
.menuInput{
width: 100%;
border-radius: .25em;
border: 1px solid black;
padding: 0.3em;
}
.btn{
background-color: #aaaaaa;
border: none;
color: black;
text-align: center;
text-decoration: none;
display: inline-block;
margin-top: 0.5vw;
padding: 0.5vw;
width: 100%;
font-size: .8vw;
border-radius: 0.5vh;
}
[data-tab-content]{
display: none;
height: 95vh;
}
.active[data-tab-content]{
display: flex;
flex-direction: row;
height: 95vh;
}
.tabs{
display: flex;
justify-content: space-around;
align-items: center;
list-style-type: none;
border-bottom: 1px solid black;
height: 5vh;
}
.tab{
cursor: pointer;
height: 100%;
line-height: 5vh;
padding-left: 2.5vh;
padding-right: 2.5vh;
}
.tab.active{
background-color: #ccc;
}
.tab:hover{
font-weight: 900;
}
.tab.active:hover{
font-weight: normal;
}
#graphTab, #aboutTab{
flex-direction: column;
padding: 1vh;
overflow-y: scroll;
}
.chartContainer{
display: flex;
flex-direction: column;
}
.chart{
padding-top: 5vh;
width: 40%;
}
.chartTitle{
font-size: larger;
font-weight: bold;
padding-bottom: 1.5vh;
}
.chartRow{
display: flex;
flex-direction: row;
justify-content: space-around;
}
.dataContainer{
display: flex;
font-family: 'Trebuchet MS';
height: 4%;
font-size: 1.7vh;
align-items: center;
justify-content: space-around;
}
@media only screen and (max-width: 1250px) {
.chartRow{
flex-direction: column;
}
.chart{
width: 100%;
padding-inline: 10%;
}
}