-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform1.css
More file actions
62 lines (58 loc) · 1.04 KB
/
form1.css
File metadata and controls
62 lines (58 loc) · 1.04 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
/* FORM--START */
.form {
width: 60%;
margin: auto;
font-family: "Montserrat", sans-serif;
border: 1px rgb(151, 36, 36) solid;
}
#form-title {
margin: auto;
overflow: hidden;
text-align: center;
background-color: #ffffff;
border-radius: 5px;
padding: 20px;
color: black;
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
}
input[type="text"],
select,
textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
resize: vertical;
}
input[type="submit"] {
background-color: skyblue;
color:black;
padding: 12px 20px;
margin-top: 10px;
border: 1px skyblue solid;
border-radius: 4px;
cursor: pointer;
float: right;
}
input:hover{
color: skyblue;
background-color: white;
}
button {
background-color: white;
color: rgb(151, 36, 36);
border: 1px rgb(151, 36, 36) solid;
border-radius: 4px;
cursor: pointer;
padding: 10px 23px;
margin-top: 10px;
}
button:hover{
background-color: rgb(151, 36, 36);
color: white;
}
/* FORM--END */