Advertisement
bitetti

HTML to RPG sheet

Nov 4th, 2011
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.47 KB | None | 0 0
  1. <rml>
  2.   <head>
  3.     <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  4.     <title>ficha_daemon_basica.html</title>
  5.     <link type="text/rcss" href="rkt.rcss"/>
  6.     <link type="text/rcss" href="invader.rcss"/>
  7.     <style type="text/css"><![CDATA[
  8. body {
  9.  font-family: Delicious;
  10.  font-weight: normal;
  11.  font-style: normal;
  12.  color: rgb(0, 0, 0);
  13. }
  14. #window {
  15.  width: 460px;
  16.  height: 400px;
  17.  min-width: 400px;
  18.  min-height: 400px;
  19. }
  20. #daemon {
  21.  width: 216px;
  22.  height: 360px;
  23.  position: absolute;
  24.  text-align: left;
  25.  font-size: 14px;
  26.  font-weight: bold;
  27. }
  28. #avatarbox {
  29.  width: 86px;
  30.  height: 86px;
  31.  top: 0px;
  32.  left: 0px;
  33. }
  34. #avatarbox img {
  35. width: 80px;
  36. height: 80px;
  37. margin: 2px;
  38. }
  39. #basicsatt {
  40.  width: 100%;
  41.  position: absolute;
  42.  left: 86px;
  43.  top: 0px;
  44.  font-size: 12px;
  45. }
  46. #att1 {
  47.  position: absolute;
  48.  top: 0px;
  49.  left: 0px;
  50. }
  51. #att2 {
  52.  top: 16px;
  53.  left: 109px;
  54.  position: absolute;
  55. }
  56. .attrs_conteiner {
  57.  position: absolute;
  58.  top: 0px;
  59.  left: 35%;
  60.  width: 60%;
  61. }
  62. #charnome {
  63.  font-weight: bold;
  64.  text-align: center;
  65.  width: 100%;
  66.  font-size: 16px;
  67. }
  68. #pontosdeatributos {
  69.  font-size: 16px;
  70.  width: 100%;
  71.  text-align: center;
  72.  font-weight: bold;
  73.  position: absolute;
  74.  top: 100px;
  75.  left: 0px;
  76. }
  77. #pontosatt_secundarios {
  78.  font-size: 14px;
  79.  padding-top: 8px;
  80. }
  81. #footbar1 {
  82.  width: 100%;
  83.  position: absolute;
  84.  top: 200px;
  85.  left: 0px;
  86. }
  87. .sep1 {
  88.  width: 55%;
  89.  text-align: center;
  90.  vertical-align: middle;
  91.  display: inline;
  92.  float: left;
  93. }
  94. .sep2 {
  95.  width: 20%;
  96.  text-align: center;
  97.  vertical-align: middle;
  98.  display: inline;
  99.  float: left;
  100. }
  101. #wwpdata1 {
  102.  width: 216px;
  103.  height: 360px;
  104.  position: absolute;
  105.  text-align: left;
  106.  font-size: 14px;
  107.  font-weight: bold;
  108. }
  109. ]]></style>
  110.   </head>
  111.   <body id="window">
  112.     <div id="daemon">
  113.       <div id="charnome">Cibele Arnemetia </div>
  114.       <div id="avatarbox"><img
  115. src="Cibele.jpg"
  116.          alt="avatar" /><br />
  117.       </div>
  118.       <div id="basicsatt" style="top: 25px; left: 89px; width: 123px;">Nivel:<br />
  119.         Classe:<br />
  120.         Raca:<br />
  121.         Idade:<br />
  122.         <div class="attrs_conteiner">{nivel}<br />
  123.           {class}<br />
  124.           {raca}<br />
  125.           {idade}<br />
  126.         </div>
  127.       </div>
  128.       <div id="att1" style="top: 105px; width: 102px; left: 0px;">CON:<br />
  129.         FOR:<br />
  130.         DEX:<br />
  131.         AGI:
  132.         <div class="attrs_conteiner">{con}<br />
  133.           {for}<br />
  134.           {dex}<br />
  135.           {agi}<br />
  136.         </div>
  137.         <br />
  138.       </div>
  139.       <div id="att2" style="top: 108px; width: 106px; height: 74px;">INT:<br />
  140.         WILL:<br />
  141.         PER:<br />
  142.         CAR:<br />
  143.         <div class="attrs_conteiner">{int}<br />
  144.           {will}<br />
  145.           {dex}<br />
  146.           {car}<br />
  147.         </div>
  148.       </div>
  149.       <div id="pontosdeatributos" style="top: 187px; height: 58px;">
  150.         <div id="pontosatt_principais">PV:{pv} PM:{pm} </div>
  151.         <div id="pontosatt_secundarios">IP:{ip} PH:{ph} PF:{pf}</div>
  152.         <br />
  153.       </div>
  154.       <div id="footbar1" style="top: 251px; left: 0px; height: 109px;">
  155.         <div class="sep1">{c} <br />
  156.         </div>
  157.         <div class="sep2">{b}<br />
  158.         </div>
  159.         <div class="sep2">{a}<br />
  160.         </div>
  161.       </div>
  162.       <br />
  163.     </div>
  164.     <div id="wwpdata1" style="top: 8px; left: 240px;">fichas<br />
  165.     </div>
  166.   </body>
  167. </rml>
  168.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement