background.rml 526 B

1234567891011121314151617181920212223242526272829303132333435
  1. <rml>
  2. <head>
  3. <style>
  4. body
  5. {
  6. width: 100%;
  7. height: 100%;
  8. z-index: bottom;
  9. z-index: -1;
  10. }
  11. starfield
  12. {
  13. display: block;
  14. width: 100%;
  15. height: 100%;
  16. z-index: 1;
  17. star-decorator: starfield;
  18. star-num-layers: 5;
  19. star-top-colour: #fffc;
  20. star-bottom-colour: #fff3;
  21. star-top-speed: 80.0;
  22. star-bottom-speed: 20.0;
  23. star-top-density: 8;
  24. star-bottom-density: 20;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <img src="background.tga" />
  30. <starfield />
  31. </body>
  32. </rml>