Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Questrial');
  2. .fireButton {
  3. font-size: 20px;
  4. font-weight: 800;
  5. font-family: cursive;
  6. line-height: 1;
  7. padding: 10px;
  8. background-color: #881515;
  9. color: #fff;
  10. text-shadow: 2px 2px 5px #000;
  11. transition: 0.2s;
  12. border: solid 1px white;
  13. margin: 0 0 0 10px;
  14. }
  15.  
  16. .fireButton:hover:enabled {
  17. color: #fff;
  18. background-color: #ff0000;
  19. box-shadow: 5px 2px 10px rgb(70, 70, 70);
  20. }
  21. #start-game{
  22. width: 330px;
  23. text-align: center;
  24. font-family: cursive;
  25. font-size: 20px;
  26. font-weight: 800;
  27. line-height: 1;
  28. background-color: #679b36;
  29. color: #fff;
  30. text-shadow: 2px 2px 5px #000;
  31. transition: 0.2s;
  32. border: 1px solid white;
  33. border-radius: 10px;
  34. padding: 3% 0;
  35. -webkit-text-size-adjust: auto;
  36. -moz-text-size-adjust: auto;
  37. margin: 0 0 0 10px;
  38. }
  39.  
  40. /* CANVAS, CANNONBALL, CANNON CSS */
  41. #gameCanvas {
  42. /* margin: 0 auto; */
  43. /* margin-top: 30px;
  44. margin-left: 30px;
  45. margin-bottom: 5px;*/
  46. margin: 30px 0 5px 30px;
  47. background-color: rgb(247, 245, 245);
  48. border: 1px solid #888;
  49. width: 1140px;
  50. height: 432px;
  51. background-image: url(Ocean_1.png);
  52. background-repeat: repeat;
  53. border-radius: 10px;
  54. box-shadow: 2px 2px 10px rgb(70, 70, 70);
  55. }
  56. #border{
  57. margin: 30px 0 5px 30px;
  58. background-color: rgb(247, 245, 245);
  59. border: 1px solid #888;
  60. width: 1210px;
  61. height: 900px;
  62. border-radius: 10px;
  63. box-shadow: 2px 2px 10px rgb(70, 70, 70);
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement