style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. html, body, div, span, applet, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. a, abbr, acronym, address, big, cite, code,
  4. del, dfn, em, img, ins, kbd, q, s, samp,
  5. small, strike, strong, sub, sup, tt, var,
  6. b, u, i, center,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td,
  10. article, aside, canvas, details, embed,
  11. figure, figcaption, footer, header, hgroup,
  12. menu, nav, output, ruby, section, summary,
  13. time, mark, audio, video {
  14. margin: 0;
  15. padding: 0;
  16. border: 0;
  17. font-size: 100%;
  18. font: inherit;
  19. vertical-align: baseline;
  20. }
  21. /* HTML5 display-role reset for older browsers */
  22. article, aside, details, figcaption, figure,
  23. footer, header, hgroup, menu, nav, section {
  24. display: block;
  25. }
  26. body {
  27. line-height: 1;
  28. }
  29. ol, ul {
  30. list-style: none;
  31. }
  32. blockquote, q {
  33. quotes: none;
  34. }
  35. blockquote:before, blockquote:after,
  36. q:before, q:after {
  37. content: '';
  38. content: none;
  39. }
  40. table {
  41. border-collapse: collapse;
  42. border-spacing: 0;
  43. }
  44. .hide {
  45. display: none;
  46. }
  47. .car, .enemy {
  48. width: 50px;
  49. height: 100px;
  50. background: transparent url('./image/mycar.png') center / cover no-repeat;
  51. position: absolute;
  52. left: 125px;
  53. bottom: 10px;
  54. }
  55. .gameArea {
  56. position: relative;
  57. width: 300px;
  58. height: 100%;
  59. margin: auto;
  60. background: gray;
  61. overflow: hidden;
  62. }
  63. .line {
  64. width: 10px;
  65. height: 50px;
  66. left: 145px;
  67. position: absolute;
  68. background: #fff;
  69. }
  70. .startTitle {
  71. margin-top: 50%;
  72. text-align: center;
  73. font-size: 1.5rem;
  74. z-index: 2;
  75. }
  76. .start {
  77. position: absolute;
  78. left: 0;
  79. top: 0;
  80. width: 100%;
  81. margin: 0;
  82. padding: 2rem 0;
  83. z-index: 200;
  84. color: #fff;
  85. font-size: 1.5rem;
  86. background: black;
  87. font-family: sans-serif;
  88. font-weight: 700;
  89. text-align: center;
  90. }
  91. .score {
  92. position: absolute;
  93. left: 0;
  94. top: 0;
  95. width: 100%;
  96. margin: 0;
  97. padding: 1rem 0;
  98. z-index: 200;
  99. font-size: 1.5rem;
  100. background: black;
  101. color: skyblue;
  102. font-family: sans-serif;
  103. font-weight: 500;
  104. text-align: center;
  105. }