-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrefurbisher2.css
More file actions
60 lines (53 loc) · 1.01 KB
/
refurbisher2.css
File metadata and controls
60 lines (53 loc) · 1.01 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
/* General Form Styling */
div {
font-family: 'Roboto', sans-serif;
text-align: center;
padding: 20px;
}
form {
background: #ffffff;
padding: 25px;
max-width: 600px;
margin: auto;
border-radius: 10px;
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}
label {
display: block;
font-weight: bold;
margin-top: 12px;
color: #333;
}
input, textarea {
width: 100%;
padding: 12px;
margin-top: 8px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 16px;
}
textarea {
resize: vertical;
min-height: 80px;
}
button {
background: linear-gradient(90deg, #007bff, #0056b3);
color: white;
padding: 12px 18px;
margin-top: 20px;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
transition: background 0.3s ease-in-out;
}
button:hover {
background: linear-gradient(90deg, #0056b3, #003580);
}
/* Responsive Design */
@media screen and (max-width: 768px) {
form {
width: 90%;
padding: 20px;
}
}