76 lines
2.0 KiB
CSS
76 lines
2.0 KiB
CSS
/* 1. Importar fuente Montserrat */
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');
|
|
|
|
/* 2. Importar Tailwind (v4) */
|
|
@import "tailwindcss";
|
|
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
|
|
@source '../../storage/framework/views/*.php';
|
|
@source '../**/*.blade.php';
|
|
@source '../**/*.js';
|
|
|
|
/* 3. Configuración del Tema (NUEVO EN v4) */
|
|
@theme {
|
|
/* Definimos el color personalizado 'dark-bg' */
|
|
--color-dark-bg: #121212;
|
|
/* TRADUCCIÓN: fontFamily: { sans: [...] } */
|
|
--font-sans: 'Montserrat', sans-serif;
|
|
|
|
/* TRADUCCIÓN: colors: { ... }
|
|
La sintaxis es: --color-nombre-del-color: valor;
|
|
*/
|
|
--color-neon-lime: #ccff00;
|
|
--color-dark-bg: #1a1a1a;
|
|
--color-panel-bg: #242424;
|
|
}
|
|
|
|
/* 4. Patrón de fondo estilo "Técnico" */
|
|
.bg-grid-pattern {
|
|
/* CAMBIO: Usamos rgba(255,255,255, 0.1) para que las líneas sean claras sobre fondo oscuro */
|
|
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
|
|
background-size: 40px 40px;
|
|
background-position: center;
|
|
}
|
|
|
|
/* 5. Personalización del Scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #1a1a1a;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #444;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #ccff00; /* Verde Neón */
|
|
}
|
|
|
|
.fc .fc-button-primary {
|
|
background-color: #ccff00 !important; /* neon lime */
|
|
border-color: #ccff00 !important;
|
|
color: #000 !important;
|
|
}
|
|
|
|
.fc .fc-button-primary:hover {
|
|
background-color: #b3e600 !important;
|
|
border-color: #b3e600 !important;
|
|
}
|
|
|
|
.fc .fc-button-primary:disabled {
|
|
background-color: #444 !important;
|
|
border-color: #444 !important;
|
|
color: #aaa !important;
|
|
}
|
|
|
|
.fc-daygrid-event-dot {
|
|
display: none;
|
|
}
|
|
|
|
import '@fullcalendar/core/index.css'
|
|
import '@fullcalendar/daygrid/index.css' |