35716-vm/assets/css/custom.css
Flatlogic Bot ed50444c87 TTP.1
2025-11-14 14:12:15 +00:00

70 lines
1.3 KiB
CSS

/* Custom Styles for TeaTime Payroll */
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: #F9FAFB;
}
.navbar {
box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.navbar-brand {
color: #4F46E5 !important;
}
.btn-primary {
background-color: #4F46E5;
border-color: #4F46E5;
border-radius: 0.5rem;
padding: 0.75rem 1.5rem;
}
.btn-primary:hover {
background-color: #4338CA;
border-color: #4338CA;
}
.hero-section {
padding: 10rem 0;
background: linear-gradient(135deg, #4f46e5, #10b981);
}
#features .card {
border-radius: 0.5rem;
transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
}
#features .card:hover {
transform: translateY(-5px);
box-shadow: 0 0.5rem 1rem rgba(0,0,0,.1) !important;
}
.text-primary {
color: #4F46E5 !important;
}
/* Dashboard */
.dashboard-header {
background-color: #FFFFFF;
box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.card-dashboard {
border-radius: 0.5rem;
border: 1px solid #e5e7eb;
box-shadow: 0 1px 3px 0 rgba(0,0,0,.05);
}
.form-switch .form-check-input {
width: 3.5em;
height: 1.75em;
cursor: pointer;
}
.form-switch .form-check-input:disabled {
cursor: not-allowed;
background-color: #e9ecef;
opacity: .7;
}