diff options
author | amzrk2 | 2020-09-19 14:15:35 +0800 |
---|---|---|
committer | amzrk2 | 2020-09-19 14:15:35 +0800 |
commit | a43b353ca3e2d923ca8f0cdd1aeab70e5b1313a4 (patch) | |
tree | b084c409a1ec2facb7230727bc0dd4e64e7df995 /assets/scss/_image.scss | |
parent | 93722cd7f5fb51408a36c941c2188a373d01209b (diff) | |
download | hugo-theme-fuji-a43b353ca3e2d923ca8f0cdd1aeab70e5b1313a4.tar.gz hugo-theme-fuji-a43b353ca3e2d923ca8f0cdd1aeab70e5b1313a4.tar.bz2 hugo-theme-fuji-a43b353ca3e2d923ca8f0cdd1aeab70e5b1313a4.zip |
new: lazyload image shortcodes
Diffstat (limited to 'assets/scss/_image.scss')
-rw-r--r-- | assets/scss/_image.scss | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/assets/scss/_image.scss b/assets/scss/_image.scss new file mode 100644 index 0000000..938340e --- /dev/null +++ b/assets/scss/_image.scss @@ -0,0 +1,52 @@ +.image-wrapper { + position: relative; + display: block; + width: 100%; + height: 0; + overflow: hidden; + background-color: var(--color-divider); + border-radius: 3px; + max-width: 98%; + margin: 0 0.25rem 0.5rem 0.25rem; + + img { + display: block; + width: 100%; + max-width: 100%; + margin: 0; + overflow: hidden; + } +} + +// common aspect ratios +// 32x9 - 28.125% +// 21x9 - 42.85714286% +// 18x9 - 50% +// 16x9 - 56.25% +// 16x10 - 62.5% +// 3x2 - 66.66666667% +// 4x3 - 75% +// 1x1 - 100% +$ratios: ( + '40x9': 9 / 40 * 100%, + '32x9': 9 / 32 * 100%, + '21x9': 9 / 21 * 100%, + '18x9': 9 / 18 * 100%, + '16x9': 9 / 16 * 100%, + '16x10': 10 / 16 * 100%, + '3x2': 2 / 3 * 100%, + '4x3': 3 / 4 * 100%, + '1x1': 100%, + '3x4': 4 / 3 * 100%, + '2x3': 3 / 2 * 100%, + '10x16': 16 / 10 * 100%, + '9x16': 16 / 9 * 100%, + '9x18': 18 / 9 * 100%, + '9x21': 21 / 9 * 100%, + '9x32': 32 / 9 * 100%, +); +@each $key, $value in $ratios { + .ratio-#{$key} { + padding-bottom: $value; + } +} |