Mercurial > boosterpack
changeset 4:90181bbf7a0c boosterpack
[svn r6] added Dylan's awesome stuff.
author | robert |
---|---|
date | Tue, 08 Sep 2009 06:05:47 -0400 |
parents | 2e849c856026 |
children | e91d6f908222 |
files | index.html pkb.jpg rlm/booster.prefs style.css |
diffstat | 4 files changed, 78 insertions(+), 29 deletions(-) [+] |
line wrap: on
line diff
1.1 --- a/index.html Tue Sep 08 05:55:51 2009 -0400 1.2 +++ b/index.html Tue Sep 08 06:05:47 2009 -0400 1.3 @@ -1,44 +1,37 @@ 1.4 <html> 1.5 <head> 1.6 <title> 1.7 -Pokemon Booster Pack Generator 1.8 +Pokèmon Booster Pack Generator 1.9 </title> 1.10 +<link href="./style.css" rel="stylesheet" type="text/css"> 1.11 </head> 1.12 1.13 <body> 1.14 -<h1>Pokèmon Draft Battle!!</h1> 1.15 1.16 +<div id="header"> 1.17 1.18 -<div id="out1" style="border: 1px solid black; width: 100%; height: 70%; overflow: auto"> 1.19 + <h1>Pokèmon Draft Battle!!</h1> 1.20 + 1.21 + <form id="radiobuttons" onclick="change_rules(['radio1'], ['result'] );"> 1.22 + <h3>Pick a Set: </h3> 1.23 + <input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Base Set"><a href="#">Base Set</a> 1.24 + <input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Jungle"><a href="#">Jungle</a> 1.25 + <input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Fossil"><a href="#">Fossil</a> 1.26 + <input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Team Rocket"><a href="#">Team Rocket</a> 1.27 + <input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Gym Challenge"><a href="#">Gym Challenge </a> 1.28 + <input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Gym Heroes"><a href="#">Gym Heroes</a> 1.29 + 1.30 + <input type="button" id="b2" value="Generate Booster Pack »" onclick="gen_pack(['NO_CACHE'], ['out1']);"> 1.31 + </form> 1.32 + 1.33 </div> 1.34 1.35 +<div id="out1"></div> 1.36 1.37 -<input type="button" id="b2" size="6" value='Generate Booster Pack' onclick="gen_pack(['NO_CACHE'], ['out1']);"><br/> 1.38 - 1.39 - 1.40 - 1.41 -<form> 1.42 -<DIV id="radiobuttons" onclick="change_rules(['radio1'], ['result'] );"> 1.43 -<input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Base Set">Base Set 1.44 -<input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Jungle">Jungle 1.45 -<input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Fossil">Fossil 1.46 -<input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Team Rocket">Team Rocket 1.47 -<input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Gym Challenge">Gym Challenge 1.48 -<input TYPE="radio" ID="radio1" NAME="radio1" VALUE="Gym Heroes">Gym Heroes 1.49 - 1.50 - 1.51 - 1.52 -<H4>Current Settings:</h4> 1.53 - 1.54 - 1.55 - 1.56 -</DIV> 1.57 -<div id='result'> </div> 1.58 -</form> 1.59 - 1.60 - 1.61 - 1.62 - 1.63 +<div id="footer"> 1.64 + <h3>Current Settings:</h3> 1.65 + <div id="result">There are no Current Settings</div> 1.66 +</div> 1.67 1.68 </body> 1.69 </html> 1.70 \ No newline at end of file
2.1 Binary file pkb.jpg has changed
3.1 Binary file rlm/booster.prefs has changed
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/style.css Tue Sep 08 06:05:47 2009 -0400 4.3 @@ -0,0 +1,56 @@ 4.4 +/* RESETS */ 4.5 +body,html{overflow:hidden;} 4.6 +body,html,ul,ol,h1,h2,h3,h4,h5,h6,div,span,table,tr,td,input{margin:0;padding:0;font:12px Arial,Helvetica,Verdana,sans-serif} 4.7 +ul{list-style-type:none;} 4.8 + 4.9 +h1{font-size:170%;margin-right:1em;color:#026;display:block;margin-bottom:6px;} 4.10 +h3{font-weight:bolder;display:inline;} 4.11 + 4.12 +/* MAIN BODY */ 4.13 +body{padding:6px;padding-top:75px;} 4.14 + 4.15 + 4.16 +#footer{position:absolute;left:6px;bottom:6px;right:6px;padding:4px 0px;padding-left:6px;} 4.17 +#result{display:inline;color:#333;} 4.18 + 4.19 + 4.20 +#header{position:absolute;top:3px;left:6px;right:6px; 4.21 +background:#8be; 4.22 + 4.23 +height:60px; 4.24 +overflow:hidden; 4.25 +padding:8px; 4.26 +padding-bottom:0px; 4.27 +padding-right:0px; 4.28 +} 4.29 +#header *{vertical-align:middle;} 4.30 + 4.31 + 4.32 + 4.33 +/* OUTPUT */ 4.34 +#out1{ 4.35 + border:1px solid #888; 4.36 + position:absolute;left:6px;top:75px;right:6px;bottom:32px; 4.37 + display:block; 4.38 + overflow-y:auto; 4.39 + overflow-x:hidden; 4.40 +} 4.41 + 4.42 + 4.43 +/* UI */ 4.44 +#radiobuttons{display:inline;} 4.45 +#radiobuttons a{text-decoration:none;color:#000;font-size:14px;margin-left:2px;margin-right:.6em;} 4.46 +#b2{display:none;} 4.47 + 4.48 + 4.49 + 4.50 + 4.51 +/*THEMES */ 4.52 +#out1{background:#fff url("./pkb.jpg") no-repeat;background-position:bottom right;} 4.53 + 4.54 + 4.55 +#header,#footer{background:#e0eeff;border:1px solid #c3d9ff;} 4.56 + 4.57 +/*#header,#footer{background:#f66;border:none;} 4.58 +#header{border-bottom:2px solid #000;} 4.59 +h1{color:#000}*/ 4.60 \ No newline at end of file