1
0

_utils.scss 700 B

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