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.

39 lines
746 B

3 years ago
  1. @mixin underline {
  2. background-image: linear-gradient(180deg, transparent 95%, $tertiary 0);
  3. background-repeat: no-repeat;
  4. background-color: initial;
  5. padding: 0px;
  6. background-size: 100% 100%;
  7. text-decoration: none;
  8. }
  9. .category-heading {
  10. display: inline-block;
  11. margin-bottom: 20px;
  12. width: 100%;
  13. &.has-logo {
  14. border: 2px solid $tertiary;
  15. padding: 1em;
  16. box-sizing: border-box;
  17. display: flex;
  18. }
  19. .category-logo.aspect-image {
  20. max-width: 60px;
  21. vertical-align: middle;
  22. }
  23. .category-name-header {
  24. display: inline-block;
  25. vertical-align: middle;
  26. font-size: 1.5em;
  27. margin: 7px 0;
  28. @include underline;
  29. }
  30. p {
  31. font-size: 1.1em;
  32. max-width: 700px;
  33. margin: 0;
  34. }
  35. }