IronDizaster

Repositioning Elements Tutorial

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