34148-vm/assets/css/custom.css
2025-09-17 12:59:18 +00:00

108 lines
2.1 KiB
CSS

/* General Body Styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: #F9F9F9;
color: #333333;
}
/* Navbar */
.navbar {
background-color: #FFFFFF;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.navbar-brand {
font-weight: 700;
color: #4A90E2 !important;
}
/* Hero Section */
.hero-section {
background: linear-gradient(45deg, rgba(74, 144, 226, 0.9), rgba(80, 227, 194, 0.9)), url('https://picsum.photos/seed/hr-hero/1600/500') no-repeat center center;
background-size: cover;
color: white;
padding: 6rem 0;
text-align: center;
}
.hero-section h1 {
font-weight: 700;
font-size: 3.5rem;
}
.hero-section p {
font-size: 1.25rem;
opacity: 0.9;
}
/* Job Listings */
.job-listings {
padding: 4rem 0;
}
.job-card {
background-color: #FFFFFF;
border: 1px solid #EAEAEA;
border-radius: 12px;
padding: 1.5rem;
margin-bottom: 1.5rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.job-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.job-card h5 {
color: #4A90E2;
font-weight: 600;
}
.job-card .badge {
border-radius: 6px;
font-weight: 500;
padding: 0.4em 0.7em;
}
.btn-primary {
background-color: #4A90E2;
border-color: #4A90E2;
border-radius: 12px;
padding: 0.75rem 1.5rem;
font-weight: 600;
transition: background-color 0.2s;
}
.btn-primary:hover {
background-color: #357ABD;
border-color: #357ABD;
}
.btn-secondary {
background-color: #50E3C2;
border-color: #50E3C2;
color: #fff;
border-radius: 12px;
padding: 0.75rem 1.5rem;
font-weight: 600;
transition: background-color 0.2s;
}
.btn-secondary:hover {
background-color: #40B59A;
border-color: #40B59A;
}
/* Footer */
.footer {
background-color: #FFFFFF;
padding: 2rem 0;
margin-top: 4rem;
border-top: 1px solid #EAEAEA;
text-align: center;
font-size: 0.9rem;
color: #666;
}