-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
66 lines (50 loc) · 1.15 KB
/
index.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
body {
width: 100%;
max-width: 100%;
overflow-x: clip;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: stretch;
.navigation {
margin: auto;
.tab-button {
margin: 1em;
}
}
.histogram {
width: 100%;
margin: 0;
padding: 0;
& .datapoint {
overflow-x: visible;
padding: 5px 0px 5px 5px;
margin: 0;
& .datapoint-bar {
width: 100%;
height: 1em;
background-color: darkgray;
transition: transform 50ms linear 0s;
transform-origin: left center;
}
}
}
.raw-data {
width: 100%;
display: flex;
flex-direction: column;
align-items: stretch;
text-align: center;
.raw-data-container {
display: flex;
flex-direction: column;
align-items: center;
.raw-data-input {
width: 100%;
max-width: 50em;
min-height: 80vh;
}
}
}
}