Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. body{
  2. width: 1000px;
  3. font-family: "Bookman Old Style";
  4. margin:auto;
  5. }
  6. header{
  7. float:left;
  8. width:1000px;
  9. background-image: url("./header.png");
  10. text-align: center;
  11. }
  12. aside{
  13. padding-top: 20px;
  14. float:left;
  15. width:200px;
  16. height: 700px;
  17. background-image: url("./aside.png");
  18. background-repeat: round;
  19.  
  20. }
  21. main{
  22. float: left;
  23. width:800px;
  24. height: 640px;
  25.  
  26. }
  27. #ekran_startowy_div{
  28. text-align: center;
  29. background-color: rgb(255, 217, 0);
  30. float: left;
  31. width:800px;
  32. height: 640px;
  33. }
  34. #eksploracja_div{
  35. background-color: aqua;
  36. float: left;
  37. width:800px;
  38. height: 640px;
  39.  
  40. }
  41. #sklep_div{
  42. background-image: url("./sklep.png");
  43. float: left;
  44. width:800px;
  45. height: 640px;
  46. }
  47. #crafting_div{
  48. background-color: rgb(0, 17, 255);
  49. float: left;
  50. width:800px;
  51. height: 640px;
  52. }
  53. #postac_div{
  54. background-image: url("./postac.png");
  55. background-repeat: no-repeat;
  56. float: left;
  57. width:800px;
  58. height:640px;
  59. }
  60. footer{
  61. float: left;
  62. width: 800px;
  63. background-image: url("./header.png");
  64. background-repeat:round;
  65.  
  66. text-align:center;
  67. height: 80px;
  68. vertical-align: middle;
  69. }
  70. h2{
  71. font-size: 14px;
  72. text-align: center;
  73. }
  74. input[type=button]{
  75. border-radius: 4px;
  76. border:solid 1px;
  77. background-image: url("./button.png");
  78. background-size: 100px;
  79. font-family: "Bookman Old Style";
  80. margin-bottom: 10px;
  81. padding-bottom: 5px;
  82. text-align: center;
  83. color: white;
  84. text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
  85. cursor: pointer;
  86.  
  87. }
  88. .pasek{
  89. width: 100%;
  90. height: 30px;
  91. background-color: rgba(0,0,0,0.2);
  92. border-radius: 15px;
  93. float: left;
  94. }
  95. #health{
  96. width:20%;
  97. background-color: red;
  98. border-radius: 15px;
  99. color: white;
  100. }
  101. #mana{
  102. width:10%;
  103. background-color: blue;
  104. border-radius: 15px;
  105. color: white;
  106. }
  107. #punkty{
  108. width:5%;
  109. background-color: orange;
  110. border-radius: 15px;
  111. }
  112. #health, #mana, #punkty{
  113. height: 30px;
  114. display: inline-block;
  115. }
  116. #przyciski{
  117. display: block;
  118. margin-top: 30%;
  119. }
  120. table{
  121. width: 90%;
  122. margin: 0 auto;
  123. margin-top: 1%;
  124. }
  125. td, th{
  126. text-align:center;
  127. vertical-align: middle;
  128. }
  129. img{
  130. border-radius: 15px;
  131.  
  132. }
  133. input[name=ilosc_przedmiotow]{
  134. width:50px;
  135.  
  136. }
  137. #przyciski_sklep{
  138. position:absolute;
  139. margin-top:400px;
  140. margin-left:50px;
  141.  
  142.  
  143. }
  144. input[name=zakup]{
  145. margin-left: 153px;
  146. margin-top:420px;
  147. position: absolute;
  148. }
  149. #wybrany_przedmiot{
  150. border-radius: 15px;
  151. position:absolute;
  152. margin-left:650px;
  153. margin-top:416px;
  154.  
  155.  
  156. }
  157. label{
  158. cursor: pointer;
  159. }
  160. p{
  161. position:absolute;
  162. margin-left:485px;
  163. margin-top:427px;
  164. font-family: "Bookman Old Style";
  165.  
  166. }
  167. td{
  168. width:100px;
  169. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement