-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathform.css
More file actions
100 lines (87 loc) · 1.57 KB
/
Copy pathform.css
File metadata and controls
100 lines (87 loc) · 1.57 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
body {
font-family: Arial, sans-serif;
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #f4f4f4;
}
h1 {
color: #333;
text-align: center;
}
form {
background-color: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
color: #333;
font-weight: bold;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
box-sizing: border-box;
}
textarea {
resize: vertical;
min-height: 100px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
outline: none;
border-color: #4CAF50;
box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}
.checkbox-group,
.radio-group {
margin-top: 10px;
}
.checkbox-group label,
.radio-group label {
display: inline-block;
margin-right: 20px;
font-weight: normal;
margin-bottom: 10px;
}
input[type="checkbox"],
input[type="radio"] {
margin-right: 5px;
}
button {
background-color: #4CAF50;
color: white;
padding: 12px 30px;
border: none;
border-radius: 10px;
font-size: 16px;
cursor: pointer;
width: 100%;
}
button:hover {
background-color: #45a049;
}
.form-note {
color: #666;
font-size: 12px;
margin-top: 20px;
text-align: center;
}