IronDizaster

keyboard attempt numero dos

Jul 17th, 2023 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. Let's make a game!
  2. name:Keyboard Attempt
  3. by:IronDizaster
  4. desc:Keyboard Attempt
  5. version:1
  6. Settings
  7. background:https://file.garden/XSIm8ZidV1rvya38/PaintDry/background2.png
  8. no particles
  9. no bulk particles
  10. Upgrades
  11. *ResetPass
  12. name:Reset
  13.  
  14. *PassA
  15.  
  16. *PassB
  17.  
  18. *PassC
  19.  
  20. *PassD
  21.  
  22. *PassE
  23.  
  24. *PassF
  25.  
  26. *PassG
  27.  
  28. *PassH
  29.  
  30. *PassEnter
  31. name:Enter
  32.  
  33. *bar
  34. name:-
  35. class:fullWidth
  36.  
  37. *LetBack
  38. name:Delete
  39.  
  40. *LetA
  41. name:A
  42.  
  43. *LetB
  44. name:B
  45.  
  46. *LetC
  47. name:C
  48.  
  49. *LetD
  50. name:D
  51. *LetE
  52. name:E
  53.  
  54. *LetF
  55. name:F
  56.  
  57. *LetG
  58. name:G
  59.  
  60. *LetH
  61. name:H
  62.  
  63. *LetI
  64. name:I
  65.  
  66. *LetJ
  67. name:J
  68.  
  69. *LetK
  70. name:K
  71.  
  72. *LetL
  73. name:L
  74. *LetM
  75. name:M
  76.  
  77. *LetN
  78. name:N
  79.  
  80. *LetO
  81. name:O
  82.  
  83. *LetP
  84. name:P
  85.  
  86. *LetQ
  87. name:Q
  88.  
  89. *LetR
  90. name:R
  91.  
  92. *LetS
  93. name:S
  94.  
  95. *LetT
  96. name:T
  97.  
  98. *LetU
  99. name:U
  100.  
  101. *LetV
  102. name:V
  103.  
  104. *LetW
  105. name:W
  106.  
  107. *LetX
  108. name:X
  109.  
  110. *Lety
  111. name:Y
  112.  
  113. *LetZ
  114. name:Z
  115.  
  116. Resources
  117. *letterPos
  118. *nameable
  119. name:Click to rename
  120.  
  121. Layout
  122. *main
  123. contains:Upgrades
  124. header:Enter Your Name Here!
  125. *buildings
  126. contains:Resources, Buildings
  127. header:Console
  128. tooltip origin:left
  129.  
  130. CSS
  131. #game
  132. {
  133. background:cornflowerblue;
  134. color:white;
  135. }
  136. .box
  137. {
  138. text-align:center;
  139. padding:0px;
  140. box-shadow:none;
  141. border:1px solid rgba(0,0,0,0.9);
  142. }
  143.  
  144. .thing,.box-header,.box-footer,.box-bit
  145. {
  146. background:#39f;
  147. box-shadow:0px 0px 4px rgba(0,0,0,0.2),1px 1px 2px rgba(0,0,0,0.5),0px 0px 4px rgba(255,255,255,0.5) inset;
  148. border-radius:8px;
  149. }
  150. .box-bit{border-radius:20px;}
  151.  
  152. .box-header
  153. {
  154. border-bottom-left-radius:20px;
  155. border-bottom-right-radius:20px;
  156. margin-bottom:4px;
  157. }
  158. .box-footer
  159. {
  160. border-top-left-radius:20px;
  161. border-top-right-radius:20px;
  162. margin-top:4px;
  163. }
  164. .fullWidth
  165. {
  166. height:auto;
  167. min-height:auto;
  168. width:100%;
  169. }
  170. #box-main
  171. {
  172. top:0px;
  173. bottom:0px;
  174. overflow:hidden;
  175. width:80%;
  176. position:absolute;
  177. }
  178.  
  179. #box-buildings
  180. {
  181. top:0px;
  182. bottom:0px;
  183. width:20%;
  184. right:0%;
  185. overflow-x:hidden;
  186. overflow-y:scroll;
  187. padding-bottom:48px;/* this is to accommodate the info and settings buttons */
  188. position:absolute;
  189. }
  190.  
  191. #box-buildings{background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0.25) 20%);}
  192.  
  193. #bulkDisplay{margin:-11px 24px 4px 24px;}
  194.  
  195.  
  196. .thing
  197. {
  198. display:inline-block;
  199. padding:0px;
  200. margin:2px;
  201. cursor:pointer;
  202. }
  203. .thing:hover,.thing.lit
  204. {
  205. background:#6cf;
  206. }
  207. .thing.cantAfford
  208. {
  209. opacity:0.65;
  210. }
  211. .upgrade.cantAfford
  212. {
  213. box-shadow:0px 0px 4px #39f;
  214. border-radius:8px;
  215. }
  216. .upgrade.cantAfford:hover
  217. {
  218. box-shadow:0px 0px 4px #6cf;
  219. }
  220. .upgrade.owned,.achiev.owned
  221. {
  222. background:#6cf;
  223. }
  224. .thing-text,.thing-costs{font-weight:bold;}
  225.  
  226. .building
  227. {
  228. border-top-left-radius:20px;
  229. border-bottom-left-radius:20px;
  230. display:block;
  231. margin-right:0px;
  232. font-size:14px;
  233. }
  234.  
  235. #game.filtersOn .thing-icon{filter:drop-shadow(3px 3px 1px rgba(0,0,0,0.5));}
Advertisement
Add Comment
Please, Sign In to add comment