_utils.scss 614 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @import "variables";
  2. .flex {
  3. display: flex;
  4. }
  5. .justify-start {
  6. justify-content: flex-start;
  7. }
  8. .justify-end {
  9. justify-content: flex-end;
  10. }
  11. .justify-center {
  12. justify-content: center;
  13. }
  14. .justify-between {
  15. justify-content: space-between;
  16. }
  17. .align-center {
  18. align-items: center;
  19. }
  20. .mx-auto {
  21. margin: 0 auto;
  22. }
  23. .hide {
  24. display: none;
  25. }
  26. @mixin fixed {
  27. position: fixed;
  28. top: $top-bar-height;
  29. bottom: 0;
  30. overflow-x: hidden;
  31. overflow-y: auto;
  32. }
  33. @mixin dark-links {
  34. a {
  35. color: $nav-link-color;
  36. }
  37. a.active {
  38. color: $color-link;
  39. }
  40. }