-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (46 loc) · 945 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
44
45
46
47
48
49
50
51
52
53
body {
margin: 0 auto;
width:80%;
}
.drop-message {
color: rgb(230, 154, 167);
font-size: 18pt;
font-weight: 100;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#drop-region {
margin-top: 40px;
height: 400px;
background-color: #fff;
border-radius:20px;
box-shadow:0 0 35px rgba(0,0,0,.3);
padding:60px 40px;
text-align: center;
cursor:pointer;
transition: .3s;
}
#drop-region:hover {
box-shadow:0 0 45px rgba(0,0,0,.4);
}
#image-preview {
margin-top:20px;
}
#image-preview .image-view {
display: inline-block;
position:relative;
margin-right: 13px;
margin-bottom: 13px;
}
#image-preview .image-view img {
max-width: 150px;
max-height: 150px;
}
#image-preview .overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
right: 0;
z-index: 2;
background: rgba(255,255,255,0.2);
}