mirror of
https://github.com/Damillora/Shian.git
synced 2024-11-25 10:47:32 +00:00
24 lines
405 B
SCSS
24 lines
405 B
SCSS
.media-item {
|
|
padding: 0.25rem 1rem;
|
|
width: 100%;
|
|
@include transition;
|
|
|
|
&:hover {
|
|
background-color: var(--highlight-bg-color);
|
|
}
|
|
|
|
&__caption {
|
|
font-size: $text-2xl;
|
|
@include my(0.25rem);
|
|
}
|
|
|
|
&__content {
|
|
width: 100%;
|
|
@include my(0.5rem);
|
|
display: block;
|
|
|
|
p {
|
|
@include my(0.25rem);
|
|
}
|
|
}
|
|
} |