admin.scss 601 B

1234567891011121314151617181920212223242526272829303132333435
  1. @import "lib/nucleo";
  2. @import "lib/nucleo-svg";
  3. @import "lib/argon";
  4. body, button, input, textarea {
  5. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",
  6. Roboto,Helvetica,Arial,sans-serif;
  7. }
  8. .title {
  9. p.h3,
  10. h3 {
  11. font-size: 30px;
  12. }
  13. }
  14. .nav-pills .nav-item {
  15. padding-right: 1rem;
  16. }
  17. .list-fade-bottom {
  18. position: relative;
  19. &:after {
  20. content: "";
  21. position: absolute;
  22. z-index: 1;
  23. bottom: 0;
  24. left: 0;
  25. pointer-events: none;
  26. background-image: linear-gradient(to bottom, rgba(255,255,255, 0), rgba(255,255,255, 1) 90%);
  27. width: 100%;
  28. height: 10em;
  29. }
  30. }