-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
80 lines (62 loc) · 1023 Bytes
/
main.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
::-webkit-scrollbar {
/*隐藏滚轮*/
display: none;
}
body {
margin: 0px;
display: flex;
flex-direction: column;
align-content: space-between;
position: absolute;
height: 100vh;
width: 100vw;
}
#topbar {
height: 25px;
width: 100%;
}
#studio {
flex: 1;
height: 100%;
width: 100%;
}
#bt-info-bar {
height: 25px;
width: 100%;
}
#topbar {
background-color: rgb(53, 41, 41);
color:#fff;
}
#studio {
background-color: rgb(51, 27, 27);
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
}
#l-nav-bar {
width: 50px;
background-color: rgb(51, 45, 45);
}
#explorer {
width: 50%;
background-color: rgb(240, 216, 216);
}
#spec {
width: 50%;
background-color: rgb(185, 80, 80);
}
.h-handler {
}
#graph {
width: 50%;
background-color: white;
display: flex;
}
#graph p {
font-size: large;
}
#bt-info-bar {
background-color: rgb(98, 98, 199);
}