new_style.css 25 KB

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