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