-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
90 lines (76 loc) · 1.35 KB
/
Copy pathindex.css
File metadata and controls
90 lines (76 loc) · 1.35 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
90
#navbar {
background-color: #0d1117;
border: 1px solid #30363d;
text-wrap: nowrap;
position: fixed;
width: 21vw;
max-width: 30vw;
height: 100vh;
float: left;
overflow: scroll;
z-index: 10;
}
#navbar > header {
position: sticky;
top: 0;
box-shadow: 0 0 12px 7px rgb(10, 10, 10);
background-color: #161b22;
padding: 0.5rem;
margin-bottom: 0.5rem;
min-width: fit-content;
}
#nav-branch {
display: block;
padding-top: 0.2rem;
font-size: 1rem;
}
#navbar::-webkit-scrollbar {
width: 5px;
height: 0;
}
#navbar::-webkit-scrollbar-track {
background: #30363d;
}
#navbar::-webkit-scrollbar-thumb {
background: grey;
}
#navbar::-webkit-scrollbar-thumb:hover {
background: #ccc;
}
#file-explorer li {
white-space: nowrap;
padding-left: 5px;
}
#others {
float: right;
min-height: 101vh;
}
#resizer {
width: 5px;
height: 100vh;
float: left;
cursor: ew-resize;
transform: translateX(-5px);
position: fixed;
z-index: 10;
}
.fa-folder,
.fa-folder-open {
color: darkturquoise;
font-size: 1rem;
}
.fa-file-code {
font-size: 1rem;
color: yellowgreen;
}
ul {
list-style-type: none;
}
.repo-files {
text-decoration: none;
color: inherit;
}
.repo-folders:hover {
text-decoration: underline;
cursor: pointer;
}