-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
51 lines (46 loc) · 891 Bytes
/
form.css
File metadata and controls
51 lines (46 loc) · 891 Bytes
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
*{
padding: 0;
margin: 0;
}
body {
background-image: url('background.jpeg');
background-size: cover;
background-position: center;
/* background-color:plum; */
}
.container {
max-width: 500px;
margin: 40px auto;
padding: 20px;
background-color:#fa9372;
border: 1px solid #ddd;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 10px;
}
.form-control {
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
}
.btn-primary {
background-color: #337ab7;
border-color: #2e6da4;
color: #fff;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
.btn-primary:hover {
background-color: #23527c;
border-color: #1d4e7a;
}
H1{
text-align: center;
font-size: 50px;
}