demo.rml 356 B

12345678910111213141516171819202122232425262728
  1. <rml>
  2. <head>
  3. <title>Demo</title>
  4. <link type="text/template" href="window.rml" />
  5. <style>
  6. body
  7. {
  8. width: 300dp;
  9. height: 225dp;
  10. margin: auto;
  11. }
  12. div#title_bar div#icon
  13. {
  14. display: none;
  15. }
  16. div#content
  17. {
  18. text-align: left;
  19. }
  20. </style>
  21. </head>
  22. <body template="window">
  23. This is a sample.
  24. </body>
  25. </rml>