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.

40 lines
762 B

3 years ago
3 years ago
3 years ago
3 years ago
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. border: 2px solid $tertiary;
  14. padding: 1em;
  15. box-sizing: border-box;
  16. display: flex;
  17. p:first-child {
  18. display: none;
  19. }
  20. .category-logo.aspect-image {
  21. max-width: 60px;
  22. vertical-align: middle;
  23. }
  24. .category-name-header {
  25. display: inline-block;
  26. vertical-align: middle;
  27. font-size: 1.5em;
  28. margin: 0 0 7px;
  29. @include underline;
  30. }
  31. p {
  32. font-size: 1.1em;
  33. max-width: 700px;
  34. margin: 0;
  35. }
  36. }