app.scss 904 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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: absolute;
  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: #0dcaf0;
  34. vertical-align: middle;
  35. }
  36. tr:nth-child(even) td {
  37. background-color: #e5e5e5;
  38. }
  39. td {
  40. cursor: pointer;
  41. }
  42. tr:hover td {
  43. background-color: #fff8ca;
  44. }
  45. }
  46. .pagination .text-muted {
  47. padding-right: 1rem;
  48. }
  49. .cursor-pointer {
  50. cursor: pointer;
  51. }
  52. .highlight {
  53. background-color: yellow;
  54. }