-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
98 lines (98 loc) · 1.57 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100vh;
width: 100wh;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
overflow-y: hidden;
overflow-x: hidden;
font-family: "Libre Baskerville", serif;
}
#chart-all {
flex-grow: 1;
position: relative;
display: flex;
min-height: 100vh;
flex-direction: row;
justify-content: flex-start;
}
#config-button-wrapper {
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}
.chart-container {
position: relative;
flex-grow: 1;
}
#chart-config {
position: absolute;
top: 0;
left: 0;
bottom: 0;
overflow-y: hidden;
overflow-x: hidden;
display: flex;
flex-direction: column;
height: 100%;
min-width: 30em;
width: 30em;
background: #ffffff;
z-index: 2000;
border-right: 1px solid #000000;
}
#config-header {
margin-left: 11px;
margin-top: 10px;
margin-bottom: 10px;
width: 100%;
}
#config-form {
overflow-x: hidden;
overflow-y: auto;
padding-top: 5px;
padding-bottom: 20px;
}
#config-header h1 {
display: inline-block;
font-size: 36px;
}
.config-section {
margin: 1vw;
}
#member-search {
margin-bottom: 10px;
}
/* Hacks around the fact that Element is bad */
.el-dropdown {
float: left;
}
.el-button-group > .el-dropdown > .el-button {
border-radius: 0;
}
#about {
padding: 20px;
max-width: 50vw;
}
#about-title {
padding: 20px 20px 0 20px;
font-size: 36px;
font-weight: 700;
}
#about-blurb {
padding: 0 20px 20px 20px;
}
#about-blurb p + p {
margin-top: 1em;
}
#router-route {
flex-grow: 1;
}