Lllen

Untitled

Aug 1st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.16 KB | None | 0 0
  1. #buttonSize{
  2. align: center;
  3. }
  4. .button2048 {
  5. display: inline-block;
  6. color: black;
  7. text-decoration: none;
  8. padding: .5em 2em;
  9. outline: none;
  10. border-width: 2px 0;
  11. border-style: solid none;
  12. border-color: cornflowerblue cornflowerblue cornflowerblue;
  13. border-radius: 6px;
  14. background: cornflowerblue;
  15. transition: 0.2s;
  16. font-family: AR DELANEY;
  17. text-align: center;
  18. }
  19. .button2048:hover { background: darkslateblue; border-color: darkslateblue darkslateblue darkslateblue }
  20.  
  21. #wrap1{
  22.  
  23. display: none;
  24. opacity: 0.8;
  25. position: fixed;
  26. left: 0;
  27. right: 0;
  28. top: 0;
  29. bottom: 0;
  30. padding: 16px;
  31. background-color: rgba(1, 1, 1, 0.725);
  32. z-index: 100;
  33. overflow: auto;
  34. }
  35.  
  36. #wrap2{
  37.  
  38. display: none;
  39. opacity: 0.8;
  40. position: fixed;
  41. left: 0;
  42. right: 0;
  43. top: 0;
  44. bottom: 0;
  45. padding: 16px;
  46. background-color: rgba(1, 1, 1, 0.725);
  47. z-index: 100;
  48. overflow: auto;
  49. }
  50.  
  51. #wrap3{
  52.  
  53. display: none;
  54. opacity: 0.8;
  55. position: fixed;
  56. left: 0;
  57. right: 0;
  58. top: 0;
  59. bottom: 0;
  60. padding: 16px;
  61. background-color: rgba(1, 1, 1, 0.725);
  62. z-index: 100;
  63. overflow: auto;
  64. }
  65.  
  66. #window{
  67.  
  68. width: 400px;
  69. height: 400px;
  70. margin: 50px auto;
  71. background: #FFEFD5;
  72. z-index: 200;
  73. position: fixed;
  74. left: 0;
  75. right: 0;
  76. display: none;
  77. top: 0;
  78. bottom: 0;
  79. padding: 16px;
  80. }
  81. canvas {
  82. border: 5px solid darkblue;
  83. margin: 10px;
  84. margin-left: 25%;
  85. }
  86.  
  87. .imgblock {
  88. position: relative;
  89. display: inline-block;
  90. margin-top: 0px !important;
  91. margin-left: 25%;
  92.  
  93. }
  94.  
  95. .imgblock img {
  96. height: 160px;
  97. width: 250px;
  98. }
  99.  
  100. .imgblock h2 {
  101. left: 0;
  102. position: absolute;
  103. top: 30px;
  104. width: 100%;
  105. left: 35px;
  106. }
  107. .imgblock h2 span {
  108. background: darkblue;
  109. border-radius: 5px;
  110. color: lightskyblue;
  111. font: 28px AR DELANEY;
  112. line-height: 29px;
  113. padding: 2px 2px;
  114. }
  115.  
  116. #GameOverWindow{
  117. width: 550px;
  118. height: 400px;
  119. margin: 50px auto;
  120. background: #FFEFD5;
  121. z-index: 200;
  122. position: fixed;
  123. left: 0;
  124. right: 0;
  125. display: none;
  126. top: 0;
  127. bottom: 0;
  128. padding: 16px;
  129. border-color: darkmagenta;
  130. }
  131. #YouWinWindow{
  132. width: 550px;
  133. height: 400px;
  134. margin: 50px auto;
  135. background: #FFEFD5;
  136. z-index: 200;
  137. position: fixed;
  138. left: 0;
  139. right: 0;
  140. display: none;
  141. top: 0;
  142. bottom: 0;
  143. padding: 16px;
  144. border-color: darkmagenta;
  145. }
  146. .close{
  147. margin-left: 364px;
  148. margin-top: 4px;
  149. height: 30px;
  150. width: 30px;
  151. cursor: pointer;
  152. }
  153. .pic{
  154. margin-left: 364px;
  155. margin-top: 4px;
  156. height: 100px;
  157. width: 100px;
  158. cursor: pointer;
  159. }
  160. /* Clip text element */
  161. .clip-text {
  162. font-size: 6em;
  163. font-weight: bold;
  164. line-height: 1;
  165. position: relative;
  166. display: inline-block;
  167. margin: .25em;
  168. padding: .5em .75em;
  169. text-align: center;
  170. /* Color fallback */
  171. color: #fff;
  172. -webkit-background-clip: text;
  173.  
  174. -webkit-text-fill-color: transparent;
  175. }
  176.  
  177. .clip-text:before,
  178. .clip-text:after {
  179. position: absolute;
  180. content: '';
  181. }
  182.  
  183. /* Background */
  184. .clip-text:before {
  185. z-index: -2;
  186. top: 0;
  187. right: 0;
  188. bottom: 0;
  189. left: 0;
  190. background-image: inherit;
  191. }
  192.  
  193. .clip-text:after {
  194. position: absolute;
  195. z-index: -1;
  196. top: .125em;
  197. right: .125em;
  198. bottom: .125em;
  199. left: .125em;
  200. background-color: #000000;
  201. }
  202. .clip-text--cover,
  203. .clip-text--cover:before {
  204. background-repeat: no-repeat;
  205. -webkit-background-size: cover;
  206. background-size: cover;
  207. background-position: 50% 50%;
  208. }
  209. .clip-text_game_over {
  210. background-image: url("end.jpg");
  211. }
  212. .clip-text_you_win {
  213. background-image: url("youWin.jpg");
  214. }
  215. .buttonText {
  216.  
  217. font: 10px AR DELANEY;
  218. }
  219. h1{
  220. font: 40px AR DELANEY;
  221. color: cornflowerblue;
  222. }
  223. h3{
  224. font: 16px AR DELANEY;
  225. color: blue;
  226. text-align: center;
  227. }
  228. button{
  229. text-align: center;
  230. font: 10px AR DELANEY;
  231. color: black;
  232. font-size: medium;
  233. }
Advertisement
Add Comment
Please, Sign In to add comment