_footer.scss 826 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .bot {
  2. @include themify($themes) {
  3. background-color: themed('navbar-background-color');
  4. }
  5. }
  6. .footer {
  7. @include themify($themes) {
  8. border-top: 1px solid themed('border-line-color');
  9. }
  10. padding: 1rem;
  11. text-align: center;
  12. &__section {
  13. @include flexbox();
  14. @include flex-direction(column);
  15. @include flex-grow(1);
  16. @include align-items(flex-start);
  17. &--wrapper {
  18. @include flexbox();
  19. }
  20. &--title {
  21. font-family: $title-font;
  22. font-size: 1rem;
  23. font-weight: bold;
  24. margin: 1rem 0 0.5rem 0;
  25. }
  26. &--link {
  27. display: block;
  28. text-align: left;
  29. padding: 0.15rem 0.35rem;
  30. }
  31. }
  32. &__contents {
  33. width: 100%;
  34. margin: 2rem 0;
  35. @include flexbox();
  36. @include align-items(flex-start);
  37. @include flex-direction(column);
  38. }
  39. }