index.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. iframe {
  2. border: 0 none;
  3. vertical-align: top;
  4. }
  5. .logger {
  6. color: #fff;
  7. position: absolute;
  8. bottom: 0.7rem;
  9. left: 50%;
  10. line-height: 0.4rem;
  11. height: 0.4rem;
  12. width: 100%;
  13. text-align: center;
  14. transform: translateX(-50%) translateY(0);
  15. }
  16. .logger p {
  17. background-color: rgba(0, 0, 0, 1);
  18. border-radius: 0.05rem;
  19. display: inline-block;
  20. font-size: 0.16rem;
  21. line-height: 0.4rem;
  22. padding: 0 0.3rem;
  23. }
  24. /* 2018/04/19 */
  25. * {
  26. -webkit-box-sizing: border-box;
  27. box-sizing: border-box;
  28. font: 12px/1.5 'Microsoft Yahei';
  29. margin: 0;
  30. padding: 0;
  31. }
  32. html {
  33. font-size: 85.33333333px;
  34. }
  35. @media screen and (min-width: 320px) {
  36. html {
  37. font-size: 85.33333333px;
  38. }
  39. }
  40. @media screen and (min-width: 360px) {
  41. html {
  42. font-size: 96px;
  43. }
  44. }
  45. @media screen and (min-width: 375px) {
  46. html {
  47. font-size: 100px;
  48. }
  49. }
  50. html,
  51. body {
  52. height: 100%;
  53. }
  54. a {
  55. text-decoration: none;
  56. }
  57. .init {
  58. background-image: url(../images/bg-init.jpg);
  59. background-size: 100% auto;
  60. height: 100%;
  61. margin: 0 auto;
  62. max-width: 750px;
  63. width: 100%;
  64. }
  65. .init_body {
  66. left: 50%;
  67. position: absolute;
  68. top: 50%;
  69. -webkit-transform: translateX(-50%) translateY(-50%);
  70. transform: translateX(-50%) translateY(-50%);
  71. width: 2.7rem;
  72. }
  73. .init_item {
  74. background-color: rgba(255, 255, 255, 0.29);
  75. border: 1px solid #fff;
  76. border-radius: 0.08rem;
  77. color: #fff;
  78. display: block;
  79. font-size: 0.18rem;
  80. height: 0.4rem;
  81. line-height: 0.38rem;
  82. margin-bottom: 0.3rem;
  83. text-align: center;
  84. }
  85. .init_item:last-child {
  86. margin-bottom: 0;
  87. }
  88. .init_item:active {
  89. background-color: #23B0CB;
  90. border-color: #23B0CB;
  91. }