CSS3 supports having multiple backgrounds, so after a little tinkering I came up with following css snippets.
body {
background-image: url('theme_images/corner.svg'), url('theme_images/sysart.svg');
background-repeat: no-repeat;
background-position: top left, bottom right;
background-size: auto 30%, 20% 20%;
}
The frontpage was some what different.
html.title body {The whole css can be seen in https://github.com/sysart/reveal.js/blob/sysart-theme/sysart.css#L10
background:url("theme_images/front.svg"), url('theme_images/sysart.svg');
background-repeat: no-repeat;
background-position: top left, bottom right;
background-size: 100% auto, 20% 20%;
}
Looks good. When I try to attach a svg background to my slides its seems to scale somewhat differently when attached to body than when attached to a section any idea what could cause this?
VastaaPoista