-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob-application.css
59 lines (59 loc) · 1.14 KB
/
job-application.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
body {
background-color: rgb(251, 253, 255);
}
.application-main {
display: flex;
flex-direction: column;
width: 700px;
border: 3px black solid;
border-radius: 15px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
margin-bottom: 20px;
padding: 20px;
}
.application-description {
font-size: 25px;
color: rgb(2, 42, 95);
display: flex;
flex-direction: row;
}
.application-type {
font-size: 20px;
color: rgb(134, 228, 12);
padding-top: 5px;
margin-left: 5px;
}
.application-h1 {
margin-top: 40px;
display: flex;
flex-direction: column;
font-size: 25px;
color: rgb(5, 39, 82);
text-align: left;
}
.application-h2 {
color: rgb(112, 70, 35);
font-size: 20px;
}
.apply {
width: 200px;
margin: auto;
margin-top: 40px;
margin-bottom: 40px;
height: 40px;
border-radius: 10px;
border: none;
text-decoration: none;
cursor: pointer;
background-color: rgb(4, 67, 123);
color: white;
font-weight: bold;
font-size: 25px;
}
.apply:hover {
background-color: rgb(5, 68, 116);
transform: scale(1.1);
transition-duration: 0.4s;
}