start_game.rml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <rml>
  2. <head>
  3. <title>Start Game</title>
  4. <link type="text/template" href="../../assets/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. decorator: image( icon-game );
  15. }
  16. form div
  17. {
  18. width: 200dp;
  19. margin: auto;
  20. }
  21. color
  22. {
  23. display: inline-block;
  24. width: 9dp;
  25. height: 9dp;
  26. border: 1dp #666;
  27. margin-right: 0.5em;
  28. }
  29. </style>
  30. </head>
  31. <body template="window">
  32. <form onsubmit="start">
  33. <div>
  34. <p>
  35. Difficulty<br/>
  36. <label><input type="radio" name="difficulty" value="easy" checked="true" /> Easy</label><br />
  37. <label><input type="radio" name="difficulty" value="hard" /> Hard</label>
  38. </p>
  39. <p>
  40. Colour<br/>
  41. <select name="colour">
  42. <option value="233,116,81"><color style="background: rgb(233,116,81)"/>Burnt Sienna</option>
  43. <option value="127,255,0"><color style="background: rgb(127,255,0)"/>Chartreuse</option>
  44. <option value="21,96,189"><color style="background: rgb(21,96,189)"/>Denim</option>
  45. <option value="246,74,138"><color style="background: rgb(246,74,138)"/>French Rose</option>
  46. <option value="255,0,255"><color style="background: rgb(255,0,255)"/>Fuchsia</option>
  47. <option value="218,165,32"><color style="background: rgb(218,165,32)"/>Goldenrod</option>
  48. <option selected value="255,255,240"><color style="background: rgb(255,255,240)"/>Ivory</option>
  49. </select>
  50. </p>
  51. </div>
  52. <input type="submit">Start Game!</input>
  53. </form>
  54. </body>
  55. </rml>