-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (61 loc) · 1.07 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
@font-face {
font-family: NatlPark;
src: url(NationalPark-Regular.woff2);
}
* {
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
height: 100vh;
overflow: hidden;
font-family: NatlPark;
}
main {
display: flex;
flex-direction: row;
gap: 1rem;
flex-grow: 1;
max-height: 100%;
overflow: hidden;
}
.mode {
display: flex;
flex-direction: row;
gap: 3rem;
}
.listItem {
display: flex;
flex-direction: row;
align-items: center;
gap: 1rem;
}
.planeWrapper {
display: flex;
flex-direction: row;
gap: 1rem;
width: 100%;
}
.planeWrapper > .canvas-container {
flex-grow: 1;
/* width: 100%; */
}
.planeWrapper > .leftText {
display: flex;
flex-direction: column;
max-height: 100%;
width: 200px;
overflow-y: scroll;
}
.planeWrapper > .leftText > ul {
padding-left: 0px;
width: auto;
}
.planeWrapper > .leftText > ul > li {
width: auto;
}
.planeWrapper > .leftText > ul > li > p {
white-space: pre;
}