rdrew 7 months ago
parent
commit
9f64449fdd
  1. 8
      css/components/landing_page.css
  2. 39
      css/components/search-results.css

8
css/components/landing_page.css

@ -198,3 +198,11 @@ display: none;
margin: 0;
}
}
.main-content {
border: 1px solid #ccc;
border-top: 0;
}
header#header {
border-right: 1px solid #ccc;
}

39
css/components/search-results.css

@ -38,7 +38,10 @@
-webkit-text-decoration: none;
text-decoration: none;
background-color: transparent;
background-image: linear-gradient(var(--color--primary-50), var(--color--primary-50)); /* Two values are needed for IE11 support. */
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;
@ -108,3 +111,37 @@
margin-block-end: var(--sp3);
}
}
.view-grid.view-solr-search-content {
.views-field-member-of-title {
display: none;
}
.search-result {
.views-field-did-image {
img {
width: 100%;
}
height: 200px;
overflow: hidden;
border: 1px solid #ccc;
padding: 4px;
}
.views-field-title {
margin: 0.5rem 0;
}
}
}
.view-grid > .view-content {
display: grid;
grid-template-columns: repeat(5, 1fr);
/*margin: 0.47214rem 0 0.47214rem 2.61803rem;*/
}
@media only screen and (max-width: 600px) {
.view-grid > .view-content {
display: grid;
grid-template-columns: repeat(1, 1fr);
}
}
div#block-olivesdocs-solrsearchcontentsearchresultspagerforblock {
margin-block-end: 0;
}

Loading…
Cancel
Save