-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (88 loc) · 1.8 KB
/
styles.css
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
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.box__dragndrop, .box__uploading, .box__success, .box__error { display: none; }
.box.has-advanced-upload { background-color: white; outline: 2px dashed black; outline-offset: -10px; }
.box.has-advanced-upload .box__dragndrop { display: inline; }
.box.is-dragover { background-color: #e9e9e9; }
display: none;
}
.container {
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 600px;
}
.progress-bar {
width: 100%;
height: 5px;
background-color: #e0e0e0;
margin-bottom: 20px;
border-radius: 3px;
overflow: hidden;
}
.progress {
width: 33%;
height: 5px;
background-color: #007AFF;
transition: width 0.3s ease;
}
.step {
display: flex;
flex-direction: column;
gap: 20px;
}
.drag-drop {
border: 2px dashed #007AFF;
padding: 20px;
text-align: center;
cursor: pointer;
border-radius: 5px;
}
.text-inputs {
display: flex;
gap: 10px;
}
.text-inputs input {
flex: 1;
padding: 10px;
border: 1px solid #e0e0e0;
border-radius: 5px;
}
.btn {
padding: 10px 20px;
background-color: #007AFF;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #005BB5;
}
.images-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
h2 {
text-align: center;
color: #333;
}
.loading {
text-align: center;
}
#loadingStatus {
font-size: 24px;
font-weight: bold;
color: #007AFF;
}