31 lines
564 B
SCSS
31 lines
564 B
SCSS
.card {
|
|
padding: $global-padding;
|
|
}
|
|
.collection-card {
|
|
ul {
|
|
&.arc-site-meta {
|
|
list-style: none;
|
|
li {
|
|
&:before{
|
|
content:'';
|
|
display: inline-block;
|
|
width: rem-calc(15);
|
|
height: $global-lineheight;
|
|
&.artist {
|
|
content:'Artist';
|
|
}
|
|
&.date {
|
|
content: 'Year';
|
|
}
|
|
&.collection {
|
|
content: 'Collection';
|
|
}
|
|
&.tech-document-link {
|
|
content: 'Keywords';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|