addTask.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. html, body {
  2. height: 100%;
  3. -webkit-tap-highlight-color: transparent;
  4. font-size: 16px;
  5. }
  6. body, .page {
  7. background-color: #FBF9FE;
  8. }
  9. .container {
  10. position: absolute;
  11. top: 0;
  12. right: 0;
  13. bottom: 0;
  14. left: 0;
  15. overflow: hidden;
  16. }
  17. .page {
  18. position: absolute;
  19. top: 0;
  20. right: 0;
  21. bottom: 0;
  22. left: 0;
  23. overflow-y: auto;
  24. -webkit-overflow-scrolling: touch;
  25. }
  26. .hd {
  27. padding: 2em 0;
  28. }
  29. .page_desc {
  30. text-align: center;
  31. color: #888;
  32. font-size: 14px;
  33. }
  34. .bd.spacing {
  35. padding: 0 15px;
  36. }
  37. .page_title {
  38. text-align: center;
  39. font-size: 34px;
  40. color: #3CC51F;
  41. font-weight: 400;
  42. margin: 0 15%;
  43. }
  44. .page .weui_cell {
  45. padding: 15px 15px;
  46. }
  47. #main .weui_cell .weui_cell_bd input {
  48. text-align: right;
  49. }
  50. .page .weui_cell .weui_cell_ft {
  51. padding-left: 10px;
  52. font-size: inherit;
  53. }
  54. /* userTab */
  55. #userTab {
  56. display: none;
  57. }
  58. #userTab.open {
  59. display: block;
  60. }
  61. #userTab .header {
  62. margin-top: 0;
  63. background-color: #2e3238;
  64. color: #ffffff;
  65. font-size: 18px;
  66. }
  67. #userTab .header .check {
  68. float: right;
  69. }
  70. #userTab .uas{
  71. margin: 6px 0 -10px 2px;
  72. }
  73. .active{
  74. color:rgb(99, 99, 173);
  75. }
  76. #userTab .fa-caret-right{
  77. margin:0 3px 0 3px;
  78. color:gray;
  79. }
  80. /* message */
  81. #successPage {
  82. display: none;
  83. }
  84. .weui_msg_desc {
  85. text-align: left;
  86. }
  87. .message-content {
  88. float: right;
  89. }
  90. .weui_cells_access .weui_cells_checkbox .weui_cell_ft:after{
  91. content:none;
  92. }
  93. .weui_btn {
  94. margin-top: 15px;
  95. }
  96. /* slideIn slideOut animation */
  97. @keyframes slideIn {
  98. from {
  99. transform: translate3d(100%, 0, 0);
  100. }
  101. to {
  102. transform: translate3d(0, 0, 0);
  103. }
  104. }
  105. @keyframes slideOut {
  106. from {
  107. transform: translate3d(0, 0, 0);
  108. }
  109. to {
  110. transform: translate3d(100%, 0, 0);
  111. }
  112. }
  113. .page.slideIn {
  114. animation: slideIn .2s forwards;
  115. }
  116. .page.slideOut {
  117. animation: slideOut .2s forwards;
  118. }
  119. /* loading */
  120. #loadingToast {
  121. display: none;
  122. }