common.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. * {
  2. -webkit-user-select: none;
  3. -ms-touch-select: none;
  4. }
  5. html {
  6. width: 100%;
  7. height: 100%;
  8. }
  9. body {
  10. margin: 0;
  11. padding: 0;
  12. width: 100%;
  13. height: 100%;
  14. font-family: Arial;
  15. font-size:16px;
  16. color: #6c6c6c;
  17. background-color: #FFF;
  18. text-align: center;
  19. -webkit-touch-callout:none;
  20. -webkit-tap-highlight-color:rgba(0,0,0,0);
  21. -webkit-text-size-adjust:none;
  22. }
  23. .heading {
  24. margin:0 1em;
  25. text-align:left;
  26. }
  27. .des {
  28. padding: 0 1em;
  29. text-align:left;
  30. text-indent: 2em;
  31. word-break: break-all;
  32. }
  33. .logo {
  34. width: 100%;
  35. text-align: center;
  36. }
  37. .button {
  38. font-size: 18px;
  39. font-weight: normal;
  40. text-decoration: none;
  41. display: block;
  42. text-align: center;
  43. overflow:hidden;
  44. text-overflow:ellipsis;
  45. white-space:nowrap;
  46. color: #FFF;
  47. background-color: #FFCC33;
  48. border: 1px solid #ECB100;
  49. padding: .5em 0em;
  50. margin: .5em .7em;
  51. -webkit-border-radius: 5px;
  52. border-radius: 5px;
  53. }
  54. .button:active {
  55. outline: 0;
  56. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  57. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  58. }
  59. .button-waring {
  60. color: #666;
  61. background-color: #ebebeb;
  62. border-color: #e0e0e0;
  63. }
  64. .button-select {
  65. font-size: 14px;
  66. background-color: #CCCCCC;
  67. border: 0;
  68. -webkit-border-radius: 2px;
  69. border-radius: 2px;
  70. }
  71. .dlist {
  72. padding: 0px;
  73. margin: 1em;
  74. background: #fff;
  75. border: 1px solid #ddd;
  76. -webkit-border-radius: 3px;
  77. border-radius: 3px;
  78. }
  79. .ditem {
  80. overflow: hidden;
  81. list-style-type: none;
  82. font-size: 1em;
  83. padding: 1em;
  84. border-bottom: inset 1px #ebebeb;
  85. vertical-align: middle;
  86. }
  87. .ditem:active {
  88. background: #f4f4f4;
  89. }
  90. .ditem:last-child {
  91. border-bottom: inset 0px #ebebeb;
  92. }
  93. .ditem-empty {
  94. overflow: hidden;
  95. list-style-type: none;
  96. font-size: 1em;
  97. padding: 1em;
  98. vertical-align: middle;
  99. }
  100. #outpos {
  101. height: 100px;
  102. width: 100%;
  103. }
  104. #output {
  105. height: 64px;
  106. position: fixed;
  107. left: 0;
  108. right: 0;
  109. bottom: 0;
  110. color: #f00;
  111. background: #FFF;
  112. font-size: 12px;
  113. text-align: left;
  114. line-height: 16px;
  115. word-break: break-all;
  116. z-index: 6666;
  117. padding: 8px 16px;
  118. overflow-x: hidden;
  119. overflow-y: scroll;
  120. border-top: 2px solid #AAA;
  121. -webkit-overflow-scrolling: touch;
  122. }