Michael Zhang
ca1cdc8179
Nix build doesn't work, blocked on https://github.com/kolloch/crate2nix/issues/207
118 lines
1.9 KiB
SCSS
118 lines
1.9 KiB
SCSS
@import '_variables';
|
|
@import '_mixins';
|
|
|
|
.card {
|
|
margin: 5px 0;
|
|
pointer-events: all;
|
|
max-height: unset;
|
|
}
|
|
|
|
.card-container {
|
|
border-radius: 10px;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: var(--dark_grey);
|
|
background-color: var(--bg_elements);
|
|
overflow: hidden;
|
|
color: inherit;
|
|
display: flex;
|
|
flex-direction: row;
|
|
text-decoration: none !important;
|
|
|
|
&:hover {
|
|
border-color: var(--grey);
|
|
}
|
|
|
|
.attachments {
|
|
margin: 0;
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
.card-content {
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.card-title {
|
|
@include ellipsis;
|
|
white-space: unset;
|
|
font-weight: bold;
|
|
font-size: 1.15em;
|
|
}
|
|
|
|
.card-description {
|
|
margin: 0.3em 0;
|
|
}
|
|
|
|
.card-destination {
|
|
@include ellipsis;
|
|
color: var(--grey);
|
|
display: block;
|
|
}
|
|
|
|
.card-content-container {
|
|
color: unset;
|
|
overflow: auto;
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.card-image-container {
|
|
width: 98px;
|
|
flex-shrink: 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
&:before {
|
|
content: "";
|
|
display: block;
|
|
padding-top: 100%;
|
|
}
|
|
}
|
|
|
|
.card-image {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
background-color: var(--bg_overlays);
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
max-height: 400px;
|
|
display: block;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
|
|
.card-overlay {
|
|
@include play-button;
|
|
opacity: 0.8;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.large {
|
|
.card-container {
|
|
display: block;
|
|
}
|
|
|
|
.card-image-container {
|
|
width: unset;
|
|
|
|
&:before {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.card-image {
|
|
position: unset;
|
|
border-style: solid;
|
|
border-color: var(--dark_grey);
|
|
border-width: 0;
|
|
border-bottom-width: 1px;
|
|
}
|
|
}
|