-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
52 lines (45 loc) · 767 Bytes
/
App.css
File metadata and controls
52 lines (45 loc) · 767 Bytes
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
.dropzone {
border: 2px dashed #ccc;
padding: 20px;
margin: 20px;
text-align: center;
cursor: pointer;
background-color: #f8f8f8;
border-radius: 10px;
}
.dropzone label {
display: block;
margin-bottom: 10px;
font-size: 18px;
color: #666;
}
.dropzone ul {
list-style: none;
margin: 0;
padding: 0;
}
.dropzone li {
margin-bottom: 10px;
font-size: 16px;
color: #333;
}
.dropzone li::before {
content: "\2022";
margin-right: 5px;
color: #ccc;
}
.dropzone:hover,
.dropzone:focus {
background-color: #fff;
border-color: #999;
outline: none;
}
.dropzone.active {
background-color: #e6f7ff;
border-color: #1890ff;
}
.dropzone.active:hover,
.dropzone.active:focus {
background-color: #fff;
border-color: #1890ff;
}