_footer.scss 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // Footer styles
  2. footer {
  3. margin: 4rem 0 0;
  4. padding: 2rem 0;
  5. width: 100%;
  6. }
  7. footer p {
  8. font-size: 0.75rem;
  9. text-align: center;
  10. }
  11. footer .powered-by {
  12. font-size: 0.67rem;
  13. }
  14. .site-footer,
  15. footer a.back-to-top i {
  16. color: rgba(0,0,0,0.54);
  17. }
  18. // Dark footer theme
  19. .dark .site-footer,
  20. .dark footer a.back-to-top i,
  21. .dark .docs .body-footer {
  22. color: rgba(255,255,255,0.54);
  23. }
  24. // Footer copyright license
  25. .footer-license-icons {
  26. display: flex;
  27. flex-direction: row;
  28. flex-wrap: wrap;
  29. justify-content: center;
  30. list-style: none;
  31. height: auto;
  32. width: auto;
  33. font-size: 0; // Hack to remove space characters between icons without using UL.
  34. text-decoration: none;
  35. }
  36. .footer-license-icons img {
  37. display: inline-flex;
  38. margin-right: 8px;
  39. height: 22px;
  40. vertical-align: text-bottom;
  41. }