| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850 |
- :root {
- --color-text: #000000;
- --color-text-alt: #ffffff;
- --color-blu: #0618be;
- --color-viola: #7738fa;
- --color-viola-hover: #7738fa40;
- --color-lilla: #f6f7ff;
- --color-outile: #8979ff;
- --color-rosso: #d6234f;
- --color-verde: #339e8e;
- }
- /* General styles*/
- html,
- body {
- background-color: var(--color-lilla);
- color: var(--color-text);
- }
- body .btn--ui,
- body ul.pagination li .page-link,
- body #btn-back-to-top,
- body #btn-back-to-bottom {
- background-color: var(--color-blu) !important;
- font-weight: 600;
- border: 1px solid var(--color-blu);
- color: white;
- }
- body .btn--ui.primary {
- background-color: var(--color-blu) !important;
- }
- body .btn--ui.lightGrey,
- body .btn--ui.extraLightGrey {
- border-color: var(--color-blu);
- color: var(--color-blu);
- font-weight: 600;
- border-width: 1px;
- }
- body .btn--ui:hover,
- body .btn--ui.lightGrey:hover,
- body .btn--ui.extraLightGrey:hover,
- body ul.pagination li .page-link:hover,
- body ul.pagination li.active .page-link,
- body #btn-back-to-top:hover,
- body #btn-back-to-bottom:hover {
- background-color: var(--color-viola) !important;
- border-color: var(--color-viola);
- color: #ffffff;
- }
- body #card--dashboard > .btn--ui:has(i[class*="fa-arrow-left"]) {
- position: absolute;
- top: 0;
- margin: 0 !important;
- left: 0;
- border: none;
- padding: 10px;
- width: 40px;
- height: 40px;
- border-radius: 0 !important;
- }
- .modal-title {
- color: var(--color-text);
- }
- /* Login */
- .login--box .form--item label {
- width: 100%;
- }
- .login--box .form--item input.form-control {
- border-radius: 15px 0 0 15px !important;
- height: 40px;
- border: 1px solid #d3dce1 !important;
- }
- .login--box .form--item input.form-control:focus {
- box-shadow: none;
- }
- .login--box .form--item .input-group-text {
- border-radius: 0 15px 15px 0 !important;
- }
- /* Main content */
- body #card--dashboard {
- position: relative;
- }
- /* Hide popover locked on top left corner */
- .popover[data-popper-reference-hidden] {
- display: none;
- }
- /* Header */
- .header--gestionale {
- background-color: var(--color-blu);
- padding-block: 10px;
- }
- .header--gestionale_back {
- width: auto;
- }
- .header--gestionale_back button {
- border: none;
- background-color: transparent;
- color: white;
- outline: none;
- font-size: 30px;
- padding: 0;
- line-height: 1;
- }
- .header--gestionale_logo {
- width: auto;
- }
- .header--gestionale_pageTitle {
- width: unset;
- flex: 1;
- }
- .header--userprofile-icon {
- vertical-align: middle;
- width: 50px;
- height: 50px;
- border-radius: 12px;
- background-color: white;
- text-align: center;
- border: 2px solid var(--color-outile);
- }
- /* Sidebar */
- #open-filter,
- #close-filter {
- background-color: var(--color-blu);
- }
- #sidebar--wrapper #filter--section #accordionExample .accordion-header {
- margin-left: 5px;
- }
- #sidebar--wrapper #filter--section #accordionExample .accordion-button {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- justify-content: flex-start;
- align-items: baseline;
- gap: 5px;
- }
- #sidebar--wrapper #filter--section #accordionExample .accordion-button i {
- width: 30px;
- height: 30px;
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-content: center;
- justify-content: center;
- align-items: center;
- }
- #menu-anagrafica li a.nav-link,
- #menu-contabilita li a.nav-link,
- #menu-scadenze li a.nav-link,
- #menu-anagrafica li:hover a span,
- #menu-contabilita li:hover a span,
- #menu-scadenze li:hover a span {
- color: var(--color-text);
- }
- #accordionExample .accordion-item:hover,
- #menu-anagrafica li:hover,
- #menu-contabilita li:hover,
- #menu-scadenze li:hover {
- /* background-color: transparent; */
- background-color: var(--color-viola-hover);
- }
- #accordionExample .accordion-item.accordion-item-active,
- #accordionExample .accordion-item .nav-item.nav-item-active {
- background-color: var(--color-viola);
- color: #ffffff;
- }
- #accordionExample .accordion-item .nav-item.nav-item-active a span {
- color: #ffffff;
- }
- /* Resumee card anagrafica */
- .section--tab {
- border: none;
- }
- .section--tab h4 {
- border-color: var(--color-viola) !important;
- padding: 5px !important;
- text-transform: uppercase;
- font-weight: bold !important;
- color: black !important;
- }
- body #card--resume.card--ui,
- body #accountingEntry .accountingEntry_resume.card--ui {
- background: unset;
- background-color: var(--color-lilla);
- color: black;
- border: 1px solid var(--color-outile);
- border-radius: 15px;
- }
- body #card--resume.card--ui header,
- body #accountingEntry .accountingEntry_resume.card--ui > header {
- background: transparent;
- border: none;
- color: black;
- padding: 30px;
- padding-top: 35px;
- }
- body #card--resume.card--ui header span.user-name,
- body #card--resume.card--ui .card--resume_body .resume--tab_info h2,
- body #card--resume.card--ui .title--tessera_added span.title-detail,
- body #accountingEntry .accountingEntry_resume.card--ui > header span.primary {
- color: black;
- }
- body #card--resume.card--ui .card--resume_body .resume--tab_info h2 {
- font-size: 20px;
- line-height: 1;
- display: flex;
- align-items: center;
- gap: 20px;
- }
- body #card--resume.card--ui header span.user-name {
- font-size: 32px;
- line-height: 1;
- }
- body #card--resume.card--ui header span.user-email {
- color: black;
- opacity: 0.8;
- }
- body #card--resume.card--ui .card--resume_body .user-address li,
- body #card--resume.card--ui .card--resume_body .user-residence li {
- gap: 22px;
- align-items: center;
- margin-bottom: 15px;
- }
- body #card--resume.card--ui .card--resume_body .user-address li i,
- body #card--resume.card--ui .card--resume_body .user-residence li i,
- body #card--resume.card--ui .card--resume_body .resume--tab_info h2 i {
- font-size: 20px;
- width: 20px;
- height: 20px;
- color: var(--color-viola);
- margin: 0;
- }
- body #accountingEntry .accountingEntry_resume.card--ui .username > i {
- color: var(--color-viola);
- }
- body #card--resume.card--ui .card--resume_body .resume--tab_info ul {
- padding-left: 55px;
- }
- body #card--resume.card--ui .card--resume_body .resume--tab_info ul li::marker {
- color: var(--color-viola);
- }
- body #card--resume.card--ui .card--resume_body .resume--tab_info .resume-corso,
- body
- #card--resume.card--ui
- .card--resume_body
- .resume--tab_info
- .resume-certificato,
- body
- #card--resume.card--ui
- .card--resume_body
- .resume--tab_info
- .resume-tessera {
- border-left: 2px solid var(--color-viola);
- padding-left: 15px;
- margin-left: 42px;
- margin-bottom: 10px;
- }
- /* Form */
- body .title-form.primary {
- margin-top: 50px;
- }
- body label,
- body label.form-label {
- margin: 0;
- color: black;
- }
- body .form-control,
- body form .form-control,
- body .form-select,
- body form .form-select,
- body .select2-selection,
- body form .select2-selection,
- body input.form-control[type="search"],
- body .btn.dropdown-toggle {
- border-radius: 15px !important;
- height: 40px !important;
- border: 1px solid #d3dce1 !important;
- background-color: #f5f8fa !important;
- }
- body .form-check-input,
- body form .form-check-input {
- height: 20px !important;
- width: 20px !important;
- border-radius: 5px !important;
- padding: 0 !important;
- }
- body .form-check-input:checked[type="checkbox"],
- body
- form
- .form-check-input:checked[type="checkbox"]
- body
- .form-check-input:checked[type="radio"],
- body form .form-check-input:checked[type="radio"] {
- background-color: var(--color-blu) !important;
- }
- body .form-select[multiple] {
- color: transparent;
- }
- body .form-select {
- padding-block: 10px;
- }
- /* contabilità uscite */
- #accountingExit .accountingExit_data {
- width: 100%;
- }
- /* dashboard */
- body .dashboard-container {
- background: var(--color-lilla);
- height: calc(100dvh - 86px);
- min-height: calc(100dvh - 86px);
- overflow: auto;
- display: flex;
- flex-direction: column;
- flex-wrap: nowrap;
- gap: 20px;
- padding: 2.5rem !important;
- background: white;
- }
- body .dashboard-container .dashboard-card {
- border: 1px solid var(--color-outile);
- border-radius: 12px;
- padding: 20px;
- position: relative;
- box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06), 0 3px 6px rgba(0, 0, 0, 0.13);
- }
- body .dashboard-container .dashboard-card.card-inverted {
- border-color: var(--color-lilla);
- background-color: var(--color-lilla);
- }
- body .dashboard-container .dashboard-card-header {
- display: flex;
- justify-content: space-between;
- align-items: baseline;
- margin-bottom: 10px;
- }
- body .dashboard-container .dashboard-card-title {
- font-size: 17px;
- font-weight: bold;
- color: black;
- line-height: 1;
- margin-bottom: 10px;
- }
- body .dashboard-container .dashboard-card-icon {
- color: var(--color-viola);
- font-size: 20px;
- }
- body .dashboard-container .dashboard-card-value {
- font-size: 48px;
- font-weight: bold;
- color: black;
- margin: 20px 0 5px;
- line-height: 1;
- }
- body .dashboard-container .card-income .dashboard-card-icon,
- body .dashboard-container .card-income .dashboard-card-value {
- color: var(--color-verde);
- }
- body .dashboard-container .card-expense .dashboard-card-icon,
- body .dashboard-container .card-expense .dashboard-card-value {
- color: var(--color-rosso);
- }
- body .dashboard-container .card-delta .dashboard-card-icon,
- body .dashboard-container .card-delta .dashboard-card-value {
- color: var(--color-viola);
- }
- body .dashboard-container .card-income .dashboard-card-value,
- body .dashboard-container .card-expense .dashboard-card-value,
- body .dashboard-container .card-delta .dashboard-card-value {
- font-size: 30px;
- }
- body .dashboard-container .dashboard-card-info {
- font-size: 14px;
- }
- body .dashboard-container .dashboard-card-info span {
- position: relative;
- font-weight: 500;
- }
- body .dashboard-container .dashboard-card-info .more {
- color: var(--color-verde);
- }
- body .dashboard-container .dashboard-card-info .more:before {
- content: "+";
- }
- body .dashboard-container .dashboard-card-info .less {
- color: var(--color-rosso);
- }
- body .dashboard-container .dashboard-card-info .less:before {
- content: "-";
- }
- body .dashboard-container .dashboard-card-change {
- font-size: 12px;
- color: #666;
- }
- body .dashboard-container .dashboard-card-change.positive {
- color: var(--color-verde);
- }
- body .dashboard-container .dashboard-card-change.negative {
- color: var(--color-rosso);
- }
- body .dashboard-container .stat-icon {
- width: 24px;
- height: 24px;
- border-radius: 4px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: white;
- font-size: 12px;
- }
- body .dashboard-container .courses-list {
- max-height: 300px;
- overflow-y: auto;
- }
- body .dashboard-container .course-item {
- padding: 12px;
- border-left: 4px solid var(--color-viola);
- margin-bottom: 8px;
- background: #f6f7ff;
- border-radius: 0 8px 8px 0;
- }
- body .dashboard-container .course-time {
- font-weight: bold;
- color: #333;
- font-size: 14px;
- }
- body .dashboard-container .course-name {
- font-size: 13px;
- color: var(--color-viola);
- font-weight: 600;
- }
- body .dashboard-container .course-days {
- font-size: 12px;
- color: #666;
- }
- body .dashboard-container .fields-grid {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 10px;
- }
- body .dashboard-container .field-item {
- padding: 12px;
- border: 2px solid var(--color-verde);
- border-radius: 8px;
- text-align: center;
- background: white;
- }
- body .dashboard-container .field-item.occupied {
- border-color: var(--color-rosso);
- background: #fff5f7;
- }
- body .dashboard-container .field-name {
- font-weight: bold;
- color: #333;
- }
- body .dashboard-container .field-time {
- color: #666;
- font-size: 12px;
- }
- body .dashboard-container .notes-section {
- }
- body .dashboard-container .notes-input {
- width: 100%;
- background-color: white;
- outline: none;
- font-size: 14px;
- min-height: 50px;
- resize: vertical;
- border: none;
- border-radius: 6px;
- padding: 10px;
- }
- body .dashboard-container .save-btn {
- background-color: transparent;
- color: var(--color-viola);
- border: none;
- padding: 8px 16px;
- border-radius: 6px;
- font-size: 12px;
- cursor: pointer;
- font-weight: bold;
- margin-left: auto;
- display: block;
- will-change: color, background-color;
- transition: color 0.3s ease, background-color 0.3s ease;
- }
- body .dashboard-container .save-btn:hover {
- background-color: var(--color-viola);
- color: white;
- }
- body .dashboard-container .notes-list {
- max-height: 200px;
- overflow-y: auto;
- }
- body .dashboard-container .notes-list:not(:empty) {
- margin-block: 25px;
- }
- body .dashboard-container .note-item {
- display: flex;
- align-items: flex-start;
- gap: 10px;
- padding-bottom: 10px;
- margin-bottom: 20px;
- border-bottom: 1px solid rgba(0, 0, 0, 35%);
- }
- body .dashboard-container .note-item:last-of-type {
- margin-bottom: 0;
- }
- body .dashboard-container .note-checkbox {
- width: 14px;
- height: 14px;
- border: 1px solid rgba(0, 0, 0, 35%);
- border-radius: 100%;
- background: transparent;
- color: transparent;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 12px;
- font-weight: bold;
- will-change: color, background-color;
- transition: color 0.3s ease, background-color 0.3s ease;
- }
- body .dashboard-container .note-checkbox:hover {
- background: var(--color-viola);
- color: white;
- }
- body .dashboard-container .note-content {
- flex: 1;
- }
- body .dashboard-container .note-text {
- color: black;
- font-size: 14px;
- line-height: 1;
- font-weight: 500;
- }
- body .dashboard-container .note-date {
- color: black;
- font-size: 10px;
- }
- body .dashboard-container .empty-notes {
- text-align: center;
- color: #666;
- font-size: 13px;
- padding: 20px;
- font-style: italic;
- }
- body .dashboard-container .chart-card .chart-container {
- grid-column: unset;
- }
- body .dashboard-container .financial-cards {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 20px;
- margin-bottom: 20px;
- }
- body .dashboard-container .financial-card {
- background: white;
- border-radius: 12px;
- padding: 20px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
- text-align: center;
- }
- body .dashboard-container .financial-card.income {
- border-left: 4px solid var(--color-verde);
- }
- body .dashboard-container .financial-card.expense {
- border-left: 4px solid var(--color-rosso);
- }
- body .dashboard-container .financial-amount {
- font-size: 36px;
- font-weight: bold;
- margin: 10px 0;
- }
- body .dashboard-container .financial-amount.income {
- color: var(--color-verde);
- }
- body .dashboard-container .financial-amount.expense {
- color: var(--color-rosso);
- }
- body .dashboard-container .recent-users-table {
- width: 100%;
- border-collapse: collapse;
- margin-top: 20px;
- }
- body .dashboard-container .recent-users-table th,
- body .dashboard-container .recent-users-table td {
- text-align: left;
- padding: 10px 5px;
- border-bottom: 1px solid #f0f0f0;
- }
- body .dashboard-container .recent-users-table th {
- font-weight: bold;
- color: var(--color-text);
- font-size: 15px;
- padding: 5px;
- }
- body .dashboard-container .recent-users-table td {
- font-size: 13px;
- color: black;
- }
- body .dashboard-container .transaction-list {
- max-height: 300px;
- overflow-y: auto;
- }
- body .dashboard-container .transaction-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 12px;
- border-bottom: 1px solid #f0f0f0;
- }
- body .dashboard-container .transaction-name {
- font-weight: 500;
- color: #333;
- }
- body .dashboard-container .transaction-amount {
- font-weight: bold;
- }
- body .dashboard-container .transaction-type {
- font-size: 10px;
- padding: 4px 8px;
- border-radius: 12px;
- color: white;
- font-weight: bold;
- }
- body .dashboard-container .transaction-type.income {
- background: var(--color-verde);
- }
- body .dashboard-container .transaction-type.expense {
- background: var(--color-rosso);
- }
- body .dashboard-container .participation-bar {
- height: 10px;
- background: #f0f0f0;
- border-radius: 10px;
- overflow: hidden;
- margin: 8px 0;
- }
- body .dashboard-container .participation-fill {
- height: 100%;
- transition: width 0.3s ease;
- border-radius: 10px;
- }
- body .dashboard-container .participation-fill.padel {
- background: #ffd700;
- }
- body .dashboard-container .participation-fill.tennis {
- background: #8b4cf7;
- }
- body .dashboard-container .participation-fill.pallavolo {
- background: #ff6b35;
- }
- body .dashboard-container .participation-fill.yoga {
- background: var(--color-verde);
- }
- body .dashboard-container .chart-title {
- font-size: 16px;
- font-weight: 600;
- color: #333;
- margin-bottom: 15px;
- }
- body .dashboard-container .grid-4 {
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- gap: 20px;
- }
- body .dashboard-container .grid-3 {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- gap: 20px;
- }
- body .dashboard-container .grid-2 {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 20px;
- }
- body .dashboard-container .grid-2-1 {
- display: grid;
- grid-template-columns: 2fr 1fr;
- gap: 20px;
- }
- body .dashboard-container .grid-w-2 {
- grid-column-end: span 2;
- }
- body .dashboard-container .grid-w-3 {
- grid-column-end: span 3;
- }
- body .dashboard-container .full-width {
- grid-column: span 3;
- }
- body .dashboard-container .half-width {
- grid-column: span 2;
- }
- body .dashboard-container .fade-out {
- opacity: 0;
- transform: translateX(100%);
- transition: all 0.3s ease;
- }
- body div.dt-button-background {
- pointer-events: none;
- }
- body .chart-body {
- padding: 0;
- }
- body .table-header .table-cell {
- color: var(--color-text);
- }
- body .course-controls {
- border: none;
- background: unset;
- background-color: var(--color-lilla);
- padding-block: 15px;
- border-radius: 10px;
- }
- body .dashboard-container .chart-card .dashboard-card-title {
- margin-bottom: 20px;
- }
|