378 lines
7.0 KiB
CSS
378 lines
7.0 KiB
CSS
/* Custom styles for the application */
|
|
|
|
/* Global Styles */
|
|
:root {
|
|
--primary-color: #28a745;
|
|
--secondary-color: #6c757d;
|
|
--success-color: #28a745;
|
|
--warning-color: #ffc107;
|
|
--danger-color: #dc3545;
|
|
--info-color: #17a2b8;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Card Animations */
|
|
.card {
|
|
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
border: none;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
|
|
}
|
|
|
|
/* Button Animations */
|
|
.btn {
|
|
transition: all 0.3s;
|
|
border-radius: 25px;
|
|
padding: 10px 25px;
|
|
font-weight: 500;
|
|
letter-spacing: 0.5px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.btn::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 5px;
|
|
height: 5px;
|
|
background: rgba(255, 255, 255, 0.5);
|
|
opacity: 0;
|
|
border-radius: 100%;
|
|
transform: scale(1, 1) translate(-50%);
|
|
transform-origin: 50% 50%;
|
|
}
|
|
|
|
.btn:focus:not(:active)::after {
|
|
animation: ripple 1s ease-out;
|
|
}
|
|
|
|
@keyframes ripple {
|
|
0% {
|
|
transform: scale(0, 0);
|
|
opacity: 0.5;
|
|
}
|
|
20% {
|
|
transform: scale(25, 25);
|
|
opacity: 0.3;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
transform: scale(40, 40);
|
|
}
|
|
}
|
|
|
|
.btn-success {
|
|
background: linear-gradient(45deg, #28a745, #20c997);
|
|
border: none;
|
|
box-shadow: 0 4px 15px 0 rgba(40, 167, 69, 0.75);
|
|
}
|
|
|
|
.btn-warning {
|
|
background: linear-gradient(45deg, #ffc107, #fd7e14);
|
|
border: none;
|
|
color: white;
|
|
box-shadow: 0 4px 15px 0 rgba(255, 193, 7, 0.75);
|
|
}
|
|
|
|
/* Navbar Styles */
|
|
.navbar {
|
|
background: linear-gradient(90deg, #28a745, #20c997) !important;
|
|
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-size: 1.8rem;
|
|
font-weight: bold;
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.nav-link {
|
|
position: relative;
|
|
margin: 0 5px;
|
|
padding: 10px 15px !important;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.nav-link::before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 2px;
|
|
background: white;
|
|
transition: all 0.3s;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.nav-link:hover::before,
|
|
.nav-link.active::before {
|
|
width: 80%;
|
|
}
|
|
|
|
/* Alert Animations */
|
|
.alert {
|
|
border-radius: 10px;
|
|
animation: slideIn 0.5s ease-out;
|
|
}
|
|
|
|
@keyframes slideIn {
|
|
from {
|
|
transform: translateY(-100%);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
/* Form Styles */
|
|
.form-control, .form-select {
|
|
border-radius: 25px;
|
|
border: 2px solid #e0e0e0;
|
|
padding: 12px 20px;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.form-control:focus, .form-select:focus {
|
|
border-color: #28a745;
|
|
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
/* Table Styles */
|
|
.table {
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.table thead th {
|
|
background: linear-gradient(45deg, #28a745, #20c997);
|
|
color: white;
|
|
font-weight: 500;
|
|
border: none;
|
|
padding: 15px;
|
|
}
|
|
|
|
.table tbody tr {
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.table tbody tr:hover {
|
|
background-color: rgba(40, 167, 69, 0.1);
|
|
transform: scale(1.01);
|
|
}
|
|
|
|
/* Progress Bar */
|
|
.progress {
|
|
height: 30px;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.progress-bar {
|
|
background: linear-gradient(90deg, #28a745, #20c997);
|
|
color: white;
|
|
line-height: 30px;
|
|
font-weight: 500;
|
|
transition: width 1s ease-in-out;
|
|
}
|
|
|
|
.progress-bar-striped {
|
|
background-image: linear-gradient(45deg,
|
|
rgba(255,255,255,.15) 25%,
|
|
transparent 25%,
|
|
transparent 50%,
|
|
rgba(255,255,255,.15) 50%,
|
|
rgba(255,255,255,.15) 75%,
|
|
transparent 75%,
|
|
transparent);
|
|
background-size: 1rem 1rem;
|
|
animation: progress-bar-stripes 1s linear infinite;
|
|
}
|
|
|
|
@keyframes progress-bar-stripes {
|
|
from { background-position: 1rem 0; }
|
|
to { background-position: 0 0; }
|
|
}
|
|
|
|
/* Badge Styles */
|
|
.badge {
|
|
padding: 8px 12px;
|
|
border-radius: 25px;
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
50% {
|
|
transform: scale(1.05);
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
/* Loading Spinner */
|
|
.spinner-border {
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: linear-gradient(90deg, #2c3e50, #3498db) !important;
|
|
color: white;
|
|
margin-top: 50px;
|
|
padding: 40px 0 20px;
|
|
}
|
|
|
|
.footer a {
|
|
color: #ffc107;
|
|
text-decoration: none;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.footer a:hover {
|
|
color: white;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
/* Custom Animations */
|
|
.fade-in {
|
|
animation: fadeIn 1s ease-in;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; transform: translateY(20px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.bounce {
|
|
animation: bounce 2s infinite;
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
|
|
40% { transform: translateY(-30px); }
|
|
60% { transform: translateY(-15px); }
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.navbar-brand {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.btn {
|
|
padding: 8px 15px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
|
|
/* Print Styles */
|
|
@media print {
|
|
.navbar, .footer, .btn, .no-print {
|
|
display: none !important;
|
|
}
|
|
|
|
body {
|
|
background: white;
|
|
}
|
|
|
|
.card {
|
|
box-shadow: none;
|
|
border: 1px solid #ddd;
|
|
}
|
|
}
|
|
|
|
/* Scrollbar Styles */
|
|
::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: linear-gradient(45deg, #28a745, #20c997);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: linear-gradient(45deg, #218838, #1e7e34);
|
|
}
|
|
|
|
/* Custom Classes */
|
|
.text-gradient {
|
|
background: linear-gradient(45deg, #28a745, #20c997);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.bg-gradient-success {
|
|
background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
|
|
}
|
|
|
|
.bg-gradient-warning {
|
|
background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
|
|
}
|
|
|
|
.shadow-hover {
|
|
transition: box-shadow 0.3s;
|
|
}
|
|
|
|
.shadow-hover:hover {
|
|
box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
|
|
}
|
|
|
|
.rounded-xl {
|
|
border-radius: 20px !important;
|
|
}
|
|
|
|
.rounded-top-xl {
|
|
border-top-left-radius: 20px !important;
|
|
border-top-right-radius: 20px !important;
|
|
}
|
|
|
|
.rounded-bottom-xl {
|
|
border-bottom-left-radius: 20px !important;
|
|
border-bottom-right-radius: 20px !important;
|
|
} |