-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
44 lines (43 loc) · 839 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
body {
background-image: url(pexels-felix-mittermeier-956999.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: Arial, sans-serif;
/* margin: 0;
padding: 0;
box-sizing: border-box; */
}
h1 {
text-align: center;
color: #fff;
margin-top: 50px;
}
#drop {
width: 70%;
height: 150px;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
background-color: rgba(241, 241, 241, 0.423); /* Add transparency here */
border: 2px dashed #ccc;
text-align: center;
padding: 20px;
/* box-sizing: border-box; */
cursor: pointer;
border-radius: 10px;
}
#fileInput {
display: none;
}
.message {
display: flex;
color: green;
margin-top: 20px;
text-align: center;
background-color: #fff;
}
.link {
display: block;
}