-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles1.css
More file actions
47 lines (41 loc) · 877 Bytes
/
styles1.css
File metadata and controls
47 lines (41 loc) · 877 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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
}
.container {
width: 60%;
padding: 20px;
background: white;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
text-align: center;
}
.upload-section, .result-section {
padding: 20px;
margin: 10px 0;
border-radius: 8px;
}
.upload-section {
border: 2px solid black;
background-color: #ffffff;
}
.result-section {
border: 2px solid red;
background-color: #ffffff;
}
.upload-btn {
padding: 10px 15px;
margin-top: 10px;
border: none;
background-color: #007BFF;
color: white;
cursor: pointer;
border-radius: 5px;
}
.upload-btn:hover {
background-color: #0056b3;
}