41 lines
620 B
SCSS
41 lines
620 B
SCSS
@import "../global";
|
|
|
|
.file-tile__row {
|
|
height: $spacing-vertical * 7;
|
|
}
|
|
|
|
.file-tile__row--unavailable {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.file-tile__thumbnail {
|
|
max-width: 100%;
|
|
max-height: $spacing-vertical * 7;
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.file-tile__title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.file-tile__cost {
|
|
float: right;
|
|
}
|
|
|
|
.file-tile__description {
|
|
color: #444;
|
|
margin-top: 12px;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.file-tile__not-available-message {
|
|
height: auto;
|
|
text-align: right;
|
|
color: $color-notice;
|
|
}
|
|
|
|
.file-tile .not-available-tooltip-link__tooltip { /* temporary */
|
|
left: -225px;
|
|
}
|