blob: 4064467a18db3c09661dfeb22a494eacaef95f55 (
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
|
div#dropzone {
border-radius: 10px;
border: 3px dashed #aaa;
height: 400px;
left: 50%;
position: relative;
top: 50%;
transform: translate(-50%, -50%);
width: 700px;
}
div#dropzone p {
color: #aaa;
display: inline-block;
left: 50%;
margin: 0;
position: relative;
top: 50%;
transform: translate(-50%, -50%);
}
div#dropzone.drop-hover {
border: 3px dashed white;
}
div#dropzone.drop-hover p {
color: white;
}
|