-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
43 lines (43 loc) · 799 Bytes
/
style.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
.drop-zone {
max-width: 200px;
height: 200px;
padding: 25px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-family: 'Quicksand', sans-serif;
font-weight: 500;
font-size: 20px;
cursor: pointer;
color: #bbb;
border: 4px dashed #009578;
border-radius: 10px;
}
.drop-zone--over {
border-style: solid;
}
.drop-zone__input {
display: none;
}
.drop-zone__thumb {
width: 100%;
height: 100%;
border-radius: 10px;
overflow: hidden;
background: #bbb;
background-size: cover;
position: relative;
}
.drop-zone__thumb::after {
content: attr(data-label);
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 5px 0;
color: #fff;
background: rgba(0, 0, 0, 0.75);
font-size: 14px;
text-align: center;
}