-
Notifications
You must be signed in to change notification settings - Fork 3
/
upload.css
87 lines (80 loc) · 1.91 KB
/
upload.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
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
77
78
79
80
81
82
83
84
85
86
87
/* Center the form on the page */
.upload-form {
max-width: 60%; /* Change max-width to 100% */
padding: 50px;
background-color: #3594c8;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
opacity: 90%;
margin-left: 17%;
}
/* Style form inputs and labels */
.upload-form label, .upload-form input, .upload-form textarea {
display: block;
margin-bottom: 15px;
width: 100%;
text-align: center;
}
body {
margin-right: 200px;
width: 100%;
height: 100%;
background-image: url("img1.png");
background-size: cover; /* Make the background image cover the entire page */
background-position: center; /* Center the background image */
background-attachment: fixed;
}
/* Style the file input button */
.file-input-button {
display: inline-block;
padding: 10px 15px;
background-color: #94b4d8;
color: #fff;
border: none;
cursor: pointer;
border-radius: 5px;
}
.file-input-button:hover {
background-color: #0056b1;
}
/* Style the submit button */
.submit-button {
background-color: #edf3fa;
color: #fff;
border: none;
padding: 15px 25px;
cursor: pointer;
border-radius: 5px;
font-size: 16px;
}
.submit-button:hover {
background-color: #ffffff;
}
/* Style small text */
small {
font-size: 12px;
color: #e8d7d7;
}
.sign-in {
width: 100px;
height: 100%;
background-color: #e6e6e6;
color: #060505;
font-size: 15px;
font-weight: bold;
border-radius: 50px;
padding-left: 0px;
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
text-align: center;
cursor: pointer;
margin: 0 auto;
}
/* Optional: Add a subtle animation on hover for input fields */
.upload-form input:hover,
.upload-form textarea:hover {
border: 1px solid #0056b1;
transition: border 0.3s ease-in-out;
}