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.
76 lines
1.5 KiB
76 lines
1.5 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
|
||
|
* Node specific styles.
|
||
|
*/
|
||
|
|
||
|
.node__meta {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
margin-block-end: var(--sp1);
|
||
|
color: var(--color-text-neutral-soft);
|
||
|
font-size: 0.875rem;
|
||
|
line-height: var(--sp);
|
||
|
}
|
||
|
|
||
|
.node__meta a {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 31.25rem) {
|
||
|
.node__meta {
|
||
|
margin-block-end: var(--sp2);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.node__author-image img {
|
||
|
width: var(--sp2-5);
|
||
|
height: var(--sp2-5);
|
||
|
margin-inline-end: var(--sp0-5);
|
||
|
object-fit: cover;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
|
||
|
.node__title a {
|
||
|
padding-block-end: 0.1875rem;
|
||
|
transition: background-size 0.2s, color 0.2s;
|
||
|
-webkit-text-decoration: none;
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
.node__title a:hover,
|
||
|
.node__title a:focus {
|
||
|
color: var(--color-text-primary-medium);
|
||
|
}
|
||
|
|
||
|
[dir="rtl"] .node__title {
|
||
|
background-position: bottom right;
|
||
|
}
|
||
|
|
||
|
.node__content {
|
||
|
padding-block-end: var(--sp1-5);
|
||
|
}
|
||
|
|
||
|
@media (min-width: 62.5rem) {
|
||
|
.node__content {
|
||
|
padding-block-end: var(--sp3);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.node--unpublished {
|
||
|
/* There is no variable for the color - #fff4f4. */
|
||
|
background-color: #fff4f4;
|
||
|
}
|