-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
95 lines (82 loc) · 1.38 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
overflow-y: hidden;
height: 100vh;
max-height: 100dvh;
max-height: 100vh;
}
#controller {
padding: 2rem;
display: grid;
grid-auto-flow: column;
gap: 1rem;
height: 100%;
overflow-y: scroll;
}
#controller .department-container > label {
font-size: 1.15rem;
margin-bottom: 0.75rem;
font-weight: 500;
}
#controller .department-container #department {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
#controller .department-container #department div {
display: flex;
font-size: 1.05rem;
flex-direction: row;
align-items: center;
gap: 0.5rem;
user-select: none;
}
#controller .department-container #department input {
width: 1.25rem;
height: 1.25rem;
}
#result {
font-size: 1.3rem;
}
#res-panel {
flex: 1;
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
position: relative;
}
#result {
position: absolute;
top: 0;
left: 0;
align-self: flex-start;
background-color: #ddd;
padding: 0.5rem;
border-bottom-right-radius: 10px;
border: 0.5px solid black;
}
#chart {
overflow-y: scroll;
width: 100%;
}
.result-label,
.line-label {
display: flex;
gap: 0.5rem;
align-items: center;
}
.result-label > div {
width: 1rem;
height: 1rem;
border-radius: 8px;
}
.line-label > div {
height: 1px;
width: 1rem;
}