cspace-ui
Version:
CollectionSpace user interface for browsers
80 lines (66 loc) • 1.13 kB
CSS
.detail {
display: flex;
flex-direction: column;
gap: calc(.25rem * 4);
}
.innerDetail {
display: flex;
flex-direction: row;
border: 1px solid rgb(220, 220, 220);
padding: 30px;
}
.imageContainer {
width: 20%;
margin-right: 1em;
}
.imageContainer > a {
text-decoration: none;
}
.imageContainer > img {
max-width: 100%;
}
.imageContainer > * > img {
max-width: 100%;
}
.detailList {
list-style: none;
padding-left: 0;
margin-top: 0;
}
.description {
margin-left: 1em;
margin-right: 1em;
width: 55%;
}
.description h2 {
/**
* Remove some of the vertical spacing from the h2
* to better align it with the other content
*/
margin-top: -7px;
margin-bottom: 0;
font-weight: bold;
}
.description > h3 {
margin-top: 0;
margin-bottom: 0;
}
.info {
flex-grow: 1;
text-align: center;
}
.info > aside {
background-color: aliceblue;
height: 200px;
margin-bottom: 1em;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.info > aside > div > span {
font-weight: bold;
}
.info > aside > div > p {
margin-top: 0;
margin-bottom: 0;
}