-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
72 lines (63 loc) · 1.3 KB
/
form.css
File metadata and controls
72 lines (63 loc) · 1.3 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
.buttons{
border-radius: 5px;
padding: 10px 15px;
width: 50%;
margin-top: 5px;
}
.container{
border: 1px solid black;
width: 50%;
padding: 25px;
border-radius: 15px;
background: linear-gradient(270deg, rgb(160, 160, 238), rgb(151, 221, 151));
}
.form-group{
margin-bottom: 15px;
display: flex;
flex-direction: column;
}
.form-input{
padding: 10px;
border-radius: 5px;
height: 22px;
border: none;
outline: none;
background-color: rgba(255, 255, 255, 0.7);
}
body{
background-image: url("/assets/Mountain.jpg");
}
form{
display: flex;
justify-content: center;
flex-direction: column;
margin-top: 10px;
}
.formsection{
background-color: rgba(2,5,7,0.4);
padding: 10px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.tab{
font-size: 25px;
font-weight: bold;
color: rgb(69, 69, 190);
text-decoration-line: underline;
text-decoration-color: #99534e;
text-decoration-style: dashed;
}
hr{
height: 5px;
background-color: red;
border: none;
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
}
.gender{
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
}