new_style.css 25 KB

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