-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjob.css
More file actions
81 lines (71 loc) · 1.91 KB
/
job.css
File metadata and controls
81 lines (71 loc) · 1.91 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
76
77
78
79
80
81
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Expanded:wght@100;200;300;400;500;600;700;800;900&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
margin: 0;
/* font-family: Arial, sans-serif; */
background-color: #f4f4f9;
color: #ffffff;
/* display: flex; */
/* justify-content: center;
align-items: center; */
height: 100vh;
}
.job-container {
margin-top: 100px;
margin-left: 50px;
background-color: #000000a2;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/* width: 90%; */
width: 100%;
height: 100%;
text-align: left;
z-index: 99;
}
.job-title {
font-size: 3.5em;
padding-bottom: 2dvh;
font-family: Poppins;
color: #ffffff;
/* color: rgb(0, 177, 0); */
margin-bottom: 10px;
}
.job-description {
font-size: 1rem;
font-family: Poppins;
margin-bottom: 20px;
color: #e2e2e2;
padding-bottom: 40px;
}
.job-details {
font-size: 0.9rem;
font-family: Poppins;
line-height: 1.6;
margin-bottom: 20px;
padding-bottom: 60px;
}
.apply-button {
background-color: rgb(0, 123, 101);
color: white;
border: none;
padding: 20px 150px;
font-size: 1rem;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s ease;
display: block;
margin-bottom: 100px;
/* width: 100%; */
text-align: center;
}
.apply-button:hover {
background-color: rgb(0, 162, 133);
}
body{
background-image: url("images/frontend.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}