You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_utils.scss 595B

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