111 lines
2.9 KiB
CSS
111 lines
2.9 KiB
CSS
@import "tailwindcss";
|
|
@source "../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php";
|
|
|
|
@theme {
|
|
--color-primary: #130f26;
|
|
--color-success: #16a34a;
|
|
--color-danger: #dc2626;
|
|
--color-warning: #eab308;
|
|
|
|
--font-sans: "Inter", sans-serif;
|
|
--shadow-glow: 0 0 15px rgba(19, 15, 38, 0.15);
|
|
--shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
|
|
--shadow-card: 0 2px 12px -2px rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
body {
|
|
font-family: "Inter", sans-serif !important;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #cbd5e1;
|
|
border-radius: 4px;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #94a3b8;
|
|
}
|
|
|
|
div:where(.swal2-container) * {
|
|
font-family: "Inter", sans-serif !important;
|
|
}
|
|
|
|
div:where(.swal2-container) div:where(.swal2-popup):not(.swal2-toast) {
|
|
border-radius: 20px !important;
|
|
padding: 32px !important;
|
|
box-shadow:
|
|
0 0 0 1px rgba(0, 0, 0, 0.05),
|
|
0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
|
|
background: #fff !important;
|
|
width: 32em !important;
|
|
max-width: 90% !important;
|
|
}
|
|
|
|
div:where(.swal2-container).swal2-backdrop-show {
|
|
background: transparent !important;
|
|
backdrop-filter: none !important;
|
|
}
|
|
|
|
div:where(.swal2-container) .swal2-title,
|
|
div:where(.swal2-container) .swal2-html-container {
|
|
font-family: "Inter", sans-serif !important;
|
|
}
|
|
div:where(.swal2-container) .swal2-title {
|
|
font-size: 1.5rem !important;
|
|
color: #1e293b !important;
|
|
padding-top: 1rem !important;
|
|
}
|
|
|
|
div:where(.swal2-container) .swal2-actions {
|
|
width: 100% !important;
|
|
margin-top: 2rem !important;
|
|
gap: 1rem !important;
|
|
}
|
|
|
|
div:where(.swal2-container) button.swal2-confirm,
|
|
div:where(.swal2-container) button.swal2-cancel {
|
|
flex: 1 !important;
|
|
display: inline-flex !important;
|
|
align-items: center !important;
|
|
justify-content: center !important;
|
|
padding: 12px 24px !important;
|
|
border-radius: 12px !important;
|
|
font-weight: 600 !important;
|
|
font-size: 0.95rem !important;
|
|
transition: all 0.2s ease !important;
|
|
box-shadow: none !important;
|
|
border: none !important;
|
|
cursor: pointer !important;
|
|
}
|
|
|
|
div:where(.swal2-container) button.swal2-confirm {
|
|
background-color: #ef4444 !important;
|
|
color: white !important;
|
|
}
|
|
div:where(.swal2-container) button.swal2-confirm:hover {
|
|
background-color: #dc2626 !important;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
|
|
}
|
|
|
|
div:where(.swal2-container) button.swal2-cancel {
|
|
background-color: #f1f5f9 !important;
|
|
color: #64748b !important;
|
|
}
|
|
div:where(.swal2-container) button.swal2-cancel:hover {
|
|
background-color: #e2e8f0 !important;
|
|
color: #475569 !important;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
div:where(.swal2-icon) {
|
|
border-width: 3px !important;
|
|
transform: scale(0.9);
|
|
}
|