mirror of
https://github.com/danog/sass-site.git
synced 2024-12-15 10:57:24 +01:00
24 lines
421 B
SCSS
24 lines
421 B
SCSS
img {
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
height: auto;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
hr {
|
|
$new-spacing: ($base-line-height - 1) / $base-line-height;
|
|
@include leader($new-spacing);
|
|
@include trailer($new-spacing);
|
|
display: block;
|
|
padding: 0;
|
|
height: 1px;
|
|
border: 0 {
|
|
top: 1px solid $color-border;
|
|
}
|
|
}
|
|
|
|
figure {
|
|
@extend %block-text;
|
|
@include breakpoint($tablet-large) { max-width: 50%; }
|
|
}
|