Arc-hive-omeka-theme/asset/scss/components/_cards.scss

31 lines
568 B
SCSS
Raw Normal View History

.card {
padding: $global-padding;
}
2021-07-28 19:11:34 +02:00
.collection-card {
ul {
&.arc-site-meta {
list-style: none;
li {
&:before{
content:'';
display: inline-block;
width: rem-calc(15);
height: $global-lineheight;
}
&.artist:before {
content:'Artist';
}
&.date:before {
content: 'Year';
}
&.collection:before {
content: 'Collection';
}
&.tech-document-link:before {
content: 'Keywords';
2021-07-28 19:11:34 +02:00
}
}
}
}
}