You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
877 B
SCSS
59 lines
877 B
SCSS
@charset "utf-8";
|
|
|
|
@import "_variables";
|
|
|
|
/** Main **/
|
|
|
|
.image-container {
|
|
flex: none;
|
|
position: relative;
|
|
width: 224px;
|
|
height: 224px;
|
|
margin: 0.75rem;
|
|
padding: 11px;
|
|
overflow: hidden;
|
|
align-items: center;
|
|
border: 1px solid $grey;
|
|
|
|
.title {
|
|
font-weight: normal;
|
|
word-break: break-all
|
|
}
|
|
|
|
.image {
|
|
display: flex;
|
|
height: 200px;
|
|
width: 200px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
img {
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
height: auto;
|
|
width: auto
|
|
}
|
|
}
|
|
|
|
.details {
|
|
position: absolute;
|
|
left: 11px;
|
|
bottom: 11px;
|
|
right: 11px;
|
|
background-color: #0000008f;
|
|
color: #eff0f1;
|
|
padding: 3px;
|
|
font-size: 0.75rem;
|
|
|
|
p {
|
|
display: block;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
|
|
&.name {
|
|
font-weight: bold
|
|
}
|
|
}
|
|
}
|
|
}
|