-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
89 lines (75 loc) · 1.34 KB
/
main.css
File metadata and controls
89 lines (75 loc) · 1.34 KB
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
@import "https://cdn.materialdesignicons.com/2.8.94/css/materialdesignicons.min.css";
body {
overflow: hidden;
}
#app {
display: flex;
flex-direction: row;
height: 100vh;
font-size: 16px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
padding: 0;
margin: 0;
}
#list-host {
display: flex;
flex-direction: column;
flex: 0 0 auto;
height: 100%;
background-color: #f1f1f1;
overflow: hidden;
}
.dark-yellow #list-host {
background-color: #3b3c3f;
color: #e6e6e6;
}
#host {
flex: 1 1 auto;
}
#arjs-designer-host,
#arjs-viewer-host {
height: 100%;
}
.flex-grow-1 {
flex-grow: 1;
}
.flex-grow-0 {
flex-grow: 0;
}
.list {
list-style: none;
padding: 0;
margin: 6px 0;
overflow: auto;
}
.list-title {
align-items: center;
border-bottom: 1px solid #dbdbdb;
display: flex;
font-size: 1em;
font-weight: 400;
height: 52px;
margin: 0 10px;
padding: 0 2px;
user-select: none;
}
.list-item {
font-size: 0.875em;
cursor: pointer;
padding: 6px 30px 6px 12px;
white-space: nowrap;
text-overflow: ellipsis;
width: 100%;
overflow: hidden;
user-select: none;
}
.list-item:hover {
background-color: rgba(0, 0, 0, 0.1);
}
.list-item.active {
background-color: rgba(0, 0, 0, 0.05);
}
.hidden {
display: none;
}