diff --git a/css/components/block.css b/css/components/block.css index 9d46492..95a7866 100755 --- a/css/components/block.css +++ b/css/components/block.css @@ -17,6 +17,7 @@ /*font-size: var(--font-size-l);*/ font-size: 24px; line-height: var(--sp); + line-height: 1; border-bottom: 4px double; padding-bottom: 4px; } diff --git a/css/components/islandora_mods.css b/css/components/islandora_mods.css index 2484e5e..afd98fa 100755 --- a/css/components/islandora_mods.css +++ b/css/components/islandora_mods.css @@ -50,6 +50,12 @@ font-size: 2rem; line-height: 11px; font-family: var(--font-sans) !important; } +h2.tl-headline { + color: #333 !important; +} +h2.tl-headline:hover { + color: #fff !important; +} /* ============================================================ COLLECTION GRID ============================================================ */ @@ -216,6 +222,7 @@ div#block-olivesnews-site-branding { .view-newspapers-view .view-filters { margin: 0; } +form#views-exposed-form-newspaper-directory-page-1, form#views-exposed-form-newspapers-view-block-1 { border: 1px solid #ccc; padding: 0.5em 1em; @@ -333,3 +340,6 @@ article .text-content img { color: #fff; font-family: var(--font-serif) !important; } +.newspaper-browse a { + text-decoration: none; +} diff --git a/css/layout/region-content-below.css b/css/layout/region-content-below.css index 14341c4..41b0d73 100755 --- a/css/layout/region-content-below.css +++ b/css/layout/region-content-below.css @@ -1,46 +1,17 @@ -/* - * DO NOT EDIT THIS FILE. - * See the following change record for more information, - * https://www.drupal.org/node/3084859 - * @preserve - */ +.region--content-below { + margin-block-end: var(--sp); -/** - * @file - * Content below region layout. - */ + margin-left: 6em; +} @media (min-width: 43.75rem) { .region--content-below { - display: flex; - flex-wrap: wrap; - } - - .region--content-below > * { - flex-basis: calc(50% - (var(--grid-gap) / 2)); - flex-grow: 1; - flex-shrink: 0; - margin-inline-end: var(--grid-gap); - } - - .region--content-below > *:nth-child(2n), - .region--content-below > *:last-child { - margin-inline-end: 0; + margin-block-end: var(--sp2); } } -@media (min-width: 43.75rem) { - .region--content-below > * { - flex-basis: calc(33.33% - (var(--grid-gap) * 0.667)); - } - - .region--content-below > *:nth-child(2n), - .region--content-below > *:last-child { - margin-inline-end: var(--grid-gap); - } - - .region--content-below > *:nth-child(3n), - .region--content-below > *:last-child { - margin-inline-end: 0; +@media (min-width: 62.5rem) { + .region--content-below { + margin-block-end: var(--sp3); } } diff --git a/css/layout/region-content-below.css.old b/css/layout/region-content-below.css.old new file mode 100755 index 0000000..14341c4 --- /dev/null +++ b/css/layout/region-content-below.css.old @@ -0,0 +1,46 @@ +/* + * DO NOT EDIT THIS FILE. + * See the following change record for more information, + * https://www.drupal.org/node/3084859 + * @preserve + */ + +/** + * @file + * Content below region layout. + */ + +@media (min-width: 43.75rem) { + .region--content-below { + display: flex; + flex-wrap: wrap; + } + + .region--content-below > * { + flex-basis: calc(50% - (var(--grid-gap) / 2)); + flex-grow: 1; + flex-shrink: 0; + margin-inline-end: var(--grid-gap); + } + + .region--content-below > *:nth-child(2n), + .region--content-below > *:last-child { + margin-inline-end: 0; + } +} + +@media (min-width: 43.75rem) { + .region--content-below > * { + flex-basis: calc(33.33% - (var(--grid-gap) * 0.667)); + } + + .region--content-below > *:nth-child(2n), + .region--content-below > *:last-child { + margin-inline-end: var(--grid-gap); + } + + .region--content-below > *:nth-child(3n), + .region--content-below > *:last-child { + margin-inline-end: 0; + } +}