-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) · 723 Bytes
/
style.css
File metadata and controls
43 lines (37 loc) · 723 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
/* FILEPATH: style.css */
/* Styles for the file upload container */
.upload-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 200px;
border: 2px dashed #ccc;
border-radius: 5px;
padding: 20px;
cursor: pointer;
}
.upload-container:hover {
border-color: #aaa;
}
.upload-container .upload-text {
font-size: 18px;
color: #888;
}
/* Styles for the file input */
.upload-input {
display: none;
}
/* Styles for the save button */
.save-button {
margin-top: 20px;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.save-button:hover {
background-color: #0056b3;
}