Hong-Phuc Bui
2025-01-16 2889de7f0c2d587a17fbd322af57c29e84238620
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.row {
    display: flex;
}
 
#plotter-container {
    display: inline-block;
    vertical-align: top;
    flex: 510px;
}
#plotter {
    height: 500px;
    width: 500px;
    border: solid 0.5px hsl(0, 0%, 70%);
    margin-top: 8px;
}
#text-output-container {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 500px - 5px);
}
 
#text-output {
    height: 900px;
}