暂无描述

login.css 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. body {
  2. background-color: #fff!important;
  3. }
  4. #login-form {
  5. background-color: #fff!important;
  6. }
  7. .mui-content {
  8. background: #FFF;
  9. }
  10. .area {
  11. margin: 20px auto 0px auto;
  12. }
  13. .mui-input-group {
  14. margin-top: 10px;
  15. }
  16. .mui-input-group:first-child {
  17. margin-top: 20px;
  18. }
  19. .mui-input-group label {
  20. width: 2%;
  21. text-align: right;
  22. }
  23. .mui-input-row label~input,
  24. .mui-input-row label~select,
  25. .mui-input-row label~textarea {
  26. width: 88%;
  27. }
  28. .mui-checkbox input[type=checkbox],
  29. .mui-radio input[type=radio] {
  30. top: 0px;
  31. left: 0;
  32. width: 20px;
  33. height: 20px;
  34. }
  35. .mui-checkbox input[type=checkbox]:before, .mui-radio input[type=radio]:before{
  36. font-size: 21px;
  37. }
  38. .mui-checkbox{
  39. padding-left: 0px;
  40. }
  41. .mui-content-padded {
  42. margin-top: 40px;
  43. }
  44. .mui-btn {
  45. padding: 10px;
  46. }
  47. .link-area {
  48. display: block;
  49. margin-top: 130px;
  50. text-align: center;
  51. font-size: 15px;
  52. }
  53. .spliter {
  54. width: 25%;
  55. display: inline-block;
  56. color: #bbb;
  57. padding: 0px 8px;
  58. /* line-height: 20px; */
  59. vertical-align: middle;
  60. position: relative;
  61. left: -10px;
  62. }
  63. .spliter:after {
  64. position: absolute;
  65. right: 0;
  66. bottom: 0;
  67. left: 15px;
  68. height: 1px;
  69. content: '';
  70. -webkit-transform: scaleY(.5);
  71. transform: scaleY(.5);
  72. background-color: #c8c7cc;
  73. }
  74. .oauth-area {
  75. text-align: center;
  76. width: 100%;
  77. padding: 0px;
  78. margin: 0px;
  79. font-size: 14px;
  80. }
  81. .oauth-area .oauth-btn {
  82. display: inline-block;
  83. width: 50px;
  84. height: 50px;
  85. background-size: 30px 30px;
  86. background-position: center center;
  87. background-repeat: no-repeat;
  88. margin: 0px 20px;
  89. /*-webkit-filter: grayscale(100%); */
  90. border: solid 1px #ddd;
  91. border-radius: 25px;
  92. }
  93. .oauth-area .reg_href {
  94. text-align: center;
  95. display: block;
  96. width: 100%;
  97. float: left;
  98. }
  99. .mui-popover {
  100. width: 85%;
  101. height: 70%;
  102. }
  103. .mui-popover .mui-popover-arrow.mui-bottom{
  104. display: none;
  105. }
  106. #centerPopover{
  107. top: 0 !important;
  108. bottom: 0 !important;
  109. left: 0 !important;
  110. right: 0 !important;
  111. margin: auto;
  112. }
  113. #centerPopover .mui-input-row{
  114. padding: 0 15px;
  115. /*margin-top: 0px;*/
  116. }
  117. #centerPopover h5{
  118. text-align: center;
  119. color: #000;
  120. font-weight: bold;
  121. }
  122. #centerPopover h6{
  123. color: #000;
  124. font-weight: bold;
  125. }
  126. #centerPopover p{
  127. text-indent: 2em;
  128. }
  129. .oauth-area .oauth-btn:active {
  130. border: solid 1px #aaa;
  131. }
  132. .oauth-area .oauth-btn.disabled {
  133. background-color: #ddd;
  134. }
  135. #login-form {
  136. margin-top: 0px;
  137. }
  138. .mui-logo-box {
  139. width: 80%;
  140. margin: 0 auto;
  141. padding: 75px 0;
  142. }
  143. .mui-logo-box img{
  144. width: 100%;
  145. }
  146. .mui-logo-box .img-box1 {
  147. width: 130px;
  148. height: 33px;
  149. }
  150. .mui-logo-box .img-box2{
  151. padding-top: 13px;
  152. }
  153. .mui-input-row {
  154. margin-top: 15px;
  155. }
  156. .mui-input-group:after {
  157. position: absolute;
  158. right: 0;
  159. bottom: 0;
  160. left: 15px;
  161. height: 1px;
  162. content: '';
  163. -webkit-transform: scaleY(.5);
  164. transform: scaleY(.5);
  165. /*background-color: #c8c7cc;*/
  166. }
  167. input {
  168. font-size: 14px;
  169. }
  170. .mui-btn-primary {
  171. border: 1px solid #00a1cb;
  172. background-color: #00a1cb;
  173. }
  174. .mui-input-group {
  175. width: 100%;
  176. margin: 0 auto;
  177. margin-bottom: 20px;
  178. }
  179. .mui-input-row {
  180. margin-bottom: 10px;
  181. }
  182. .mui-content-padded {
  183. width: 70%;
  184. margin: 0 auto;
  185. margin-top: 30px;
  186. }
  187. .mui-content-padded button{
  188. background: #ff9600;
  189. }
  190. #login,#register {
  191. border-radius: 20px;
  192. border: none;
  193. }
  194. .mui-input-group .mui-input-row:after {
  195. left: -5px;
  196. }
  197. .mui-input-row span {
  198. color: #787878;
  199. }
  200. .mui-input-group .mui-input-row {
  201. height: 45px;
  202. line-height: 45px;
  203. /* margin-bottom: 20px; */
  204. width: 80%;
  205. margin: 0 auto;
  206. border-top: 1px solid #d9d9d9;
  207. }
  208. .mui-input-group:before{
  209. height: 0px;
  210. }
  211. .mui-password{
  212. border: none;
  213. border-bottom: 1px solid #d9d9d9;
  214. }
  215. .mui-input-group:after {
  216. background-color: #fff;
  217. }
  218. .mui-input-group .mui-input-row:after {
  219. background-color: #fff;
  220. }
  221. .register_top{
  222. margin-top: 40px;
  223. }