new project commit
This commit is contained in:
@@ -13,10 +13,145 @@
|
||||
<link href="assets/css/app.css" rel="stylesheet">
|
||||
<link href="assets/css/icons.css" rel="stylesheet">
|
||||
<!-- Theme Style CSS -->
|
||||
<link rel="stylesheet" href="assets/css/dark-theme.css" />
|
||||
<link rel="stylesheet" href="assets/css/semi-dark.css" />
|
||||
<link rel="stylesheet" href="assets/css/header-colors.css" />
|
||||
<!-- <link rel="stylesheet" href="assets/css/dark-theme.css" />
|
||||
<link rel="stylesheet" href="assets/css/semi-dark.css" />
|
||||
<link rel="stylesheet" href="assets/css/header-colors.css" /> -->
|
||||
<!-- Font awesome -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
|
||||
<!-- SweetAlert2 -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
||||
<!-- Override temporaneo per tema chiaro pastello -->
|
||||
<style>
|
||||
/* ======= HEADER (barra superiore) ======= */
|
||||
.top-header {
|
||||
background-color: #a4c4fdff !important;
|
||||
/* azzurro pastello */
|
||||
color: #1f2d3d !important;
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
|
||||
}
|
||||
|
||||
.top-header .nav-link,
|
||||
.top-header .navbar-brand,
|
||||
.top-header .navbar-nav .nav-item a,
|
||||
.top-header .dropdown-item {
|
||||
color: #1a2a3b !important;
|
||||
font-weight: 500 !important;
|
||||
}
|
||||
|
||||
.top-header .nav-link:hover,
|
||||
.top-header .navbar-nav .nav-item a:hover,
|
||||
.top-header .dropdown-item:hover {
|
||||
color: #0b5ed7 !important;
|
||||
}
|
||||
|
||||
/* ======= SIDEBAR (menu laterale) ======= */
|
||||
.sidebar-wrapper {
|
||||
background-color: #dfebffff !important;
|
||||
/* grigio chiaro con tono bluastro */
|
||||
color: #2b3e50 !important;
|
||||
box-shadow: inset -2px 0 5px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.sidebar-wrapper .metismenu a {
|
||||
color: #2b3e50 !important;
|
||||
font-weight: 500 !important;
|
||||
border-radius: 6px !important;
|
||||
padding: 10px 14px !important;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .metismenu a:hover,
|
||||
.sidebar-wrapper .metismenu .mm-active>a {
|
||||
background-color: #d6e4ff !important;
|
||||
/* azzurro più deciso al passaggio */
|
||||
color: #0d6efd !important;
|
||||
}
|
||||
|
||||
/* ======= CORPO PAGINA ======= */
|
||||
body {
|
||||
background-color: #f8fafc !important;
|
||||
color: #2b3e50 !important;
|
||||
}
|
||||
|
||||
.card,
|
||||
.form-container,
|
||||
.table-container {
|
||||
background-color: #ffffff !important;
|
||||
border: 1px solid #e2e8f0 !important;
|
||||
}
|
||||
|
||||
/* Pulsanti principali coerenti */
|
||||
.btn-primary,
|
||||
.btn-submit {
|
||||
background-color: #0d6efd !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.btn-primary:hover,
|
||||
.btn-submit:hover {
|
||||
background-color: #0b5ed7 !important;
|
||||
}
|
||||
|
||||
/* Navbar icone (se presenti) */
|
||||
.top-header i {
|
||||
color: #1f2d3d !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<style>
|
||||
/* ======= TOPBAR (barra superiore, con menu e profilo utente) ======= */
|
||||
.topbar {
|
||||
background-color: #a4c4fdff !important;
|
||||
/* azzurro pastello */
|
||||
color: #1f2d3d !important;
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
|
||||
}
|
||||
|
||||
.topbar .nav-link,
|
||||
.topbar .navbar-nav .nav-item a,
|
||||
.topbar .navbar-brand,
|
||||
.topbar .dropdown-item {
|
||||
color: #1f2d3d !important;
|
||||
font-weight: 500 !important;
|
||||
}
|
||||
|
||||
.topbar .nav-link:hover,
|
||||
.topbar .navbar-nav .nav-item a:hover,
|
||||
.topbar .dropdown-item:hover {
|
||||
color: #0d6efd !important;
|
||||
background-color: rgba(255, 255, 255, 0.3) !important;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.topbar .user-box .user-info p {
|
||||
color: #1f2d3d !important;
|
||||
}
|
||||
|
||||
.topbar .dropdown-menu {
|
||||
border-radius: 8px !important;
|
||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
|
||||
}
|
||||
|
||||
/* ======= SIDEBAR HEADER (logo + titolo) ======= */
|
||||
.sidebar-header {
|
||||
background-color: #a4c4fdff !important;
|
||||
/* leggermente più scuro per separare dal resto */
|
||||
color: #1f2d3d !important;
|
||||
border-bottom: 1px solid #a8c5f9 !important;
|
||||
}
|
||||
|
||||
.sidebar-header .logo-text {
|
||||
color: #1f2d3d !important;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
|
||||
.sidebar-header .toggle-icon i {
|
||||
color: #1f2d3d !important;
|
||||
}
|
||||
|
||||
/* ======= ICONCINE GENERICHE ======= */
|
||||
.bx,
|
||||
.fa {
|
||||
color: #1f2d3d !important;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user