diff options
author | Mario <mario@mariovavti.com> | 2018-11-25 09:09:26 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-12-02 10:14:37 +0100 |
commit | a0d1ce77dc4a74f42cd68c682af8d2d0596cb754 (patch) | |
tree | 6065839bbb64f4607ae3c9cf829015283d833bba /vendor/desandro/imagesloaded/test/css | |
parent | 863cae1bab2749f2a829d01989dd501cb4742e16 (diff) | |
download | volse-hubzilla-a0d1ce77dc4a74f42cd68c682af8d2d0596cb754.tar.gz volse-hubzilla-a0d1ce77dc4a74f42cd68c682af8d2d0596cb754.tar.bz2 volse-hubzilla-a0d1ce77dc4a74f42cd68c682af8d2d0596cb754.zip |
update imagesloaded to version 4.1.4 via composer
(cherry picked from commit c667572d3eedb0c31b29a4c469b378ccdcee0ba1)
Diffstat (limited to 'vendor/desandro/imagesloaded/test/css')
-rw-r--r-- | vendor/desandro/imagesloaded/test/css/tests.css | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/vendor/desandro/imagesloaded/test/css/tests.css b/vendor/desandro/imagesloaded/test/css/tests.css new file mode 100644 index 000000000..af8a7e885 --- /dev/null +++ b/vendor/desandro/imagesloaded/test/css/tests.css @@ -0,0 +1,41 @@ +img { + display: inline-block; + max-width: 240px; +} + +/* ---- backgrounds ---- */ + +.bg-box { + width: 240px; + height: 240px; + margin: 0 20px 20px 0; + border: 1px solid; + display: inline-block; +} + +.bg-box.tulip { + background: url('http://i.imgur.com/9xYjgCk.jpg'); + background-size: cover; +} + +.bg-box.thunder-cloud { + background: url('../img/thunder-cloud.jpg'); + background-size: contain; +} + +.bg-box.multi { + background: + url("http://i.imgur.com/ZAVN3.png"), + url('http://i.imgur.com/6UdOxeB.png') bottom right, + url(https://picsum.photos/601/401/?random); + background-size: cover; +} + +.bg-box.blue { + background: #09F; +} + +.bg-box.gulls { + background-image: url('http://i.imgur.com/qKhkOKC.jpg'); + background-size: cover; +} |