cspace-ui
Version:
CollectionSpace user interface for browsers
20 lines (17 loc) • 356 B
CSS
.common {
padding: 10px;
min-height: 100px;
text-align: center;
background-repeat: no-repeat;
background-position: center 32px;
background-size: 24px;
}
.pending {
composes: common;
background-image: url(../../images/spinner.svg);
}
.error {
composes: common;
background-image: url(../../images/error.svg);
color: rgb(220, 0, 0);
}