blob: 66be7f7d42e93666c4a77a50cd4c185eff875280 (
plain) (
blame)
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
|
.folderBox {
width: 100%;
height: 90%;
position: relative;
}
.file-container{
margin-left: 3%;
margin-top: 3%;
margin-bottom: -50%;
width: 94%;
height: 500px;
border: 4px dotted white;
border-radius: 25px;
}
.file-container .file {
opacity: 0;
padding: 5rem;
width: 100%;
height: 100%;
}
.icon-display {
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%) scale(4);
}
.bottomBar {
position: absolute;
bottom: -6%;
left: 5%;
}
#bottomButton {
background-color: var(--ns-bg-dark-100);
width: 10%;
height: 65%;
}
|