File size: 814 Bytes
c9a11d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#imgPlaceholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
}

#imgNavBtns {
    display: flex;
    justify-content: center;
}

.imgNavBtn+.imgNavBtn {
    margin-left: 10px;
}

.imgNavBtn {
    margin-top: 15px;
    background-color: black;
    border: none;
    color: red;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 32px;
    cursor: pointer;
}

#drop_zone {
    border: 5px solid blue;
    /* width: 200px;
    height: 100px; */
    width: fit-content;
    height: fit-content;
}

#droppedImages {
    margin-top: 15px;
    padding: 10px 20px;
    display: block;
    justify-content: center;
    position: relative;
}

#droppedImages img {
    display: inline-block;
    width: 100px;
}