style.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /**
  2. * @Description:style.css
  3. * @Author:LCore
  4. */
  5. .header {
  6. display: block;
  7. margin: 0px auto;
  8. text-align: left;
  9. width: 500px;
  10. height: 80px;
  11. }
  12. .header .cell {
  13. float: left;
  14. text-align: right;
  15. font-family: '微软雅黑';
  16. font-size: 12pt;
  17. }
  18. .header .cell #newGame {
  19. background-color: #8f7a66;
  20. width: 100%;
  21. height: 70px;
  22. color: white;
  23. text-decoration: none;
  24. text-align: center;
  25. line-height: 70px;
  26. border-radius: 5px;
  27. display: inline-block;
  28. }
  29. .header .cell #currentScore {
  30. display: inline-block;
  31. background-color: #F7921E;
  32. width: 90%;
  33. height: 60px;
  34. padding-top: 10px;
  35. color: white;
  36. text-decoration: none;
  37. border-radius: 5px;
  38. text-align: center;
  39. }
  40. .header .cell #topScore {
  41. display: inline-block;
  42. background-color: #BAAB9E;
  43. width: 90%;
  44. height: 60px;
  45. color: white;
  46. padding-top: 10px;
  47. text-decoration: none;
  48. border-radius: 5px;
  49. text-align: center;
  50. }
  51. .header #newGame:hover {
  52. background-color: #9f8b77;
  53. }
  54. #grid-container {
  55. width: 460px;
  56. height: 460px;
  57. padding: 20px;
  58. margin: 10px auto;
  59. background-color: #bbada0;
  60. border-radius: 10px;
  61. position: relative;
  62. }
  63. .grid-cell {
  64. width: 100px;
  65. height: 100px;
  66. background-color: #ccc0b3;
  67. border-radius: 6px;
  68. position: absolute;
  69. }
  70. .number-cell {
  71. border-radius: 6px;
  72. font-family: '幼圆';
  73. font-weight: bold;
  74. /* font-size: 60px; */
  75. font-size: 20px;
  76. line-height: 100px;
  77. text-align: center;
  78. position: absolute;
  79. }
  80. .tip {
  81. text-align: center;
  82. padding-top: 10%;
  83. font-size: 2em;
  84. }