blob: 6c782d4d8781f5ba424aa7702e737024344d38c0 (
plain)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
@import "../client/views/globalCssVariables.scss";
.imgupload_cont {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
.upload_label {
font-size: 3em;
font-weight: 700;
color: white;
background-color: black;
display: inline-block;
margin: 10;
width: 100%;
border-radius: 10px;
}
.upload_label:hover {
background-color: darkred;
}
.button_file {
text-align: center;
height: 50%;
width: 50%;
background-color: paleturquoise;
color: grey;
font-size: 3em;
}
.inputfile {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
.inputfile+label {
font-size: 3em;
font-weight: 700;
color: white;
background-color: black;
display: inline-block;
margin: 10px;
width: 100%;
border-radius: 10px;
}
.inputfile:focus+label,
.inputfile+label:hover {
background-color: darkred;
}
}
.backgroundUpload {
height: 100vh;
top: 0;
z-index: 999;
width: 100vw;
position: absolute;
background-color: lightgrey;
opacity: 0.4;
}
.image-upload {
top: 100%;
opacity: 0;
}
.image-upload.active {
top: 0;
position: absolute;
z-index: 999;
height: 100vh;
width: 100vw;
opacity: 1;
}
.uploadContainer {
top: 40;
position: absolute;
z-index: 1000;
height: 20vh;
width: 80vw;
opacity: 1;
}
.closeUpload {
position: absolute;
border-radius: 10px;
top: 39.7%;
color: grey;
font-size: 40;
left: 65.8%;
z-index: 1002;
padding: 0px 3px;
background: aliceblue;
transition: 0.5s ease all;
border: 3px solid;
border-color: black;
}
.loadingImage {
display: inline-flex;
width: max-content;
}
.loadingSlab {
position: relative;
width: 30px;
height: 30px;
margin: 10;
border-radius: 20px;
opacity: 0.3;
background-color: black;
}
|