Advertisement
Our-magestry

Untitled

Mar 14th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. .box
  2. {
  3. text-align:center;
  4. padding:0px;
  5. box-shadow:none;
  6. }
  7.  
  8. .thing,.box-header,.box-footer,.box-bit
  9. {
  10. background:#39f;
  11. 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;
  12. }
  13. .box-bit{border-radius:20px;}
  14.  
  15. .box-header
  16. {
  17. border-bottom-left-radius:20px;
  18. border-bottom-right-radius:20px;
  19. margin-bottom:4px;
  20. }
  21. .box-footer
  22. {
  23. border-top-left-radius:20px;
  24. border-top-right-radius:20px;
  25. margin-top:4px;
  26. }
  27.  
  28. #box-main
  29. {
  30. left:0px;
  31. top:0px;
  32. bottom:0px;
  33. overflow:hidden;
  34. width:230px;
  35. position:absolute;
  36. }
  37. #box-res
  38. {
  39. border-top:5px solid black;
  40. border-bottom:2.5px solid black;
  41. width:75%;
  42. maxwidth:400px;
  43. right:100%;
  44. bottom:83.5%;
  45. height:8.5%;
  46. z-index:100;
  47. position:left;
  48. overflow-y:scroll;
  49. background:linear-gradient(to right,rgba(0,0,0,0.15) 0%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.15) 100%);
  50. }
  51. #box-buttons
  52. {
  53. top:0px;
  54. right:50px;
  55. bottom:0px;
  56. left:0px;
  57. width:220px;
  58. position:absolute;
  59. }
  60. #box-store
  61. {
  62. right:150px;
  63. top:0px;
  64. bottom:0px;
  65. width:220px;
  66. position:absolute;
  67. }
  68. #box-buildings,#box-upgrades
  69. {
  70. top:0px;
  71. bottom:0px;
  72. width:150px;
  73. right:0%;
  74. overflow-x:hidden;
  75. overflow-y:scroll;
  76. padding-bottom:48px;/* this is to accommodate the info and settings buttons */
  77. position:absolute;
  78. }
  79. #box-buildings
  80. {right:50%;}
  81.  
  82. #box-buildings{background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0.25) 20%);}
  83. #box-upgrades{background:rgba(0,0,0,0.3);}
  84.  
  85. #bulkDisplay{margin:-11px 24px 4px 24px;}
  86. .thing
  87. {
  88. display:inline-block;
  89. padding:0px;
  90. margin:2px;
  91. cursor:pointer;
  92. }
  93. .thing:hover,.thing.lit
  94. {
  95. background:#6cf;
  96. }
  97. .thing.cantAfford
  98. {
  99. opacity:0.65;
  100. }
  101. .upgrade.cantAfford
  102. {
  103. box-shadow:0px 0px 4px #39f;
  104. border-radius:8px;
  105. }
  106. .upgrade.cantAfford:hover
  107. {
  108. box-shadow:0px 0px 4px #6cf;
  109. }
  110. .upgrade.owned,.achiev.owned
  111. {
  112. background:#6cf;
  113. }
  114. .thing-text,.thing-costs{font-weight:bold;}
  115.  
  116. .building
  117. {
  118. border-top-left-radius:20px;
  119. border-bottom-left-radius:20px;
  120. display:block;
  121. margin-right:0px;
  122. font-size:14px;
  123. }
  124.  
  125. .fullWidth
  126. {
  127. display:block;
  128. margin-left:0px;
  129. margin-right:0px;
  130. z-index:10;
  131. }
  132. #game .fullWidth
  133. {
  134. height:auto;
  135. min-height:auto;
  136. }
  137. .fullWidth,.fullWidth:hover
  138. {
  139. /*background:rgba(0,0,0,0.5);
  140. background:linear-gradient(to bottom,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.25) 50%,rgba(0,0,0,0.5) 100%);*/
  141. background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0.25) 50%,rgba(0,0,0,0) 100%);
  142. box-shadow:none;
  143. }
  144. .fullWidth:before,.fullWidth:after
  145. {
  146. content:'';
  147. height:1px;
  148. background:linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.25) 50%,rgba(255,255,255,0) 100%);
  149. position:absolute;
  150. left:0px;
  151. right:0px;
  152. z-index:-1;
  153. }
  154. .fullWidth:before{top:-1px;}
  155. .fullWidth:after{bottom:-1px;}
  156.  
  157. .fullWidth .thing-icon
  158. {
  159. margin-top:-14px;
  160. margin-bottom:-14px;
  161. }
  162. .fullWidth .thing-text
  163. {
  164. margin-top:-4px;
  165. margin-bottom:-4px;
  166. }
  167.  
  168. #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
Advertisement