-
Notifications
You must be signed in to change notification settings - Fork 457
/
index.css
57 lines (47 loc) · 883 Bytes
/
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
.container {
width: 100%;
max-width: 800px;
margin: auto;
}
.selections {
display: flex;
justify-content: space-between;
}
.select-box {
margin-bottom: 20px;
}
.file-input-box {
margin-bottom: 20px;
}
.actions {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
#chart {
border: 1px solid #aaa;
/* width: 600px; */
/* height: 300px; */
}
#imageCanvas {
border: 1px solid #aaa;
}
/* Wrapping container for the three boxes */
.row-container {
display: flex;
align-items: center; /* Vertically center the content */
justify-content: space-between; /* Distributes space between the items */
flex-wrap: wrap; /* Allows the flex items to wrap */
}
.canvas-box,
.chart-box {
flex: 1; /* Takes up equal width */
}
#time {
text-align: center;
white-space: nowrap;
padding: 10px;
}
#time > span {
font-weight: bold;
}