-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFiles.css
More file actions
65 lines (59 loc) · 1.04 KB
/
Files.css
File metadata and controls
65 lines (59 loc) · 1.04 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
.files-app {
height: 50vh;
width: 50vw;
top: 7vh;
left: 45vw;
}
.files-body {
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.sidebar {
border-right: 1px solid gray;
height: 100%;
width: 20%;
padding: 1vh;
display: flex;
align-items: center;
justify-content: start;
gap: 1vh;
flex-direction: column;
}
.sidebar button {
border: none;
height: auto;
width: 100%;
padding: 1vh;
cursor: pointer;
background-color: blue;
color: white;
}
.active {
background-color: gray;
}
#files-collection {
border-left: 1px solid gray;
height: 100%;
width: 80%;
padding: 2vh;
display: flex;
align-items: start;
justify-content: start;
gap: 1vw;
flex-wrap: wrap;
background-color: white;
}
.file {
height: auto;
width: 5vw;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5vh;
flex-direction: column;
cursor: pointer;
}