D10 theme for Island Lives. This is a clone of drupals core theme Olivero. Notice this theme is named Olivera not Olivero :)
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.

98 lines
1.8 KiB

11 months ago
/*
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/3084859
* @preserve
*/
/**
* @file
* Node specific styles.
*/
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. */
11 months ago
.node__meta {
display: flex;
align-items: center;
10 months ago
margin-bottom: var(--sp1);
11 months ago
color: var(--color-text-neutral-soft);
font-size: 0.875rem;
10 months ago
line-height: var(--sp)
11 months ago
}
.node__meta a {
10 months ago
font-weight: bold;
}
11 months ago
@media (min-width: 31.25rem) {
10 months ago
.node__meta {
margin-bottom: var(--sp2)
}
11 months ago
}
10 months ago
[dir="ltr"] .node__author-image img {
margin-right: var(--sp0-5)
}
[dir="rtl"] .node__author-image img {
margin-left: var(--sp0-5)
11 months ago
}
.node__author-image img {
width: var(--sp2-5);
height: var(--sp2-5);
10 months ago
-o-object-fit: cover;
11 months ago
object-fit: cover;
border-radius: 50%;
}
.node__title a {
10 months ago
padding-bottom: 0.1875rem;
transition: background-size 0.2s, color 0.2s;
text-decoration: none;
color: var(--color-text-neutral-loud);
background-color: transparent;
background-image: linear-gradient(var(--color--primary-50), var(--color--primary-50)); /* Two values are needed for IE11 support. */
background-repeat: no-repeat;
background-position: bottom left; /* LTR */
background-size: 0 0.1875rem
}
11 months ago
.node__title a:hover,
10 months ago
.node__title a:focus {
color: var(--color-text-primary-medium);
}
11 months ago
[dir="rtl"] .node__title {
background-position: bottom right;
}
.node__content {
10 months ago
padding-bottom: var(--sp1-5)
11 months ago
}
@media (min-width: 62.5rem) {
10 months ago
.node__content {
padding-bottom: var(--sp3)
11 months ago
}
10 months ago
}
11 months ago
.node--unpublished {
/* There is no variable for the color - #fff4f4. */
background-color: #fff4f4;
}