Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <div id="chooseDifficulty">
  2. <p>Difficulty</p>
  3. <button class="button buttonReverse" data-id="easy">EASY</button>
  4. <button class="button buttonReverse" data-id="medium">MEDIUM</button>
  5. <button class="button buttonReverse" data-id="hard">HARD</button>
  6. </div>
  7.  
  8. #gameFinished, #gamePaused, #keyBindings, #chooseDifficulty {
  9. position: absolute;
  10. background-color: rgba(255, 255, 255, 0.2);
  11. border: 1px solid black;
  12. left: 40%;
  13. top: 40%;
  14. width: 300px;
  15. /*height: 300px;*/
  16. text-align: center;
  17. white-space: nowrap;
  18. }
  19.  
  20. #gameFinished p:first-of-type, #gamePaused p:first-of-type, #chooseDifficulty p:first-of-type {
  21. color: black;
  22. font-size: 2rem;
  23. font-weight: bold;
  24. margin: 0;
  25. }
  26.  
  27. #gameFinished p:last-of-type, #gamePaused p:last-of-type {
  28. margin-bottom: 10px;
  29. }
  30.  
  31. #chooseDifficulty .button:first-of-type{
  32. margin-top:10px;
  33. }
  34.  
  35. #gameFinished .button, #gamePaused .button, #keyBindings .button, #chooseDifficulty .button {
  36. margin-left: auto;
  37. margin-right: auto;
  38. margin-bottom: 10px;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement