Advertisement
nPhoenix

battle

Sep 30th, 2014
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.41 KB | None | 0 0
  1. #battle{
  2. width: 241px;
  3. height: 380px;
  4. float:left;
  5. margin-left: 5px;
  6. border: 3px solid #000000;
  7. position:relative;
  8. overflow:hidden;
  9. }
  10. #field{
  11.     background-image:url(grass.png);
  12.     height:141px;
  13. }
  14. #opponent .pokemon{
  15.     float: right;
  16.     margin-right:26px;
  17.     margin-top:20px;
  18. }
  19. #opponent .info{
  20.     padding: 2px 0px 0px 4px;
  21.     font-size: 12px;
  22.     font-face: Arial;
  23.     float:left;
  24.     width: 106px;
  25.     height:32px;
  26.     margin-top:20px;
  27.     margin-left:10px;
  28.     background-repeat:no-repeat;
  29.     background-image:url(enemy_info.png);
  30. }
  31. #you .info{
  32.     padding: 2px 0px 0px 12px;
  33.     font-size: 12px;
  34.     font-face: Arial;
  35.     float:right;
  36.     width: 106px;
  37.     height:32px;
  38.     margin-top:-7px;
  39.     margin-left:10px;
  40.     background-repeat:no-repeat;
  41.     background-image:url(your_info.png);
  42. }
  43. #opponent .level{
  44.     float:right;
  45.     padding-right:15px;
  46. }
  47. #you .level{
  48.     float:right;
  49.     padding-right:15px;
  50. }
  51. #opponent .hp{
  52.     background-color: #000000;
  53.     margin-top:3px;
  54.     margin-left:40px;
  55.     width:50px;
  56.     height:2px;
  57. }
  58. #you .hp{
  59.     background-color: #000000;
  60.     margin-top:3px;
  61.     margin-left:14px;
  62.     width:50px;
  63.     height:2px;
  64. }
  65. .hp .current{
  66.     background-color: #FF0000;
  67.     height:2px;
  68. }
  69. #opponent .hp .current{
  70.     width:50px;
  71. }
  72. #you .hp .current{
  73.     width:50px;
  74. }
  75. #you .pokemon{
  76.     float:left;
  77.     margin-top:7px;
  78.     margin-left:23px;
  79. }
  80. #effect .you{
  81.     width:120px;
  82.     position:absolute;
  83.     z-index:55;
  84.     height:141px;
  85. }
  86. #effect .opponent{
  87.     width:120px;
  88.     margin-left:121px;
  89.     position:absolute;
  90.     z-index:55;
  91.     height:141px;
  92. }
  93. #effect .all{
  94.     width:241px;
  95.     position:absolute;
  96.     z-index:77;
  97.     height:141px;
  98.     margin-left:-15px;
  99. }
  100. #toolbar{
  101.     background-image:url(toolbar_bg.png);
  102.     background-repeat:no-repeat;
  103.     z-index:99;
  104.     width: 241px;
  105.     height:200px;
  106. }
  107. #pokeballs{
  108.     height:20px;
  109.     position:relative;
  110.     padding-top:4px;
  111.     padding-bottom:1px;
  112. }
  113. #pokeballs .you{
  114.     display:inline;
  115.     position:absolute;
  116.     left:3px;
  117.     padding-top:1px;
  118. }
  119. #pokeballs .opponent{
  120.     display:inline;
  121.     position:absolute;
  122.     right:3px;
  123.  
  124. }
  125. #fight{
  126.     margin-left: 17px;
  127. }
  128. #bag{
  129.     margin-left: 1px;
  130.     float:left;
  131. }
  132. #party{
  133.     margin-left:2px;
  134. }
  135. #run{
  136.     margin-top:10px;
  137.     float:left;
  138.     margin-left:2px;
  139. }
  140. .fight{
  141.     cursor:pointer;
  142.     background-image:url(large_normal.png);
  143.     background-repeat:no-repeat;
  144.     background-position: 19px 2px;
  145. }
  146. .fight:hover{
  147.     background-image:url(large_hover.png);
  148. }
  149. .bag,.party,.run{
  150.     cursor:pointer;
  151.     float:left;
  152.     width:80px;
  153.     height:53px;
  154.     background-image:url(small_normal.png);
  155.     background-repeat:no-repeat;   
  156. }
  157. .bag{
  158.     background-position: 3px 2px;
  159. }
  160. .run{
  161.     background-position: 4px 12px;
  162. }
  163. .party{
  164.     background-position: 4px 2px;
  165. }
  166. .bag:hover,.party:hover,.run:hover{
  167.     background-image:url(small_hover.png);
  168. }
  169. #moves{
  170.     padding-left:1px;
  171. }
  172. .move{
  173.     margin-left:3px;
  174.     width:115px;
  175.     height:54px;
  176.     background-image:url(move.png);
  177.     float:left;
  178.     margin-bottom:2px;
  179.     cursor:pointer;
  180. }
  181. .move:hover{
  182.     background-image:url(move_hover.png);
  183. }
  184. .move .name{
  185.     text-align:center;
  186.     padding-top:9px;
  187.     font-family:Corbel;
  188.     font-size:13px;
  189. }
  190. .move .info{
  191.     padding: 6px 13px 0px 13px;
  192. }
  193. .move .info .type{
  194.     float:left;
  195. }
  196. .move .info .pp{
  197.     float:right;
  198.     font-family:Arial Narrow;
  199.     font-size:10px;
  200. }
  201. #moves{
  202.     display:none;
  203. }
  204. #dialogue{
  205.     background-image:url(images/global/chat_window.png);
  206.     height:47px;
  207.     background-color: #000;
  208.     z-index:99;
  209. }
  210. #dialogue p.text{
  211.     margin:0;
  212.     padding:5px 20px 0px 10px;
  213.     font-family:Arial;
  214.     font-size:14px;
  215. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement