IronDizaster

Repositioning Buttons

Sep 24th, 2023 (edited)
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. Let's make a game!
  2.  
  3. Settings
  4. stylesheet:stuff/bigBlue.css
  5.  
  6. Buttons
  7. *bigButton1
  8. name:Big Button 1
  9. class:bigButton hasFlares
  10. icon:https://file.garden/YYjCqvtBp0P7hcN1/Coin%20Mania/coin%20button%20icon.png
  11. tag:rightButton
  12.  
  13. *bigButton2
  14. name:Big Button 2
  15. class:bigButton hasFlares
  16. icon:https://file.garden/YYjCqvtBp0P7hcN1/Coin%20Mania/coin%20button%20icon.png
  17. tag:leftButton
  18.  
  19. *button1
  20. name:Button 1
  21.  
  22. *button2
  23. name:Button 2
  24.  
  25. *button3
  26. name:Button 3
  27.  
  28. *specialButton1
  29. name:Special Button 1
  30. tag:specialButton
  31. class:special
  32.  
  33. *specialButton2
  34. name:Special Button 2
  35. tag:specialButton
  36. class:special
  37.  
  38. *specialButton3
  39. name:Special Button 3
  40. tag:specialButton
  41. class:special
  42.  
  43. *specialButton4
  44. name:Special Button 4
  45. tag:specialButton
  46. class:special
  47.  
  48. *specialButton5
  49. name:Special Button 5
  50. tag:specialButton
  51. class:special
  52.  
  53. Resources
  54. *res1
  55. name:Resource 1
  56. start with:100
  57.  
  58. *res2
  59. name:Resource 2
  60. start with:100
  61.  
  62. *res3
  63. name:Resource 3
  64. start with:100
  65.  
  66. Layout
  67.  
  68. *specialButtons
  69. contains:tag:specialButton
  70. class:specialButtons
  71. *main
  72. contains:res, buttons
  73. *res
  74. contains:Resources
  75. class:fullWidth
  76. *buttons
  77. contains:Buttons
  78. *store
  79. contains:buildings, upgrades
  80. *buildings
  81. contains:BulkDisplay, Buildings
  82. header:Buildings
  83. tooltip origin:left
  84. *upgrades
  85. contains:Upgrades
  86. header:Upgrades
  87. costs:hide
  88. names:hide
  89.  
  90. *rightButtonBox
  91. contains:tag:rightButton
  92.  
  93. *leftButtonBox
  94. contains:tag:leftButton
  95.  
  96. CSS
  97.  
  98. .special
  99. {
  100. margin:0px;
  101. height:40px;
  102. width:33.3333333%;
  103. float:left;
  104. }
  105. #box-specialButtons
  106. {
  107. width:40%;
  108. left:60%;
  109. max-height:40px;
  110. padding:0px;
  111. background:#39f;
  112. overflow:auto;
  113. }
  114.  
  115. #box-buttons
  116. {
  117. top:35%;
  118. }
  119.  
  120. #box-main
  121. {
  122. top:80%;
  123. }
  124.  
  125. #box-store
  126. {
  127. top:40px;
  128. }
  129.  
  130. #box-rightButtonBox
  131. {
  132. right:35%;
  133. top:40%;
  134. }
  135.  
  136. #box-leftButtonBox
  137. {
  138. top:40%;
  139. right:5%;
  140. }
  141.  
Advertisement
Add Comment
Please, Sign In to add comment