Guest User

Untitled

a guest
Dec 14th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. body {
  2. font-family: 'Helvetica', 'Arial', sans-serif;
  3. padding: 20px;
  4. padding-bottom: 0px;
  5. margin: 0px;
  6. color: #DFE4E8;
  7. background: #3B86B7;
  8. }
  9.  
  10. #board {
  11. display: none;
  12. width: 400px;
  13. height: 600px;
  14. background: #DFE4E8;
  15. margin: 0px;
  16. position: relative;
  17. color: #3B86B7;
  18. }
  19.  
  20. #score {
  21. position: absolute;
  22. top: 20px;
  23. left: 20px;
  24. font-weight: bold;
  25. }
  26.  
  27. #ball {
  28. position: relative;
  29. display: block;
  30. width: 32px;
  31. height: 32px;
  32. background: #B0D18D;
  33. border-radius: 50%;
  34. }
  35.  
  36. #paddle {
  37. position: absolute;;
  38. width: 100px;
  39. height: 30px;
  40. border-radius: 15px;
  41. background: #B0D18D;
  42. display: block;
  43.  
  44. left: 20px;
  45. top: 550px;
  46. }
  47.  
  48. .bumper {
  49. position: absolute;
  50. display: block;
  51. width: 32px;
  52. height: 32px;
  53. border-radius: 50%;
  54. background: #3B86B7;
  55.  
  56. /* This makes the bumper's 'flash' animation a bit smoother */
  57. -webkit-transition: background 0.1s ease-in-out;
  58. -moz-transition: background 0.1s ease-in-out;
  59. -ms-transition: background 0.1s ease-in-out;
  60. -o-transition: background 0.1s ease-in-out;
  61. transition: background 0.1s ease-in-out;
  62. }
  63.  
  64. #countdown, #gameOver {
  65. font-size: 48px;
  66. text-align: center;
  67. font-weight: bold;
  68. }
  69.  
  70. #gameOver {
  71. display: none;
  72. }
Add Comment
Please, Sign In to add comment