app.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. // Fonts
  2. //@import url('https://fonts.bunny.net/css?family=Nunito');
  3. // Variables
  4. @import 'variables';
  5. // Bootstrap
  6. @import 'bootstrap/scss/bootstrap';
  7. @import "bootstrap-icons/font/bootstrap-icons.css";
  8. .invalid-feedback {
  9. display: block !important;
  10. }
  11. .alerts{
  12. position: absolute;
  13. right: 0;
  14. top: 0;
  15. opacity: 0.95;
  16. z-index: 999;
  17. div {
  18. padding-left: 3rem;
  19. padding-right: 3rem;
  20. }
  21. }
  22. .table-buttons {
  23. position: fixed;
  24. right: 0;
  25. opacity: 0.5;
  26. z-index: 999;
  27. }
  28. .table-buttons:hover {
  29. opacity: 1;
  30. }
  31. .table {
  32. tr th {
  33. background-color: var(--bs-primary-bg-subtle);
  34. vertical-align: middle;
  35. }
  36. td {
  37. cursor: pointer;
  38. }
  39. }
  40. .maf:hover, tr:hover td {
  41. background-color: #fff8ca;
  42. }
  43. .quantity {
  44. padding: 3px;
  45. }
  46. .pagination .text-muted {
  47. padding-right: 1rem;
  48. }
  49. .cursor-pointer {
  50. cursor: pointer;
  51. }
  52. .highlight {
  53. background-color: yellow;
  54. }
  55. .rm-but {
  56. position: absolute;
  57. margin-left: -18px;
  58. margin-top: 1px;
  59. }
  60. .maf-img {
  61. max-height: 100px;
  62. max-width: 100px;
  63. }