Browse Source

search grid

master
rdrew 3 months ago
parent
commit
d6f7aad01d
  1. 20
      css/components/islandora_mods.css
  2. 31
      css/components/landing_page.css

20
css/components/islandora_mods.css

@ -1,10 +1,23 @@
/*collection grid*/ /*collection grid*/
.collection-view > .view-content { .collection-view > .view-content {
display: grid;
grid-template-columns: repeat(1, 1fr);
/* margin: 0.47214rem 0 0.47214rem 2.61803rem; */
}
@media only screen and (min-width: 600px) {
.collection-view > .view-content {
display: grid;
grid-template-columns: repeat(2, 1fr);
/* margin: 0.47214rem 0 0.47214rem 2.61803rem; */
}
}
@media only screen and (min-width: 1180px) {
.collection-view > .view-content {
display: grid; display: grid;
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr);
/* margin: 0.47214rem 0 0.47214rem 2.61803rem; */ /* margin: 0.47214rem 0 0.47214rem 2.61803rem; */
}
} }
.view-grid .view-content .views-row { .view-grid .view-content .views-row {
padding: 0px 30px 30px 0px !important; padding: 0px 30px 30px 0px !important;
} }
@ -21,8 +34,9 @@
.views-field-did-image { .views-field-did-image {
height: 300px; height: 300px;
overflow: hidden; overflow: hidden;
border: 1px solid #ccc; border: 6px solid var(--pwc-grey);
padding: 4px; /*padding: 4px;*/
background: #e3e3d7;
} }
img { img {
width: 100%; width: 100%;

31
css/components/landing_page.css

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save