-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
63 lines (51 loc) · 767 Bytes
/
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
.grid-container {
display: grid;
grid-template-columns: auto auto auto auto;
grid-gap: 10px;
}
.grid-container > div {
text-align: center;
}
/*plots*/
.main-plot{
grid-column-start: 2;
grid-column-end: 4;
grid-row-start: 2;
grid-row-end: 4;
border: 1px solid black;
}
.velocity{
grid-column: 1;
grid-row: 2;
width: 350px;
height: 350px;
}
.plot{
width: 100%;
border: 1px solid black;
height: 85%;
}
.acceleration{
grid-column: 1;
grid-row: 3;
width: 350px;
height: 350px;
}
/*buttons and more*/
.clear-canvas{
grid-column: 2;
grid-row: 1;
}
.canvas-mode {
grid-column: 3;
grid-row: 1;
}
.continuity-modes {
display: flex;
justify-content: space-evenly;
grid-column: 1;
grid-row: 1;
}
.continuity-modes > button {
width: 33%;
}