blob: 56eb3cef0a5f62587b12d602cdff281cf65dfccf (
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
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
|
.folderBox {
width: 100%;
height: 90%;
position: relative;
}
.file-container{
border: 4px solid transparent;
position: relative;
margin-left: 3%;
margin-top: 3rem;
width: 94%;
min-height: 500px;
}
.fileButton{
position: absolute;
margin-top: -3rem;
display: flex;
flex-direction: row;
align-items: center;
}
.fileButton label{
margin-left: 10px;
}
.dottedClass
{
border: 4px dotted white;
border-radius: 25px;
}
.hidden{
visibility: hidden;
}
.file {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
}
.file input{
border-radius: 4px;
margin-top: -15px;
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%;
}
|