-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (67 loc) · 1.2 KB
/
style.css
File metadata and controls
76 lines (67 loc) · 1.2 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
h1 {
text-align: center;
}
#dropzone {
width: 200px;
height: 200px;
border: 1px black dashed;
justify-content: center;
display: flex;
flex-direction: column;
padding: 10px;
border-radius: 20px;
}
input {
border-radius: 10px;
border: 1px dashed black;
}
form {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
height: 100vh;
}
.file-box {
display: flex;
flex-direction: row;
gap: 10px;
border: 1px grey dashed;
align-items: center;
padding-left: 10px;
}
.file-box button {
height: 24px;
width: 24px;
border: 1px, black solid;
border-radius: 12px;
background-color: transparent;
cursor: pointer;
text-align: center;
font-weight: bold;
}
.file-box p {
margin: 0;
}
#chooseButton {
padding-inline: 0;
border: none;
background-color: transparent;
font-weight: bold;
cursor: pointer;
color: blue;
text-decoration: underline;
}
#dragNDrop {
text-align: center;
font-size: 16px;
color: #333;
}
#submitButton {
width: 100px;
height: 30px;
border-radius: 15px;
border: 1px black solid;
cursor: pointer;
font-weight: bold;
}