footer-block.css

Same filename in other branches
  1. 10 core/profiles/demo_umami/themes/umami/components/footer-block/footer-block.css
.footer-block {
  font-size: 0.9rem;
}

.footer-block__link {
  color: #fff;
  background-color: inherit;
  font-weight: 700;
}

.footer-block__link::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  content: "";
  vertical-align: middle;
  background: url("../../images/svg/pointer--white.svg") no-repeat center center;
}

.footer-block__link:active,
.footer-block__link:focus,
.footer-block__link:hover {
  color: #fff;
}

.footer-block__title {
  font-size: 1.5rem;
  font-weight: 400;
}

@media screen and (min-width: 60rem) {
  .footer-block__title {
    padding-top: 2rem;
  }
}

.footer-block__wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media screen and (min-width: 60rem) {
  .footer-block__wrapper {
    flex-direction: row;
  }
}

File

core/profiles/demo_umami/themes/umami/components/footer-block/footer-block.css

View source
  1. .footer-block {
  2. font-size: 0.9rem;
  3. }
  4. .footer-block__link {
  5. color: #fff;
  6. background-color: inherit;
  7. font-weight: 700;
  8. }
  9. .footer-block__link::after {
  10. display: inline-block;
  11. width: 14px;
  12. height: 14px;
  13. content: "";
  14. vertical-align: middle;
  15. background: url("../../images/svg/pointer--white.svg") no-repeat center center;
  16. }
  17. .footer-block__link:active,
  18. .footer-block__link:focus,
  19. .footer-block__link:hover {
  20. color: #fff;
  21. }
  22. .footer-block__title {
  23. font-size: 1.5rem;
  24. font-weight: 400;
  25. }
  26. @media screen and (min-width: 60rem) {
  27. .footer-block__title {
  28. padding-top: 2rem;
  29. }
  30. }
  31. .footer-block__wrapper {
  32. display: flex;
  33. flex-direction: column;
  34. gap: 14px;
  35. }
  36. @media screen and (min-width: 60rem) {
  37. .footer-block__wrapper {
  38. flex-direction: row;
  39. }
  40. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.