clone of olivero for island lives
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.

67 lines
1.1 KiB

10 months ago
/*
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/3084859
* @preserve
*/
/**
* @file
* RSS feed.
*/
10 months ago
/*
* Media query breakpoints.
* Processed by postcss/postcss-custom-media.
*/
/* Navigation related breakpoints */
/* Grid related breakpoints */
/* Grid shifts from 6 to 14 columns. */
/* Width of the entire grid maxes out. */
10 months ago
.feed-icon {
display: flex;
align-items: center;
text-decoration: none;
10 months ago
color: var(--color-text-neutral-soft)
10 months ago
}
.feed-icon:hover {
10 months ago
color: var(--color--primary-50);
}
10 months ago
.feed-icon__label {
flex-shrink: 0;
letter-spacing: 0.08em;
font-size: var(--font-size-xxs);
font-weight: 600;
}
10 months ago
[dir="ltr"] .feed-icon__icon {
margin-left: var(--sp0-5)
}
[dir="rtl"] .feed-icon__icon {
margin-right: var(--sp0-5)
}
10 months ago
.feed-icon__icon {
display: flex;
flex-shrink: 0;
align-items: center;
justify-content: center;
width: var(--sp1-5);
height: var(--sp1-5);
color: var(--color--white);
10 months ago
background-color: var(--color--primary-50)
10 months ago
}
.feed-icon__icon svg {
10 months ago
vertical-align: top;
fill: currentColor;
}