new_style.css 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090
  1. :root {
  2. --color-text: #000000;
  3. --color-text-alt: #ffffff;
  4. --color-blu: #0618be;
  5. --color-viola: #7738fa;
  6. --color-viola-hover: #7738fa40;
  7. --color-lilla: #f6f7ff;
  8. --color-outile: #8979ff;
  9. --color-rosso: #d6234f;
  10. --color-verde: #339e8e;
  11. --color-arancione: #ffb624;
  12. }
  13. ::-webkit-scrollbar {
  14. width: 0.325rem;
  15. }
  16. /* General styles*/
  17. html,
  18. body {
  19. background-color: var(--color-lilla);
  20. color: var(--color-text);
  21. }
  22. body .btn--ui,
  23. body ul.pagination li .page-link,
  24. body #btn-back-to-top,
  25. body #btn-back-to-bottom {
  26. background-color: var(--color-blu) !important;
  27. font-weight: 600;
  28. border: 1px solid var(--color-blu);
  29. color: white;
  30. }
  31. body .btn--ui.primary {
  32. background-color: var(--color-blu) !important;
  33. }
  34. body .btn--ui.lightGrey,
  35. body .btn--ui.extraLightGrey {
  36. border-color: var(--color-blu);
  37. color: var(--color-blu);
  38. font-weight: 600;
  39. border-width: 1px;
  40. }
  41. body .btn--ui:hover,
  42. body .btn--ui.lightGrey:hover,
  43. body .btn--ui.extraLightGrey:hover,
  44. body ul.pagination li .page-link:hover,
  45. body ul.pagination li.active .page-link,
  46. body #btn-back-to-top:hover,
  47. body #btn-back-to-bottom:hover {
  48. background-color: var(--color-viola) !important;
  49. border-color: var(--color-viola);
  50. color: #ffffff;
  51. }
  52. body #card--dashboard > .btn--ui:has(i[class*="fa-arrow-left"]) {
  53. position: absolute;
  54. top: 0;
  55. margin: 0 !important;
  56. left: 0;
  57. border: none;
  58. padding: 10px;
  59. width: 40px;
  60. height: 40px;
  61. border-radius: 0 !important;
  62. }
  63. .modal-title {
  64. color: var(--color-text);
  65. }
  66. /* Login */
  67. .login--box .form--item label {
  68. width: 100%;
  69. }
  70. .login--box .form--item input.form-control {
  71. border-radius: 15px 0 0 15px !important;
  72. height: 40px;
  73. border: 1px solid #d3dce1 !important;
  74. }
  75. .login--box .form--item input.form-control:focus {
  76. box-shadow: none;
  77. }
  78. .login--box .form--item .input-group-text {
  79. border-radius: 0 15px 15px 0 !important;
  80. }
  81. body .ico--ui.mail {
  82. background-image: none;
  83. mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; %7D %3C/style%3E%3C/defs%3E%3Cg%3E%3Cg id='Livello_1'%3E%3Cg id='Raggruppa_308'%3E%3Crect id='Rettangolo_433' class='cls-1' width='16' height='16'/%3E%3Cpath id='Unione_3' fill='%230C6197' class='cls-2' d='M0,5.3c0-1.8,1.5-3.3,3.3-3.3h9.3c1.8,0,3.3,1.5,3.3,3.3v5.3c0,1.8-1.5,3.3-3.3,3.3H3.3c-1.8,0-3.3-1.5-3.3-3.3v-5.3ZM12.7,3.3H3.3c-1.1,0-2,.9-2,2v5.3c0,1.1.9,2,2,2h9.3c1.1,0,2-.9,2-2v-5.3c0-1.1-.9-2-2-2ZM5.1,8.2c.3-.3.7-.3.9,0,0,0,0,0,0,0,.3.3.3.7,0,.9h0s-1.9,1.9-1.9,1.9c-.3.3-.7.3-.9,0,0,0,0,0,0,0-.3-.3-.3-.7,0-.9h0s1.9-1.9,1.9-1.9ZM12.6,10.1h0c.3.3.3.7,0,.9,0,0,0,0,0,0-.3.3-.7.3-.9,0l-1.9-1.9h0c-.3-.3-.3-.7,0-.9,0,0,0,0,0,0,.3-.3.7-.3.9,0l1.9,1.9ZM7.2,8c-.5,0-1-.2-1.4-.6l-1.9-1.9c-.3-.3-.3-.7,0-.9,0,0,0,0,0,0,.3-.3.7-.3.9,0,0,0,0,0,0,0l1.9,1.9c.1.1.3.2.5.2h1.6c.2,0,.3,0,.5-.2l1.9-1.9c.3-.3.7-.3.9,0,0,0,0,0,0,0,.3.3.3.7,0,.9l-1.9,1.9c-.4.4-.9.6-1.4.6h-1.6Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  84. mask-repeat: no-repeat;
  85. mask-size: contain;
  86. background-color: var(--color-blu);
  87. }
  88. body .ico--ui.lock {
  89. background-image: none;
  90. mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg id='Raggruppa_427' data-name='Raggruppa 427' transform='translate(189 -268)'%3E%3Crect id='Rettangolo_301' data-name='Rettangolo 301' width='16' height='16' transform='translate(-189 268)' fill='none'/%3E%3Cg id='Raggruppa_425' data-name='Raggruppa 425' transform='translate(-4 -3.125)'%3E%3Cpath id='Rettangolo_232' data-name='Rettangolo 232' d='M2.5,0h0A2.5,2.5,0,0,1,5,2.5V4A0,0,0,0,1,5,4H0A0,0,0,0,1,0,4V2.5A2.5,2.5,0,0,1,2.5,0Z' transform='translate(-179.5 274.125)' fill='none' stroke='%23006099' stroke-width='2'/%3E%3Crect id='Rettangolo_302' data-name='Rettangolo 302' width='10' height='7' rx='2' transform='translate(-182 278.125)' fill='none' stroke='%23006099' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  91. mask-repeat: no-repeat;
  92. mask-size: contain;
  93. background-color: var(--color-blu);
  94. }
  95. body .login--box .credential--recovery a {
  96. color: var(--color-blu);
  97. }
  98. body h1.primary,
  99. body h2.primary,
  100. body h3.primary,
  101. body h4.primary,
  102. body h5.primary,
  103. body h6.primary,
  104. body .title-form.primary {
  105. color: var(--color-blu);
  106. }
  107. /* Main content */
  108. body #card--dashboard {
  109. position: relative;
  110. }
  111. /* Hide popover locked on top left corner */
  112. .popover[data-popper-reference-hidden] {
  113. display: none;
  114. }
  115. /* Header */
  116. .header--gestionale {
  117. background-color: var(--color-blu);
  118. padding-block: 10px;
  119. }
  120. .header--gestionale_back {
  121. width: auto;
  122. }
  123. .header--gestionale_back button {
  124. border: none;
  125. background-color: transparent;
  126. color: white;
  127. outline: none;
  128. font-size: 30px;
  129. padding: 0;
  130. line-height: 1;
  131. }
  132. .header--gestionale_logo {
  133. width: auto;
  134. }
  135. .header--gestionale_pageTitle {
  136. width: unset;
  137. flex: 1;
  138. }
  139. .header--userprofile-icon {
  140. vertical-align: middle;
  141. width: 50px;
  142. height: 50px;
  143. border-radius: 12px;
  144. background-color: white;
  145. text-align: center;
  146. border: 2px solid var(--color-outile);
  147. }
  148. /* Sidebar */
  149. #open-filter,
  150. #close-filter {
  151. background-color: var(--color-blu);
  152. }
  153. #sidebar--wrapper #filter--section #accordionExample .accordion-header {
  154. margin-left: 5px;
  155. }
  156. #sidebar--wrapper #filter--section #accordionExample .accordion-button {
  157. display: flex;
  158. flex-direction: row;
  159. flex-wrap: nowrap;
  160. justify-content: flex-start;
  161. align-items: baseline;
  162. gap: 5px;
  163. }
  164. #sidebar--wrapper #filter--section #accordionExample .accordion-button i {
  165. width: 30px;
  166. height: 30px;
  167. display: flex;
  168. flex-direction: row;
  169. flex-wrap: nowrap;
  170. align-content: center;
  171. justify-content: center;
  172. align-items: center;
  173. }
  174. #menu-anagrafica li a.nav-link,
  175. #menu-contabilita li a.nav-link,
  176. #menu-scadenze li a.nav-link,
  177. #menu-anagrafica li:hover a span,
  178. #menu-contabilita li:hover a span,
  179. #menu-scadenze li:hover a span {
  180. color: var(--color-text);
  181. }
  182. #accordionExample .accordion-item:hover,
  183. #menu-anagrafica li:hover,
  184. #menu-contabilita li:hover,
  185. #menu-scadenze li:hover {
  186. /* background-color: transparent; */
  187. background-color: var(--color-viola-hover);
  188. }
  189. #accordionExample .accordion-item.accordion-item-active,
  190. #accordionExample .accordion-item .nav-item.nav-item-active {
  191. background-color: var(--color-viola);
  192. color: #ffffff;
  193. }
  194. #accordionExample .accordion-item .nav-item.nav-item-active a span {
  195. color: #ffffff;
  196. }
  197. /* Resumee card anagrafica */
  198. .section--tab {
  199. border: none;
  200. }
  201. .section--tab h4 {
  202. border-color: var(--color-viola) !important;
  203. padding: 5px !important;
  204. text-transform: uppercase;
  205. font-weight: bold !important;
  206. color: black !important;
  207. }
  208. body #card--resume.card--ui,
  209. body #accountingEntry .accountingEntry_resume.card--ui {
  210. background: unset;
  211. background-color: var(--color-lilla);
  212. color: black;
  213. border: 1px solid var(--color-outile);
  214. border-radius: 15px;
  215. }
  216. body #card--resume.card--ui header,
  217. body #accountingEntry .accountingEntry_resume.card--ui > header {
  218. background: transparent;
  219. border: none;
  220. color: black;
  221. padding: 30px;
  222. padding-top: 35px;
  223. }
  224. body #card--resume.card--ui header span.user-name,
  225. body #card--resume.card--ui .card--resume_body .resume--tab_info h2,
  226. body #card--resume.card--ui .title--tessera_added span.title-detail,
  227. body #accountingEntry .accountingEntry_resume.card--ui > header span.primary {
  228. color: black;
  229. }
  230. body #card--resume.card--ui .card--resume_body .resume--tab_info h2 {
  231. font-size: 20px;
  232. line-height: 1;
  233. display: flex;
  234. align-items: center;
  235. gap: 20px;
  236. }
  237. body #card--resume.card--ui header span.user-name {
  238. font-size: 32px;
  239. line-height: 1;
  240. }
  241. body #card--resume.card--ui header span.user-email {
  242. color: black;
  243. opacity: 0.8;
  244. }
  245. body #card--resume.card--ui .card--resume_body .user-address li,
  246. body #card--resume.card--ui .card--resume_body .user-residence li {
  247. gap: 22px;
  248. align-items: center;
  249. margin-bottom: 15px;
  250. }
  251. body #card--resume.card--ui .card--resume_body .user-address li i,
  252. body #card--resume.card--ui .card--resume_body .user-residence li i,
  253. body #card--resume.card--ui .card--resume_body .resume--tab_info h2 i {
  254. font-size: 20px;
  255. width: 20px;
  256. height: 20px;
  257. color: var(--color-viola);
  258. margin: 0;
  259. }
  260. body #accountingEntry .accountingEntry_resume.card--ui .username > i {
  261. color: var(--color-viola);
  262. }
  263. body #card--resume.card--ui .card--resume_body .resume--tab_info ul {
  264. padding-left: 55px;
  265. }
  266. body #card--resume.card--ui .card--resume_body .resume--tab_info ul li::marker {
  267. color: var(--color-viola);
  268. }
  269. body #card--resume.card--ui .card--resume_body .resume--tab_info .resume-corso,
  270. body
  271. #card--resume.card--ui
  272. .card--resume_body
  273. .resume--tab_info
  274. .resume-certificato,
  275. body
  276. #card--resume.card--ui
  277. .card--resume_body
  278. .resume--tab_info
  279. .resume-tessera {
  280. border-left: 2px solid var(--color-viola);
  281. padding-left: 15px;
  282. margin-left: 42px;
  283. margin-bottom: 10px;
  284. }
  285. /* Form */
  286. body .title-form.primary {
  287. margin-top: 50px;
  288. }
  289. body label,
  290. body label.form-label {
  291. margin: 0;
  292. color: black;
  293. }
  294. body .form-control,
  295. body form .form-control,
  296. body .form-select,
  297. body form .form-select,
  298. body .select2-selection,
  299. body form .select2-selection,
  300. body input.form-control[type="search"],
  301. body .btn.dropdown-toggle {
  302. border-radius: 15px !important;
  303. height: 40px !important;
  304. border: 1px solid #d3dce1 !important;
  305. background-color: #f5f8fa !important;
  306. }
  307. body .form-check-input,
  308. body form .form-check-input {
  309. height: 20px !important;
  310. width: 20px !important;
  311. border-radius: 5px !important;
  312. padding: 0 !important;
  313. }
  314. body .form-check-input:checked[type="checkbox"],
  315. body
  316. form
  317. .form-check-input:checked[type="checkbox"]
  318. body
  319. .form-check-input:checked[type="radio"],
  320. body form .form-check-input:checked[type="radio"] {
  321. background-color: var(--color-blu) !important;
  322. }
  323. body .form-select[multiple] {
  324. color: transparent;
  325. }
  326. body .form-select {
  327. padding-block: 10px;
  328. }
  329. /* contabilità uscite */
  330. #accountingExit .accountingExit_data {
  331. width: 100%;
  332. }
  333. /* dashboard */
  334. body .dashboard-container {
  335. background: var(--color-lilla);
  336. height: calc(100dvh - 86px);
  337. min-height: calc(100dvh - 86px);
  338. overflow: auto;
  339. display: flex;
  340. flex-direction: column;
  341. flex-wrap: nowrap;
  342. gap: 20px;
  343. padding: 2.5rem !important;
  344. background: white;
  345. }
  346. body .dashboard-container .dashboard-card {
  347. border: 1px solid var(--color-outile);
  348. border-radius: 12px;
  349. padding: 20px;
  350. position: relative;
  351. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06), 0 3px 6px rgba(0, 0, 0, 0.13);
  352. }
  353. body .dashboard-container .dashboard-card.card-inverted {
  354. border-color: var(--color-lilla);
  355. background-color: var(--color-lilla);
  356. }
  357. body .dashboard-container .dashboard-card-header {
  358. display: flex;
  359. justify-content: space-between;
  360. align-items: baseline;
  361. margin-bottom: 10px;
  362. }
  363. body .dashboard-container .dashboard-card-title {
  364. font-size: 17px;
  365. font-weight: bold;
  366. color: black;
  367. line-height: 1;
  368. margin-bottom: 10px;
  369. }
  370. body .dashboard-container .dashboard-card-link .dashboard-card-header,
  371. body
  372. .dashboard-container
  373. .dashboard-card-link
  374. .dashboard-card-header
  375. .dashboard-card-title {
  376. margin: 0;
  377. }
  378. body .dashboard-container .dashboard-card-icon {
  379. color: var(--color-viola);
  380. font-size: 20px;
  381. }
  382. body .dashboard-container .dashboard-card-value {
  383. font-size: 48px;
  384. font-weight: bold;
  385. color: black;
  386. margin: 20px 0 5px;
  387. line-height: 1;
  388. }
  389. body .dashboard-container .dashboard-card.dashboard-card-link {
  390. background-color: var(--color-viola-hover);
  391. border-color: transparent;
  392. }
  393. body .dashboard-container .dashboard-card.dashboard-card-link:hover {
  394. background-color: var(--color-viola);
  395. }
  396. body
  397. .dashboard-container
  398. .dashboard-card.dashboard-card-link:hover
  399. .dashboard-card-title,
  400. body
  401. .dashboard-container
  402. .dashboard-card.dashboard-card-link:hover
  403. .dashboard-card-icon {
  404. color: white;
  405. }
  406. body .dashboard-container .card-income .dashboard-card-icon,
  407. body .dashboard-container .card-income .dashboard-card-value {
  408. color: var(--color-verde);
  409. }
  410. body .dashboard-container .card-topay .dashboard-card-icon,
  411. body .dashboard-container .card-topay .dashboard-card-value {
  412. color: var(--color-viola);
  413. }
  414. body .dashboard-container .card-expense .dashboard-card-icon,
  415. body .dashboard-container .card-expense .dashboard-card-value {
  416. color: var(--color-rosso);
  417. }
  418. body .dashboard-container .card-delta .dashboard-card-icon,
  419. body .dashboard-container .card-delta .dashboard-card-value {
  420. color: var(--color-viola);
  421. }
  422. body .dashboard-container .card-income .dashboard-card-value,
  423. body .dashboard-container .card-topay .dashboard-card-value,
  424. body .dashboard-container .card-expense .dashboard-card-value,
  425. body .dashboard-container .card-delta .dashboard-card-value {
  426. font-size: 30px;
  427. }
  428. body .dashboard-container .dashboard-card-info {
  429. font-size: 14px;
  430. }
  431. body .dashboard-container .dashboard-card-info span {
  432. position: relative;
  433. font-weight: 500;
  434. }
  435. body .dashboard-container .dashboard-card-info .more {
  436. color: var(--color-verde);
  437. }
  438. body .dashboard-container .dashboard-card-info .more:before {
  439. content: "+";
  440. }
  441. body .dashboard-container .dashboard-card-info .less {
  442. color: var(--color-rosso);
  443. }
  444. body .dashboard-container .dashboard-card-info .less:before {
  445. content: "-";
  446. }
  447. body .dashboard-container .dashboard-card-change {
  448. font-size: 12px;
  449. color: #666;
  450. }
  451. body .dashboard-container .dashboard-card-change.positive {
  452. color: var(--color-verde);
  453. }
  454. body .dashboard-container .dashboard-card-change.negative {
  455. color: var(--color-rosso);
  456. }
  457. body .dashboard-container .stat-icon {
  458. width: 24px;
  459. height: 24px;
  460. border-radius: 4px;
  461. display: flex;
  462. align-items: center;
  463. justify-content: center;
  464. color: white;
  465. font-size: 12px;
  466. }
  467. body .dashboard-container .courses-list {
  468. max-height: 300px;
  469. overflow-y: auto;
  470. }
  471. body .dashboard-container .course-item {
  472. margin-bottom: 20px;
  473. display: grid;
  474. grid-template-columns: 32px auto 1fr;
  475. align-items: center;
  476. column-gap: 15px;
  477. }
  478. body .dashboard-container .course-item .course-time {
  479. grid-row: span 2;
  480. font-weight: 600;
  481. color: black;
  482. font-size: 12px;
  483. white-space: break-spaces;
  484. }
  485. body .dashboard-container .course-item .course-time:empty {
  486. display: none;
  487. }
  488. body .dashboard-container .course-item .course-divider {
  489. grid-row: span 2;
  490. width: 1px;
  491. height: 100%;
  492. background-color: #ababab;
  493. }
  494. body .dashboard-container .course-item .course-time:empty + .course-divider {
  495. display: none;
  496. }
  497. body .dashboard-container .course-item .course-name {
  498. font-size: 13px;
  499. color: black;
  500. font-weight: 600;
  501. line-height: 1.2;
  502. grid-column: 3;
  503. }
  504. body .dashboard-container .course-item .course-days {
  505. font-size: 12px;
  506. color: #666;
  507. grid-column: 3;
  508. }
  509. body .dashboard-container .fields-grid {
  510. display: grid;
  511. grid-template-columns: 1fr 1fr;
  512. gap: 10px;
  513. }
  514. body .dashboard-container .field-item {
  515. padding: 12px;
  516. border: 2px solid var(--color-verde);
  517. border-radius: 8px;
  518. text-align: center;
  519. background: white;
  520. }
  521. body .dashboard-container .field-item.occupied {
  522. border-color: var(--color-rosso);
  523. background: #fff5f7;
  524. }
  525. body .dashboard-container .field-name {
  526. font-weight: bold;
  527. color: #333;
  528. }
  529. body .dashboard-container .field-time {
  530. color: #666;
  531. font-size: 12px;
  532. }
  533. body .dashboard-container .notes-section {
  534. }
  535. body .dashboard-container .notes-input {
  536. width: 100%;
  537. background-color: white;
  538. outline: none;
  539. font-size: 14px;
  540. min-height: 50px;
  541. resize: vertical;
  542. border: none;
  543. border-radius: 6px;
  544. padding: 10px;
  545. }
  546. body .dashboard-container .save-btn {
  547. background-color: transparent;
  548. color: var(--color-viola);
  549. border: none;
  550. padding: 8px 16px;
  551. border-radius: 6px;
  552. font-size: 12px;
  553. cursor: pointer;
  554. font-weight: bold;
  555. margin-left: auto;
  556. display: block;
  557. will-change: color, background-color;
  558. transition: color 0.3s ease, background-color 0.3s ease;
  559. }
  560. body .dashboard-container .save-btn:hover {
  561. background-color: var(--color-viola);
  562. color: white;
  563. }
  564. body .dashboard-container .notes-list {
  565. max-height: 380px;
  566. overflow-y: auto;
  567. }
  568. body .dashboard-container .notes-list:not(:empty) {
  569. margin-block: 25px;
  570. }
  571. body .dashboard-container .note-item {
  572. display: flex;
  573. align-items: flex-start;
  574. gap: 10px;
  575. padding-bottom: 10px;
  576. margin-bottom: 20px;
  577. border-bottom: 1px solid rgba(0, 0, 0, 35%);
  578. }
  579. body .dashboard-container .note-item:last-of-type {
  580. margin-bottom: 0;
  581. }
  582. body .dashboard-container .note-checkbox {
  583. width: 14px;
  584. height: 14px;
  585. border: 1px solid rgba(0, 0, 0, 35%);
  586. border-radius: 100%;
  587. background: transparent;
  588. color: transparent;
  589. cursor: pointer;
  590. display: flex;
  591. align-items: center;
  592. justify-content: center;
  593. font-size: 12px;
  594. font-weight: bold;
  595. will-change: color, background-color;
  596. transition: color 0.3s ease, background-color 0.3s ease;
  597. }
  598. body .dashboard-container .note-checkbox:hover {
  599. background: var(--color-viola);
  600. color: white;
  601. }
  602. body .dashboard-container .note-content {
  603. flex: 1;
  604. }
  605. body .dashboard-container .note-text {
  606. color: black;
  607. font-size: 14px;
  608. line-height: 1;
  609. font-weight: 500;
  610. }
  611. body .dashboard-container .note-date {
  612. color: black;
  613. font-size: 10px;
  614. }
  615. body .dashboard-container .empty-notes {
  616. text-align: center;
  617. color: #666;
  618. font-size: 13px;
  619. padding: 20px;
  620. font-style: italic;
  621. }
  622. body .dashboard-container .chart-card .chart-container {
  623. grid-column: unset;
  624. }
  625. body .dashboard-container .financial-cards {
  626. display: grid;
  627. grid-template-columns: 1fr 1fr;
  628. gap: 20px;
  629. margin-bottom: 20px;
  630. }
  631. body .dashboard-container .financial-card {
  632. background: white;
  633. border-radius: 12px;
  634. padding: 20px;
  635. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  636. text-align: center;
  637. }
  638. body .dashboard-container .financial-card.income {
  639. border-left: 4px solid var(--color-verde);
  640. }
  641. body .dashboard-container .financial-card.expense {
  642. border-left: 4px solid var(--color-rosso);
  643. }
  644. body .dashboard-container .financial-amount {
  645. font-size: 36px;
  646. font-weight: bold;
  647. margin: 10px 0;
  648. }
  649. body .dashboard-container .financial-amount.income {
  650. color: var(--color-verde);
  651. }
  652. body .dashboard-container .financial-amount.expense {
  653. color: var(--color-rosso);
  654. }
  655. body .dashboard-container .recent-users-table {
  656. width: 100%;
  657. border-collapse: collapse;
  658. margin-top: 20px;
  659. }
  660. body .dashboard-container .recent-users-table th,
  661. body .dashboard-container .recent-users-table td {
  662. text-align: left;
  663. padding: 10px 5px;
  664. border-bottom: 1px solid #f0f0f0;
  665. }
  666. body .dashboard-container .recent-users-table th {
  667. font-weight: bold;
  668. color: var(--color-text);
  669. font-size: 15px;
  670. padding: 5px;
  671. }
  672. body .dashboard-container .recent-users-table td {
  673. font-size: 13px;
  674. color: black;
  675. }
  676. body .dashboard-container .transaction-list {
  677. max-height: 300px;
  678. overflow-y: auto;
  679. }
  680. body .dashboard-container .transaction-item {
  681. display: flex;
  682. justify-content: space-between;
  683. align-items: center;
  684. padding: 12px;
  685. border-bottom: 1px solid #f0f0f0;
  686. }
  687. body .dashboard-container .transaction-name {
  688. font-weight: 500;
  689. color: #333;
  690. }
  691. body .dashboard-container .transaction-amount {
  692. font-weight: bold;
  693. }
  694. body .dashboard-container .transaction-type {
  695. font-size: 10px;
  696. padding: 4px 8px;
  697. border-radius: 12px;
  698. color: white;
  699. font-weight: bold;
  700. }
  701. body .dashboard-container .transaction-type.income {
  702. background: var(--color-verde);
  703. }
  704. body .dashboard-container .transaction-type.expense {
  705. background: var(--color-rosso);
  706. }
  707. body .dashboard-container .participation-bar {
  708. height: 10px;
  709. background: #f0f0f0;
  710. border-radius: 10px;
  711. overflow: hidden;
  712. margin: 8px 0;
  713. }
  714. body .dashboard-container .participation-fill {
  715. height: 100%;
  716. transition: width 0.3s ease;
  717. border-radius: 10px;
  718. }
  719. body .dashboard-container .participation-fill.padel {
  720. background: #ffd700;
  721. }
  722. body .dashboard-container .participation-fill.tennis {
  723. background: #8b4cf7;
  724. }
  725. body .dashboard-container .participation-fill.pallavolo {
  726. background: #ff6b35;
  727. }
  728. body .dashboard-container .participation-fill.yoga {
  729. background: var(--color-verde);
  730. }
  731. body .dashboard-container .chart-title {
  732. font-size: 16px;
  733. font-weight: 600;
  734. color: #333;
  735. margin-bottom: 15px;
  736. }
  737. body .dashboard-container .grid-4 {
  738. display: grid;
  739. grid-template-columns: repeat(4, 1fr);
  740. gap: 20px;
  741. }
  742. body .dashboard-container .grid-3 {
  743. display: grid;
  744. grid-template-columns: repeat(3, 1fr);
  745. gap: 20px;
  746. }
  747. body .dashboard-container .grid-1-2 {
  748. display: grid;
  749. grid-template-rows: repeat(2, 1fr);
  750. gap: 20px;
  751. }
  752. body .dashboard-container .grid-2 {
  753. display: grid;
  754. grid-template-columns: repeat(2, 1fr);
  755. gap: 20px;
  756. }
  757. body .dashboard-container .grid-2-1 {
  758. display: grid;
  759. grid-template-columns: 2fr 1fr;
  760. gap: 20px;
  761. }
  762. body .dashboard-container .grid-w-2 {
  763. grid-column-end: span 2;
  764. }
  765. body .dashboard-container .grid-w-3 {
  766. grid-column-end: span 3;
  767. }
  768. body .dashboard-container .full-width {
  769. grid-column: span 3;
  770. }
  771. body .dashboard-container .half-width {
  772. grid-column: span 2;
  773. }
  774. body .dashboard-container .fade-out {
  775. opacity: 0;
  776. transform: translateX(100%);
  777. transition: all 0.3s ease;
  778. }
  779. body div.dt-button-background {
  780. pointer-events: none;
  781. }
  782. body .chart-body {
  783. padding: 0;
  784. }
  785. body .table-header .table-cell {
  786. color: var(--color-text);
  787. }
  788. body .course-controls {
  789. border: none;
  790. background: unset;
  791. background-color: var(--color-lilla);
  792. padding-block: 15px;
  793. border-radius: 10px;
  794. }
  795. body .dashboard-container .chart-card .dashboard-card-title {
  796. margin-bottom: 20px;
  797. }
  798. /* dettaglio utente */
  799. body .user--profile_card {
  800. background: unset;
  801. background-color: var(--color-lilla);
  802. color: black;
  803. border: 1px solid var(--color-outile);
  804. border-radius: 15px;
  805. }
  806. body .user--profile_resume {
  807. background: unset;
  808. background-color: var(--color-lilla);
  809. color: black;
  810. border-radius: 0 15px 15px 0;
  811. margin-block: 30px;
  812. }
  813. body .title--tessera_added span.title-detail_date {
  814. color: black;
  815. }
  816. body .user--profile_card .avatar--wrapper {
  817. margin-inline: auto;
  818. }
  819. body .user--profile_card article header {
  820. color: black;
  821. }
  822. body .user--profile_card article .credito_title {
  823. color: black;
  824. }
  825. body .user--profile_card article header i {
  826. color: var(--color-viola);
  827. }
  828. .user--profile_card .resume--info {
  829. border-left: 2px solid var(--color-viola);
  830. padding-left: 15px;
  831. margin-left: 42px;
  832. margin-bottom: 10px;
  833. color: #000000;
  834. }
  835. body .user--profile_resume .resume--tab_info .title i {
  836. color: var(--color-viola);
  837. }
  838. body .user--profile_resume .resume--tab_info .title {
  839. color: black;
  840. }
  841. .user--profile_resume .user_name .name {
  842. color: black;
  843. }
  844. .user--profile_resume .user-address li,
  845. .user--profile_resume .user-residence li {
  846. gap: 22px;
  847. align-items: center;
  848. margin-bottom: 15px;
  849. font-size: 14px;
  850. }
  851. .user--profile_resume .user-address li i,
  852. .user--profile_resume .user-residence li i {
  853. font-size: 20px;
  854. width: 20px;
  855. height: 20px;
  856. color: var(--color-viola);
  857. margin: 0;
  858. }
  859. .user--profile_resume .resume--info.resume-corso {
  860. border-left: 2px solid var(--color-viola);
  861. padding-left: 15px;
  862. margin-left: 42px;
  863. margin-bottom: 10px;
  864. }
  865. .resume--tab_info.gruppi .title h4 {
  866. display: list-item;
  867. }
  868. .resume--tab_info.gruppi .title h4::marker {
  869. color: var(--color-viola);
  870. }
  871. .resume--tab_info.gruppi .resume--info {
  872. padding-left: 55px;
  873. }
  874. .user--profile_resume .user-address li span a {
  875. color: var(--color-blu);
  876. text-decoration: underline;
  877. }
  878. .title--tessera_added span.title-detail {
  879. color: #000000;
  880. }
  881. .comunication-send-options .form-check {
  882. padding: 20px;
  883. border: 1px solid #dee2e6;
  884. border-radius: 0.375rem;
  885. font-size: 14px;
  886. cursor: pointer;
  887. }
  888. .comunication-send-options .form-check:has(.form-check-input:checked) {
  889. border: 1px solid #0618be;
  890. box-shadow: inset 0 0 0 1px #0618be;
  891. color: #0618be;
  892. }
  893. .comunication-send-options .form-check .form-check-input {
  894. display: none;
  895. }
  896. .ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable,
  897. .ck.ck-editor__main > .ck-editor__editable {
  898. min-height: 200px;
  899. }
  900. table#recipients-table td {
  901. padding-right: 30px;
  902. }
  903. .recipients {
  904. padding: 16px 30px;
  905. background: var(--color-lilla);
  906. border-radius: 7px;
  907. border: 1px solid var(--color-outile);
  908. overflow: auto;
  909. max-height: 220px;
  910. display: grid;
  911. grid-template-columns: repeat(auto-fit, minmax(min(333px, 100%), 1fr));
  912. font-size: 14px;
  913. }
  914. .recipients .recipient span.recipient-name {
  915. font-weight: bold;
  916. }