You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
plain-ui/src/scss/components/_media.scss

48 lines
1011 B

/**
* <figure class="media-figure">
* <img class="media__img" src="https://via.placeholder.com/150" />
* <figcaption class="media-figure__caption">
* food truck yr franzen pabst
* </figcaption>
* </figure>
*
3 years ago
*
* @author Björn Hase, me@herr-hase.wtf
3 years ago
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.node001.net/tiny-components/plain-ui.git
3 years ago
*
*/
3 years ago
.figure {
margin: 0;
display: inline-block;
line-height: 0;
3 years ago
border: $border;
border-radius: $border-radius;
3 years ago
overflow: hidden;
3 years ago
&__caption {
padding: 0.75em 1.1em;
font-size: 0.7rem;
background: var(--background);
3 years ago
line-height: $line-height;
3 years ago
margin: 0;
3 years ago
color: var(--text-contrast);
3 years ago
border-top: 1px solid var(--border-contrast);
}
3 years ago
.media {
border: 0;
3 years ago
border-radius: 0;
}
3 years ago
}
.media {
3 years ago
border-radius: $border-radius;
border: $border;
3 years ago
width: 100%;
height: auto;
}