70 lines
1.6 KiB
CSS
70 lines
1.6 KiB
CSS
/* Import Google Font */
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
|
|
|
:root {
|
|
--primary-color: #335EEA;
|
|
--secondary-color: #6C757D;
|
|
--bg-light: #F8F9FA;
|
|
--surface-white: #FFFFFF;
|
|
--text-dark: #212529;
|
|
--border-radius: 8px;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: var(--bg-light);
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
.navbar-brand span {
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(135deg, #335EEA 0%, #214099 100%);
|
|
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://picsum.photos/seed/hr-hero/1600/400');
|
|
background-size: cover;
|
|
background-position: center;
|
|
padding: 6rem 0;
|
|
}
|
|
|
|
.job-card {
|
|
background-color: var(--surface-white);
|
|
border: 1px solid #e9ecef;
|
|
border-radius: var(--border-radius);
|
|
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 24px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--primary-color);
|
|
border-color: var(--primary-color);
|
|
border-radius: var(--border-radius);
|
|
padding: 0.5rem 1.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #214099;
|
|
border-color: #214099;
|
|
}
|
|
|
|
.form-control {
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.form-control:focus {
|
|
box-shadow: 0 0 0 0.25rem rgba(51, 94, 234, 0.25);
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
.img-fluid {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|