-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.css
106 lines (104 loc) · 1.89 KB
/
form.css
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
101
102
103
104
105
106
*{
box-sizing: border-box;
}
/* header::before{
background: url('CA.jpg') no-repeat center center/cover;
content: " ";
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height:100%;
z-index: -1;
opacity: 0.5;
} */
.details{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: cursive;
}
.line{
margin: 0px 8px;
padding: 0px 8px;
}
.form{
display: flex;
border: 2px solid gray ;
width:75%;
margin: 20px;
padding: 20px;
}
.form >form{
display: flex;
flex-direction: column;
width: 100%;
}
.name{
display: flex;
align-items: center;
justify-content: center;
padding: 3px 3px;
margin: 9px 0px;
}
.name > label{
width: 30%;
text-align: center;
}
.cname >label{
width: 40%;
margin: 10px 12px;
}
.start >label{
width: 40%;
margin: 10px 12px;
}
.position >label{
width: 60%;
padding: 4px 0px;
margin: 10px 12px;
}
.position> select{
font-size: 1.2rem;
width: 40%;
height: 2.5rem;
padding: 3px 3px;
margin: 16px 12px;
border: 1px solid #ccc;
}
.email >label{
width: 40%;
margin: 10px 12px;
}
.numb >label{
width: 40%;
margin: 10px 12px;
}
/* .border{
border: 2px solid blueviolet;
} */
input[type=text], input[type=date],input[type=email],input[type=number] {
font-size: 1.2rem;
width: 98%;
height: 2.5rem;
padding: 3px 3px;
margin: 16px 12px;
border: 2px solid #ccc;
}
.submit{
padding: 13px 8px;
margin: 0px 3px;
}
.submit> button{
height: 2.5rem;
width: 10%;
font-size: 1.1rem;
color: black;
background-color: #a5c5c5;
}
.submit >button:hover{
height: 2.53rem;
width: 10.1%;
background-color: rgb(139, 169, 169);
}