123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /*
- * DO NOT EDIT THIS FILE.
- * See the following change record for more information,
- * https://www.drupal.org/node/3084859
- * @preserve
- */
- /**
- * @file
- * Search results specific styles.
- */
- [dir="ltr"] .search-results {
- padding-left: 0;
- }
- [dir="rtl"] .search-results {
- padding-right: 0;
- }
- [dir="ltr"] .search-results {
- padding-right: 0;
- }
- [dir="rtl"] .search-results {
- padding-left: 0;
- }
- .search-results {
- margin-bottom: 2.25rem;
- padding-top: 0;
- padding-bottom: 0;
- list-style: none;
- }
- @media (min-width: 43.75rem) {
- .search-results {
- margin-bottom: 3.375rem;
- }
- }
- [dir="ltr"] .search-result__title {
- margin-left: 0;
- }
- [dir="rtl"] .search-result__title {
- margin-right: 0;
- }
- [dir="ltr"] .search-result__title {
- margin-right: 0;
- }
- [dir="rtl"] .search-result__title {
- margin-left: 0;
- }
- .search-result__title {
- margin-top: 0;
- margin-bottom: 0;
- color: #0d1214;
- font-size: 1.25rem;
- line-height: 1.6875rem;
- }
- .search-result__title a {
- padding-bottom: 0.1875rem;
- transition: background-size 0.2s, color 0.2s;
- text-decoration: none;
- background-color: transparent;
- background-image: linear-gradient(#2494db, #2494db); /* Two values are needed for IE11 support. */
- background-repeat: no-repeat;
- background-position: bottom left; /* LTR */
- background-size: 0 0.1875rem;
- }
- .search-result__title a:hover {
- color: #0d77b5;
- }
- @media (min-width: 62.5rem) {
- .search-result__title {
- margin-bottom: 1.125rem;
- font-size: 1.875rem;
- line-height: 3.375rem;
- }
- }
- [dir="rtl"] .search-result__title a {
- background-position: bottom right;
- }
- .search-result__snippet {
- padding-bottom: calc(1.6875rem - 2px);
- }
- @media (min-width: 62.5rem) {
- .search-result__snippet {
- padding-bottom: 3.375rem;
- }
- }
- .search-result__meta {
- display: flex;
- align-items: center;
- margin-bottom: 1.125rem;
- color: #6e7172;
- font-size: 0.875rem;
- line-height: 1.125rem;
- }
- .search-result__meta a {
- color: #0d77b5;
- font-weight: bold;
- }
- .search-results__item {
- position: relative; /* Anchor after pseudo-element. */
- margin-bottom: 1.6875rem;
- }
- .search-results__item:after {
- position: absolute;
- bottom: 0;
- width: 3.375rem;
- height: 0;
- content: "";
- /* Intentionally not using CSS logical properties. */
- border-top: solid 2px #e7edf1;
- }
- .search-results__item:last-child {
- margin-bottom: 0;
- }
- @media (min-width: 62.5rem) {
- .search-results__item {
- margin-bottom: 3.375rem;
- }
- }
|