-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJobpost.css
64 lines (60 loc) · 1.05 KB
/
Jobpost.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
*{
margin: 0;
padding: 0;
text-decoration: none;
box-sizing: border-box;
}
.Job_post_container{
display: flex;
justify-content:center;
align-items: center;
width: 700px;
border-radius: 10px;
margin: auto;
margin-top: 70px;
margin-bottom: 70px;
box-shadow: rgba(49, 49, 49, 0.2) 0px 2px 8px 0px;
font-size: larger;
background-color: #ffffff;
}
form{
padding: 40px;
}
.box_1{
display: flex;
position: relative;
justify-content: space-between;
}
.box_1 input, select{
width: 290px;
}
input, select, textarea{
height:40px;
border: 1px solid#ddd;
border-radius: 6px;
outline: none;
margin-bottom: 20px;
font-size: medium;
}
textarea{
width: 600px;
height: 200px;
}
input,textarea{
padding: 20px;
}
h3{
color: #338573;
margin-bottom:20px;
font-size: 25px;
text-align: center;
margin-top: 20px;}
.button_2{
display: flex;
justify-content: center;
}
span{
color: red;
font-size: 15px;
margin-left: 10px;
}