Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fest-theme.css 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * Override / tema Fest (opzionale).
  3. * Aggiungi qui regole CSS custom importate da app.css.
  4. */
  5. /* DataTables: toolbar bottoni come gruppo (primo arrotondato a sx, ultimo a dx) */
  6. .dataTables_wrapper .dt-buttons {
  7. display: inline-flex;
  8. flex-wrap: wrap;
  9. align-items: stretch;
  10. gap: 0;
  11. }
  12. .dataTables_wrapper .dt-buttons > .btn,
  13. .dataTables_wrapper .dt-buttons > button.dt-button {
  14. border-radius: 0;
  15. }
  16. .dataTables_wrapper .dt-buttons > .btn:not(:only-child),
  17. .dataTables_wrapper .dt-buttons > button.dt-button:not(:only-child) {
  18. margin-inline-start: -1px;
  19. }
  20. .dataTables_wrapper .dt-buttons > .btn:first-child,
  21. .dataTables_wrapper .dt-buttons > button.dt-button:first-child {
  22. margin-inline-start: 0;
  23. border-top-left-radius: var(--bs-border-radius, 0.375rem);
  24. border-bottom-left-radius: var(--bs-border-radius, 0.375rem);
  25. }
  26. .dataTables_wrapper .dt-buttons > .btn:last-child,
  27. .dataTables_wrapper .dt-buttons > button.dt-button:last-child {
  28. border-top-right-radius: var(--bs-border-radius, 0.375rem);
  29. border-bottom-right-radius: var(--bs-border-radius, 0.375rem);
  30. }
  31. .dataTables_wrapper .dt-buttons > .btn:only-child,
  32. .dataTables_wrapper .dt-buttons > button.dt-button:only-child {
  33. border-radius: var(--bs-border-radius, 0.375rem);
  34. }
  35. .bx-chef-hat{
  36. --svg: url("data:image/svg+xml,%3csvg width='24' height='24' fill='currentColor' viewBox='0 0 24 24' transform='' xmlns='http://www.w3.org/2000/svg'%3e%3c!--Boxicons v3.0.8 https://boxicons.com %7c License https://docs.boxicons.com/free--%3e%3cpath d='M17.13 5.54C16.33 3.42 14.32 2 12 2S7.67 3.42 6.87 5.54A5.506 5.506 0 0 0 2 11c0 2.07 1.18 3.95 3 4.88V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-2.12c1.82-.93 3-2.81 3-4.88 0-2.82-2.13-5.15-4.87-5.46m.53 8.75c-.4.14-.67.52-.67.94v1.78H7v-1.78c0-.42-.27-.8-.67-.94-1.4-.5-2.33-1.82-2.33-3.28 0-1.93 1.57-3.5 3.42-3.5.04 0 .14.01.18.02.49 0 .9-.31 1-.78.36-1.61 1.76-2.73 3.41-2.73s3.05 1.12 3.41 2.73c.1.47.51.81 1 .78.06 0 .12 0 .09-.01 1.93 0 3.5 1.57 3.5 3.5 0 1.47-.94 2.79-2.33 3.28ZM5 20h14v2H5z'%3e%3c/path%3e%3c/svg%3e");
  37. }
  38. /* Default desktop */
  39. .text-sm-small {
  40. /* font-size: 1rem; */
  41. }
  42. /* Tablet */
  43. @media (max-width: 992px) {
  44. .text-sm-small {
  45. font-size: 1rem;
  46. }
  47. }
  48. /* Mobile */
  49. @media (max-width: 576px) {
  50. .text-sm-small {
  51. font-size: 0.9rem;
  52. }
  53. }