Guest User

Untitled

a guest
Jan 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.91 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="en" dir="ltr">
  3. <body bgcolor="#d92c2c" onload="updateClock(); setInterval('updateClock()', 1000
  4.  
  5. )">
  6. <head>
  7. <title>PokeParadise</title>
  8. <style type="text/css">
  9. #pokeparadise-navbar li li {
  10. float: none;
  11. border-bottom: 1px solid #ccc;
  12. }
  13.  
  14. #pokeparadise-navbar li li a {
  15. border: 0;
  16. border-left: 1px solid #ccc;
  17. border-right: 1px solid #ccc;
  18. }
  19. #pokeparadise-navbar {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. width: 100%;
  24. border-bottom: 2px solid #ccc;
  25. background: #f9f9f9;
  26. }
  27.  
  28. #pokeparadise-navbar ul {
  29. list-style: none;
  30. margin: 0;
  31. padding: .3em;
  32. }
  33.  
  34. #pokeparadise-navbar li {
  35. float: left;
  36. margin-right: 5px;
  37. }
  38.  
  39. #pokeparadise-navbar li a {
  40. display:block;
  41. background-color:#f9f9f9;
  42. border: 1px solid #f9f9f9;
  43. padding: .5em;
  44. }
  45.  
  46. #pokeparadise-navbar li a:hover {
  47. background-color: #333;
  48. color: #fff;
  49. text-decoration: none;
  50. }
  51.  
  52. #pokeparadise-navbar li ul {
  53. display: none;
  54. position: absolute;
  55. padding: 0;
  56. list-style-type: none;
  57. }
  58.  
  59. #pokeparadise-navbar li:hover > ul {
  60. display: block;
  61. }
  62.  
  63. #pokeparadise-navbar li li {
  64. float: none;
  65. border-bottom: 1px solid #ccc
  66. }
  67.  
  68. #pokeparadise-navbar li li a {
  69. border: 0;
  70. border-left: 1px solid #ccc;
  71. border-right: 1px solid #ccc;
  72. }
  73.  
  74. #hidenavbar {
  75. border: 2px solid #ccc;
  76. background: #f9f9f9;
  77. width: 85px;
  78. margin-top: 18px;
  79. }
  80.  
  81. #hidenavbar a:hover {
  82. background-color: #333;
  83. color: #fff;
  84. }
  85.  
  86. #pokeparadisemainbar {
  87. border: 2px solid #ccc;
  88. background: #f9f9f9;
  89. margin-top: 1px;
  90. padding-left: 8px;
  91. font-family: arial;
  92. float: right;
  93. width: 1100px;
  94. }
  95.  
  96. #news {
  97. margin: -5px;
  98. background: #eee;
  99. padding: 7px;
  100. border-bottom: 2px solid #d4d4d4;
  101. font-size: 14px;
  102. }
  103.  
  104. #news a {
  105. color: #787878;
  106. text-decoration: none;
  107. }
  108.  
  109. #time {
  110. float:right;
  111. padding-right: 8px;
  112. }
  113.  
  114. #affiliated {
  115. border-top: 2px solid #ccc;
  116. background: #f9f9f9;sxz
  117. padding-left: 8px;
  118. padding-right:8px;
  119. width: 100%
  120. font-family: arial;
  121. }
  122. </style>
  123. <script type="text/javascript">
  124. function toggle()
  125. {
  126. var element = document.getElementById('pokeparadise-navbar');
  127. var link = document.getElementById('expandlink');
  128. if (element.style.display=="none")
  129. {
  130. element.style.display="block";
  131. link.innerHTML="Hide Navbar";
  132. }
  133. else
  134. {
  135. element.style.display="none";
  136. link.innerHTML="Show Navbar";
  137. }
  138. }
  139. </script>
  140. </head>
  141.  
  142. <body>
  143. <div id="pokeparadise-navbar">
  144. <ul>
  145. <li>
  146. <a href="/">Home</a>
  147. </li>
  148. <li>
  149. <a href="/profile">Profile</a>
  150. <ul>
  151. <li>
  152. <a href="/profile/edit" class="first">Edit</a>
  153. </li>
  154. <li>
  155. <a href="/profile/view">View</a>
  156. </li>
  157. </ul>
  158. </li>
  159. <li>
  160. <a href="/inbox">Inbox</a>
  161. </li>
  162. <li>
  163. <a href="/adopt">Adopt</a>
  164. </li>
  165. <li>
  166. <a href="/shops">Shops</a>
  167. <ul>
  168. <li>
  169. <a href="/shops/1">Buy</a>
  170. </li>
  171. <li>
  172. <a href="/shops/2">Sell</a>
  173. </li>
  174. </ul>
  175. </li>
  176. <li>
  177. <a href="/bank">Bank</a>
  178. </li>
  179. </ul>
  180.  
  181. <div id="time">
  182. <script type="text/javascript">
  183. <!--
  184.  
  185. function updateClock ( )
  186. {
  187. var currentTime = new Date ( );
  188.  
  189. var currentHours = currentTime.getHours ( );
  190. var currentMinutes = currentTime.getMinutes ( );
  191. var currentSeconds = currentTime.getSeconds ( );
  192.  
  193. // Pad the minutes and seconds with leading zeros, if required
  194. currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
  195. currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
  196.  
  197. // Choose either "AM" or "PM" as appropriate
  198. var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";
  199.  
  200. // Convert the hours component to 12-hour format if needed
  201. currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
  202.  
  203. // Convert an hours component of "0" to "12"
  204. currentHours = ( currentHours == 0 ) ? 12 : currentHours;
  205.  
  206. // Compose the string for display
  207. var currentTimeString = currentHours + ":" + currentMinutes + ":" + currentSeconds + "
  208.  
  209. " + timeOfDay;
  210.  
  211. // Update the time display
  212. document.getElementById("clock").firstChild.nodeValue = currentTimeString;
  213. }
  214.  
  215. // s-->
  216. </script>
  217. </div>
  218. </div>
  219. <br />
  220. <div id="hidenavbar"><a href="javascript:toggle();" id="expandlink">Hide
  221.  
  222. Navbar</a></div>
  223.  
  224.  
  225.  
  226. <div id="pokeparadisemainbar">
  227. <div class="news">News</div>
  228. <table width="100%">
  229. <td width="75%" valign="top">
  230. <p> <b> Updates</b>
  231. <br/>Hello, this is the first unofficial release of PokeParadise! I am Logan. I am the
  232.  
  233. creator of PokeParadise and I based it off of poketech. My adoption hero is Ryan; the
  234.  
  235. creator of poketech. Just to let you know.
  236. <br/><br/>
  237. I'm thinking of recreating this site not as a Pokemon site, but some sort or forum and
  238.  
  239. chat where you can earn coins and buy special titles and upgrades of some sort.
  240.  
  241. There would be a cool function to battle eventually.
  242. </div>
  243.  
  244. <div id="affiliated">
  245. <p>
  246. This site is in no way affiliated with Nintendo, Gamefreak, or any other pokemon
  247.  
  248. ensuring company. PokeParadise.net is in no way affiliated with Nintendo,
  249.  
  250. GameFreak, etc. All Pokemon sprites were created by Nintendo, GameFreak, etc.
  251. </p>
  252. </div>
  253.  
  254. </body>
  255. </html>
Add Comment
Please, Sign In to add comment