spaceinvaders.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #playground {
  2. background-color: black;
  3. }
  4. .alien {
  5. }
  6. .shipShot {
  7. background-color: green;
  8. }
  9. .alienShot {
  10. background-color: red;
  11. }
  12. .weapon_bar {
  13. height: 10px;
  14. width: 100px;
  15. position: absolute;
  16. top: 5px;
  17. background-color: black;
  18. }
  19. .weapon_level {
  20. height: 8px;
  21. position: relative;
  22. margin: 1px;
  23. }
  24. .weapon_level.good {
  25. background-color: green;
  26. }
  27. .weapon_level.middle {
  28. background-color: yellow;
  29. }
  30. .weapon_level.bad {
  31. background-color: red;
  32. }
  33. .life {
  34. width: 32px;
  35. height: 32px;
  36. float: left;
  37. background-image: url('../images/sprite.png');
  38. background-position: 0px -16px;
  39. }
  40. /** SCOREBOARD**/
  41. .clock {
  42. background : transparent url("../images/font.png") no-repeat top left;
  43. height:32px;
  44. width:32px;
  45. float:left;
  46. }
  47. .clock.red {
  48. background : transparent url("images/font-red.png") no-repeat top left;
  49. }
  50. .clock.yellow {
  51. background : transparent url("images/font-yellow.png") no-repeat top left;
  52. }
  53. .clock.small {
  54. position: relative;
  55. top: 45%;
  56. height: 16px;
  57. width: 16px;
  58. }
  59. .n0 {
  60. background-position : 0px 0px;
  61. }
  62. .n1 {
  63. background-position : -32px 0px;
  64. }
  65. .n2 {
  66. background-position : -64px 0px;
  67. }
  68. .n3 {
  69. background-position : -96px 0px;
  70. }
  71. .n4 {
  72. background-position : -128px 0px;
  73. }
  74. .n5 {
  75. background-position : -160px 0px;
  76. }
  77. .n6 {
  78. background-position : -192px 0px;
  79. }
  80. .n7 {
  81. background-position : -224px 0px;
  82. }
  83. .n8 {
  84. background-position : -256px 0px;
  85. }
  86. .n9 {
  87. background-position : -288px 0px;
  88. }
  89. /** Scoreboard end **/