38 lines
703 B
CSS
38 lines
703 B
CSS
body {
|
|
background: linear-gradient(to right, #2196F3, #64b5f6) !important;
|
|
color: #212529;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: 'Roboto Slab', serif;
|
|
}
|
|
|
|
.card {
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
border: none;
|
|
color: #212529;
|
|
}
|
|
|
|
.list-group-item {
|
|
background-color: transparent;
|
|
border-color: rgba(0, 0, 0, 0.125);
|
|
color: #212529;
|
|
}
|
|
|
|
a.list-group-item:hover {
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.navbar {
|
|
background-color: rgba(255, 255, 255, 0.3) !important;
|
|
}
|
|
|
|
.nav-link {
|
|
color: #212529 !important;
|
|
}
|
|
|
|
/* Stile per l'intestazione della tabella clienti */
|
|
.table > thead {
|
|
background-color: #E9ECEF !important; /* Bootstrap light grey */
|
|
}
|