diff options
author | Siri Reiter <siri@pjones.dk> | 2022-10-31 18:31:54 +0100 |
---|---|---|
committer | Siri Reiter <siri@pjones.dk> | 2022-10-31 18:31:54 +0100 |
commit | 784f54eff6192116221e5d15ee600094350d4c84 (patch) | |
tree | 1e610a348f2d63ece86a4e07e81d4b9ab64f236e | |
parent | 7ccc9515d0593364013e80c1f7de1d3a09c218cf (diff) |
add background images
-rw-r--r-- | birds.jpg | bin | 0 -> 36129 bytes | |||
-rw-r--r-- | cloud.jpg | bin | 0 -> 65333 bytes | |||
-rw-r--r-- | grass.jpg | bin | 0 -> 51143 bytes | |||
-rw-r--r-- | stream.jpg | bin | 0 -> 72987 bytes | |||
-rw-r--r-- | style.scss | 7 |
5 files changed, 7 insertions, 0 deletions
diff --git a/birds.jpg b/birds.jpg Binary files differnew file mode 100644 index 0000000..506545e --- /dev/null +++ b/birds.jpg diff --git a/cloud.jpg b/cloud.jpg Binary files differnew file mode 100644 index 0000000..3f49665 --- /dev/null +++ b/cloud.jpg diff --git a/grass.jpg b/grass.jpg Binary files differnew file mode 100644 index 0000000..e985024 --- /dev/null +++ b/grass.jpg diff --git a/stream.jpg b/stream.jpg Binary files differnew file mode 100644 index 0000000..c943c05 --- /dev/null +++ b/stream.jpg @@ -17,6 +17,13 @@ @include ikiwiki-style; +body { + background-image: url(cloud.jpg), url(grass.jpg), url(stream.jpg), url(birds.jpg); + background-repeat: no-repeat, no-repeat, no-repeat, no-repeat; + background-position: right 5em top 5em, right 5em bottom 5em, left 5em bottom 5em, left 5em top 7em; + background-size: 30em, 30em, 30em, 30em; +} + h1 { @include typeset(heading-1); } |