feed.css

Same filename and directory in other branches
  1. 10 core/themes/olivero/css/components/feed.css
  2. 11.x core/themes/olivero/css/components/feed.css
  3. 9 core/themes/olivero/css/components/feed.css

RSS feed.

File

core/themes/olivero/css/components/feed.css

View source
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/3084859
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * RSS feed.
  10. */
  11. .feed-icon {
  12. display: flex;
  13. align-items: center;
  14. -webkit-text-decoration: none;
  15. text-decoration: none;
  16. color: var(--color-text-neutral-soft);
  17. &:hover {
  18. color: var(--color--primary-50);
  19. }
  20. @media (max-width: 75rem) {
  21. flex-direction: row-reverse;
  22. justify-content: flex-end;
  23. }
  24. }
  25. .feed-icon__label {
  26. flex-shrink: 0;
  27. letter-spacing: 0.08em;
  28. font-size: var(--font-size-xxs);
  29. font-weight: 600;
  30. }
  31. .feed-icon__icon {
  32. display: flex;
  33. flex-shrink: 0;
  34. align-items: center;
  35. justify-content: center;
  36. width: var(--sp1-5);
  37. height: var(--sp1-5);
  38. margin-inline-start: var(--sp0-5);
  39. color: var(--color--white);
  40. border-radius: 2px;
  41. background-color: var(--color--primary-50);
  42. & svg {
  43. vertical-align: top;
  44. fill: currentColor;
  45. }
  46. @media (max-width: 75rem) {
  47. margin-inline: 0 var(--sp0-5);
  48. }
  49. }

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