forked from drkostas/drkostas.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExplorer.module.css
75 lines (64 loc) · 1.09 KB
/
Explorer.module.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
.explorer {
background: var(--explorer-bg);
width: 18vw;
color: rgb(225, 228, 232);
font-family: 'Source Sans Pro', sans-serif;
border-right: 1px solid var(--explorer-border);
}
.title {
padding: 0.5rem 0.75rem;
font-weight: 300;
text-transform: uppercase;
font-size: 0.9rem;
letter-spacing: 1px;
margin-bottom: 0.75rem;
}
.heading {
text-transform: uppercase;
font-weight: bold;
font-size: 0.8rem;
letter-spacing: 1px;
display: flex;
align-items: center;
cursor: pointer;
padding: 0 0.5rem;
}
.checkbox {
position: absolute;
opacity: 0;
z-index: -1;
}
.files {
padding: 0.5rem 0;
cursor: pointer;
}
.file {
padding: 0.2rem 1rem;
display: flex;
align-items: center;
font-size: 0.875rem;
}
.file p {
margin-left: 5px;
}
.file:hover {
background: var(--explorer-hover-bg);
}
.chevron {
transition: transform 0.2s;
}
@media screen and (min-width: 2000px) {
.explorer {
width: 10vw;
}
}
@media screen and (max-width: 900px) {
.explorer {
width: 20vw;
}
}
@media screen and (max-width: 600px) {
.explorer {
display: none;
}
}