-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPDFSorter.css
More file actions
52 lines (45 loc) · 713 Bytes
/
Copy pathPDFSorter.css
File metadata and controls
52 lines (45 loc) · 713 Bytes
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
/* styles.css */
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
margin: 0;
}
.container {
text-align: center;
}
.btn {
padding: 10px 20px;
margin: 10px;
border: none;
border-radius: 5px;
color: white;
cursor: pointer;
}
.blue {
background-color: blue;
}
.green {
background-color: green;
}
.grey {
background-color: grey;
cursor: not-allowed;
}
.remove {
padding: 5px 10px;
margin: 10px;
border: none;
border-radius: 5px;
background-color: red;
color: white;
cursor: pointer;
}
.file-input {
display: flex;
align-items: center;
justify-content: center;
}