Advertisement
Guest User

Done-geon V0.2

a guest
Mar 4th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. <!Doctype HTML>
  2. <html>
  3.  
  4. <style>
  5.  
  6. #title {
  7. position: absolute;
  8. left: 450px;
  9. top: 12px;
  10. color: Gray;
  11. background-color: Navy;
  12. text-size: 200%;
  13. border-style: ridge;
  14. border-radius: 20px;
  15. border-color: #9999cc;
  16. width: 100px;
  17. height: 30px;
  18. text-value: "Done-geon";
  19. padding-left: 35px;
  20. }
  21.  
  22. body {
  23. background-color: Black;
  24. }
  25.  
  26. #time {
  27. position: absolute;
  28. left: 420px;
  29. top: 70px;
  30. background-color: Black;
  31. color: White;
  32. border-style: ridge;
  33. border-color: Gray;
  34. }
  35.  
  36. #timedisplay {
  37. position:absolute;
  38. left: 470px;
  39. top: 70px;
  40. background-color: Black;
  41. color: White;
  42. border-style: ridge;
  43. border-color: Gray;
  44. visibility: hidden;
  45. }
  46.  
  47. .bstand {
  48. position: absolute;
  49. background-color: Crimson;
  50. border-color: Red;
  51. color: Maroon;
  52. visibility: hidden;
  53. }
  54.  
  55. #enter {
  56. position: absolute;
  57. font-style: 'verdana', sans-serif 20px;
  58. color: Maroon;
  59. border-color: Red;
  60. background-color: Crimson;
  61. }
  62.  
  63. #sorcerer {
  64. position: absolute;
  65. left: 170px;
  66. }
  67.  
  68.  
  69. </style>
  70.  
  71. <h1>
  72. <input id='enter'; type='button'; onclick='[document.getElementById("paladin").style.visibility = "visible"] [document.getElementById("enter").style.visibility = "hidden"] [document.getElementById("sorcerer").style.visibility = "visible"
  73. ]'; value='Enter'>
  74. </h1>
  75.  
  76. <h2>
  77. <input id='title'; onclick='alert("Version .2")'; value='Done-geon'; readonly>
  78. </h2>
  79.  
  80. <body>
  81.  
  82. <p1>
  83. <input id='paladin'; class='bstand'; type='button'; onclick='[document.getElementById("paladin").style.visibility = "hidden"] [document.getElementById("sorcerer").style.visibility = "hidden"]'; value='Become Paladin'>
  84.  
  85. <input id='sorcerer'; class='bstand'; type='button'; onclick='[document.getElementById("paladin").style.visibility = "hidden"] [document.getElementById("sorcerer").style.visibility = "hidden"]'; value='Become Sorcerer';>
  86. </p1>
  87.  
  88. <p2 id='time'; onmouseover='[getElementById("timedisplay").innerHTML=Date()] [getElementById("timedisplay").style.visibility = "visible"]'; onmouseout='getElementById("timedisplay").style.visibility = "hidden"'>Time:</p2>
  89.  
  90. <p3 id='timedisplay'>
  91.  
  92.  
  93. </body>
  94.  
  95. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement