game.css 976 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. html, body {
  2. color: #776e65;
  3. background: #faf8ef;
  4. }
  5. .panel {
  6. border-radius: 0.2rem;
  7. background: #bbada0;
  8. position: relative;
  9. margin-bottom: 0;
  10. }
  11. .status div{
  12. display: inline-block;
  13. height: 2rem;
  14. line-height: 2rem;
  15. font-size: 1.2rem;
  16. font-weight: 700;
  17. padding: 0 0.5rem;
  18. width: 10rem;
  19. color: #FFF;
  20. }
  21. .best{
  22. float: right;
  23. }
  24. .game {
  25. height: 21rem;
  26. margin-top: 0.2rem;
  27. padding: 0.5rem;
  28. }
  29. .cell-container {
  30. position: absolute;
  31. }
  32. .cell-container div {
  33. width: 4rem;
  34. height: 4rem;
  35. float: left;
  36. background: #878787;
  37. border: 0.1rem solid #bbada0;
  38. border-radius: 0.4rem;
  39. cursor: pointer;
  40. text-align: center;
  41. font-size: 3rem;
  42. line-height: 4rem;
  43. }
  44. .cell-container .blank, .cell-container .number, .cell-container .bomb {
  45. background: #eee4da;
  46. color: #776e65;
  47. }
  48. .cell-container span{
  49. font-size: 3rem;
  50. line-height: 4rem;
  51. }