new_style.css 24 KB

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