Skip to content
This repository has been archived by the owner on Jun 1, 2018. It is now read-only.

Commit

Permalink
Added HTML license to demo files
Browse files Browse the repository at this point in the history
  • Loading branch information
Rik Cabanier authored and emalasky committed May 7, 2012
1 parent 7f2ab35 commit f3a9aac
Show file tree
Hide file tree
Showing 4 changed files with 692 additions and 1 deletion.
27 changes: 27 additions & 0 deletions demos/compositing/background.html
@@ -0,0 +1,27 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<style>
#example {
width: 500px;
height: 250px;
background-image: url(http://www.css3.info/wp-content/themes/new_css3/img/sheep.png), url(http://www.css3.info/wp-content/themes/new_css3/img/betweengrassandsky.png);
background-position: center bottom, left top;
background-repeat: no-repeat;
-moz-box-shadow: 10px 10px 5px #888;
-webkit-box-shadow: 10px 10px 5px #888;
box-shadow: 10px 10px 5px #888;
text-shadow: 3px 3px 0px #2c2e38, 5px 5px 0px #5c5f72;
}
</style>
</head>
<div id='example'><p>
This box has two background images, the first a sheep (aligned to the bottom and center) and the second a grass and sky background (aligned to the top-left corner).
</p>
</div>
<p>Unless otherwise noted, code and content is licensed under a <a href="http://creativecommons.org/publicdomain/zero/1.0/">Public Domain License</a>.</p>
<body>
</body>
</html>

0 comments on commit f3a9aac

Please sign in to comment.