-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathhome.css
More file actions
70 lines (68 loc) · 1.29 KB
/
home.css
File metadata and controls
70 lines (68 loc) · 1.29 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
body {
background-color: rgb(153, 65, 175);
}
.form {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
form {
padding: 20px;
padding-top: 5px;
background-color: white;
border-radius: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
margin: auto;
}
.inputfield {
margin: auto;
margin-top: 10px;
}
.inputfield label {
display: block;
color: brown;
font-size: 20px;
margin-left: 5px;
margin-bottom: 5px;
}
.inputfield input {
margin: auto;
padding-inline: 5px;
width: 98%;
height: 25px;
background-color: rgb(246, 236, 236);
border-radius: 5px;
}
.inputfield textarea {
margin: auto;
width: 100%;
background-color: rgb(246, 236, 236);
border-radius: 5px;
}
.button button{
border: 2px;
padding: 5px;
font-size: 15px;
border-radius: 5px;
border-color: rgb(0, 0, 0);
background-color: blueviolet;
}
.button {
text-align: center;
margin-top: 3%;
}
.formHeading{
font-size: 35px;
text-align: center;
color: #092f5a;
}
.inputRadio label{
color: brown;
font-size: 20px;
margin-left: 5px;
margin-bottom: 5px;
}
.inputRadio{
margin-top: 5px;
}