-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubmit_CV.css
More file actions
75 lines (71 loc) · 1.42 KB
/
Submit_CV.css
File metadata and controls
75 lines (71 loc) · 1.42 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
73
74
75
body{
background-color:#191f36;
color: #fff;
}
input[type="text"],input[type="date"],select,input[type="email"],input[type="number"]{
width: 400px;
height: 50px;
border-radius: 25px;
font-size: medium;
margin-left: 45px;
margin-top: 25px;
text-indent: 20px;
}
table{
align-items: center;
padding: 50px;
align-self: center;
}
option{
color: black;
}
::placeholder{
color: black;
font-size: medium;
text-indent: 20px;
}
input[type="submit"]:hover {
background-color: #191f36;
color: #fff;
}
input[type="submit"] {
background-color:#59B2F4;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 25px;
transition: background-color 0.3s;
margin-left: 10px;
height: 55px;
display: inline-block;
box-shadow: 0 0 1rem #59B2F4;
font-size: 1.6rem;
font-weight: 500;
transition: 0.5s ease;
color: #191f36;
margin-top: 10px;
}
input[type="date"]::-webkit-calendar{
background-color:#191f36;
}
h1{
color: #fff;
font-weight: 500px;
font-size: 50px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
div{
width: 400px;
height: 50px;
border-radius: 25px;
font-size: medium;
margin-left: 45px;
margin-top: 25px;
text-indent: 20px;
background-color: #fff;
color: black;
}
input[type="file"]{
margin-top: 15px;
font-size: 13px;
}