-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
85 lines (83 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
#treeView {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 18px;
position: absolute;
left: 2%;
}
.scrollable {
height: 70vh;
overflow: auto;
overflow-y: scroll;
border: 1px solid #ddd;
border-radius: 5px;
width: calc(35vw);
position: absolute;
top: 20%;
left: 12%;
}
.scrollable::-webkit-scrollbar {
width: 8px;
background-color: #f5f5f5;
}
.scrollable::-webkit-scrollbar-thumb {
background-color: #aaa;
border-radius: 10px;
}
.scrollable::-webkit-scrollbar-track {
background-color: #f5f5f5;
border-radius: 10px;
}
#edfs {
position: absolute;
top: 19%;
left: 55%;
font-size: 20px;
}
#pathSelector {
height: 15vh;
width: calc(40vw);
border: 1px solid #ddd;
border-radius: 5px;
position: absolute;
top: 25%;
left: 53%;
overflow: auto;
}
#pathSelector p.path {
font-size: 18px;
position: absolute;
left: 2%;
}
#local {
position: absolute;
top: 44%;
left: 55%;
font-size: 20px;
}
#localPath {
height: 15vh;
width: calc(40vw);
border: 1px solid #ddd;
border-radius: 5px;
position: absolute;
top: 50%;
left: 53%;
overflow: auto;
}
#localPath p.path {
font-size: 18px;
position: absolute;
left: 2%;
}
.button {
position: absolute;
top: 70%;
left: 65%;
padding: 8px 16px;
background-color: sienna;
color: white;
font-size: 18px;
border: none;
border-radius: 4px;
cursor: pointer;
}