73 lines
1.1 KiB
CSS
73 lines
1.1 KiB
CSS
/* Custom styles for the application */
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #f5f5f5;
|
|
color: #333;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(45deg, #1a237e, #5c6bc0);
|
|
color: white;
|
|
padding: 100px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #ffca28;
|
|
border-color: #ffca28;
|
|
color: #333;
|
|
font-weight: 600;
|
|
padding: 15px 30px;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #ffc107;
|
|
border-color: #ffc107;
|
|
}
|
|
|
|
.job-listings {
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.job-card {
|
|
background-color: white;
|
|
border: 1px solid #eee;
|
|
border-radius: 10px;
|
|
padding: 30px;
|
|
margin-bottom: 30px;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.job-card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.job-card h3 {
|
|
color: #1a237e;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.job-card .company {
|
|
font-weight: 600;
|
|
color: #555;
|
|
}
|
|
|
|
.job-card .location {
|
|
color: #777;
|
|
} |