-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
115 lines (93 loc) · 2.68 KB
/
styles.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
font-family: sans-serif;
font-size: 14px;
margin:0;
padding:0;
background: #ccc;
}
#container {
display: grid;
grid-template-columns: 300px auto;
grid-template-rows: auto 207px;
grid-template-areas:
"sidebar editor"
"terminal terminal";
grid-column-gap: 5px;
grid-row-gap: 5px;
height: 100vh;
width: 100vw;
overflow: hidden;
}
#sidebar {
grid-area: sidebar;
padding: 5px;
background: #eee;
}
#editor {
grid-area: editor;
overflow: hidden;
}
#terminal {
grid-area: terminal;
font-size: 20px;
}
#sidebar .grouping {
padding: 5px;
border: 1px solid #ccc;
margin: 5px;
}
#sidebar .grouping label {
margin-bottom: 5px;
display: block;
}
#sidebar .grouping select {
width: 100%;
margin-bottom: 5px;
}
#sidebar .grouping button {
width: calc(50% - 2px);
margin: 0 0 5px 0;
padding: 0;
}
#sidebar .grouping button.full {
width: 100%;
margin: 0 0 5px 0;
padding: 0;
}
#file_list {
display: block;
font-family: monospace;
overflow: hidden;
height: 300px;
border: 1px solid #ccc;
background: white;
list-style: none;
margin: 0 0 5px 0;
padding: 5px;
overflow-y: scroll;
}
#file_list > li {
overflow: hidden;
}
#file_list > li > span {
display: block;
overflow: hidden;
float: left;
text-overflow: ellipsis;
width: calc(100% - 32px)
}
#file_list > li > a {
float: right;
width: 16px;
height: 16px;
display: none;
}
#file_list > li:hover > a {
display:block;
}
#file_list > li > a.load {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAkFBMVEX////47cPZjzvmtF367o701kT13GD89LPkui+0diz32730z6WTbR7548y5iSacaSVeQhXIqWfhy7BYQBPBi0jsz6ny4ci1fTTDmTHcxG3PnErHgzTQsHr548vsqmHomEDUnF3CZxWqYBb01KfesV3KlFHYqUn89uvZqFDYpWrVqnLy6+P44qjdrmz12Wjzz2/LCvKLAAAAZUlEQVQYlX3PNxaAIAADUOwFsXdFsWAv97+dm+Ag2f7LkgAgyEjpNHNeVozLjdkcMEI2ZZaOE0KbMBvXTVbKWddURf6zK/buhsGnd1KU5UVZvQMc3LRdb7GFEYFJzBlEvmfVgssP55QGyrufV1sAAAAASUVORK5CYII=);
}
#file_list > li > a.delete {
background: url(data:image/gif;base64,R0lGODlhEAAQANUnAImIiJmZmdXU1P///7Ozs9DPz+Lh4fPz8+jo6Pr6+tjX1+Xl5fDw8N7e3unp6fz8/PHx8evr6+3s7Obl5fb19fb29u3t7f7+/t/e3t7d3ebm5vn5+evq6tva2tvb29LS0uHg4PTz8/j39+7u7vj4+PX19eTj4////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACcALAAAAAAQABAAAAZtwJNwSCwaT4Fk4EhcDgFGpXQagCIF2KwWawV4v2DwMMBBLAwYj0LwKViFgctjUwkxLI6Ju/lIEAYQfxp/b0gJIn8jfyaETSQlfxF/II1jFAd/CH8ZlXAHDBIOZw0dCntjDQWqq6uFJ2FhTLJCQQA7);
}