forked from Nebilsolomon/Survey_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (53 loc) · 1.09 KB
/
Copy pathstyle.css
File metadata and controls
65 lines (53 loc) · 1.09 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
61
62
63
64
65
body {
font-family: Arial, Helvetica, sans-serif;
background: #d3d3d3
}
.header {
padding: 40px;
text-align: center; /* center the text */
background: #0081af; /* blue background */
color: #ead2ac; /* yellow text color */
}
.form {
max-width: 500px;
margin: 0 auto;
top: 300px;
}
.form label {
display: block;
font-weight: bold;
margin-bottom: 0.5rem;
}
.form input[type="text"],
.form textarea {
width: 100%;
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 4px;
margin-bottom: 1rem;
}
.form input[type="submit"] {
background-color: #008CBA;
color: white;
padding: 0.5rem 1rem;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
}
.form input[type="submit"]:hover {
background-color: #0077B5;
}
.form input[type="submit"]:active {
background-color: #006699;
}
.form input[type="submit"]:focus {
outline: none;
}
/* Change the background color on hover */
.form input[type="submit"]:hover {
background-color: #3e8e41;
}
.form input[name="Back"] {
float: right;
}