new_style.css 25 KB

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