feed.css 805 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. text-decoration: none;
  15. color: #5d7585;
  16. }
  17. .feed-icon:hover {
  18. color: #2494db;
  19. }
  20. .feed-icon__label {
  21. flex-shrink: 0;
  22. letter-spacing: 0.08em;
  23. font-size: 0.75rem;
  24. font-weight: 600;
  25. }
  26. [dir="ltr"] .feed-icon__icon {
  27. margin-left: 0.5625rem;
  28. }
  29. [dir="rtl"] .feed-icon__icon {
  30. margin-right: 0.5625rem;
  31. }
  32. .feed-icon__icon {
  33. display: flex;
  34. flex-shrink: 0;
  35. align-items: center;
  36. justify-content: center;
  37. width: 1.6875rem;
  38. height: 1.6875rem;
  39. color: #fff;
  40. background-color: #2494db;
  41. }
  42. .feed-icon__icon svg {
  43. vertical-align: top;
  44. fill: currentColor;
  45. }