style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. body {
  6. background: #efefef;
  7. }
  8. #nao-box {
  9. width: 100%;
  10. height: 300px;
  11. position: absolute;
  12. bottom: 0;
  13. background: #333;
  14. border-radius: 10px;
  15. -webkit-border-radius: 10px;
  16. box-shadow: 6px 6px 30px #000;
  17. line-height: 300px;
  18. text-align: center;
  19. font-size: 30px;
  20. color: #fff;
  21. }
  22. #status {
  23. position: absolute;
  24. top: 0;
  25. width: 100%;
  26. height: 200px;
  27. color: #555;
  28. text-align: center;
  29. }
  30. .fen {
  31. text-align: center;
  32. font-size: 26px;
  33. position: relative;
  34. top: 60px;
  35. margin-top: 30px;
  36. }
  37. #second {
  38. color: red;
  39. font-size: 26px;
  40. display: inline-block;
  41. width: 50px;
  42. }
  43. #num {
  44. color: #096;
  45. }
  46. #mask {
  47. width: 100%;
  48. height: 100%;
  49. position: absolute;
  50. z-index: 11;
  51. background: #333;
  52. opacity: 0.3;
  53. }
  54. #share {
  55. position: absolute;
  56. width: 100%;
  57. height: 100%; z-index: 111;
  58. text-align: center;
  59. padding-top: 10px;
  60. }
  61. #share p {
  62. width: 50%;
  63. height: 60px;
  64. background: #fff;
  65. border-radius: 10px;
  66. text-align: center;
  67. line-height: 60px;
  68. z-index: 111;
  69. margin: 30px auto;
  70. }