login.less 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. @charset "UTF-8";
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 开源项目:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. body, html {
  15. height: 100%;
  16. display: block;
  17. }
  18. body {
  19. background: url("../img/login/bg1.jpg") no-repeat center center;
  20. background-size: cover;
  21. }
  22. .login-container {
  23. height: 100%;
  24. form input {
  25. &, &:-webkit-autofill, &:-webkit-autofill:active,
  26. &:-webkit-autofill:focus, &:-webkit-autofill:hover {
  27. box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .3) inset;
  28. -webkit-text-fill-color: #fff !important;
  29. -webkit-transition-delay: 9999s !important;
  30. -webkit-transition: color 9999s ease-out, background-color 9999s ease-out !important;
  31. }
  32. }
  33. .header {
  34. top: 0;
  35. left: 0;
  36. width: 100%;
  37. height: 47px;
  38. position: absolute;
  39. text-shadow: #000 .1em .1em .1em;
  40. .title {
  41. color: #fff;
  42. float: left;
  43. font-size: 18px;
  44. line-height: 47px;
  45. text-indent: 40px;
  46. letter-spacing: 1px;
  47. }
  48. a {
  49. &, &:focus, &:hover {
  50. color: #fff;
  51. letter-spacing: 1px;
  52. text-decoration: none;
  53. }
  54. }
  55. ul {
  56. float: right;
  57. li {
  58. float: left;
  59. line-height: 47px;
  60. margin-left: 10px;
  61. }
  62. }
  63. }
  64. form {
  65. top: 50%;
  66. left: 50%;
  67. width: 300px;
  68. position: absolute;
  69. margin-top: -250px;
  70. margin-left: -150px;
  71. h2 {
  72. color: #fff;
  73. padding: 20px 0;
  74. font-size: 25px;
  75. text-align: center;
  76. font-weight: 700;
  77. letter-spacing: 3px;
  78. text-shadow: #000 .05em .05em .05em;
  79. }
  80. ul li {
  81. position: relative;
  82. margin-top: 20px;
  83. text-shadow: #000 .1em .1em .1em;
  84. i.layui-icon {
  85. color: #fff;
  86. font-size: 18px;
  87. position: absolute;
  88. padding: 12px 15px 13px 20px;
  89. }
  90. span {
  91. letter-spacing: 1px;
  92. color: #ff0 !important;
  93. }
  94. input {
  95. color: #fff;
  96. height: 45px;
  97. padding: 0 15px;
  98. font-size: 14px;
  99. text-indent: 35px;
  100. line-height: 1em;
  101. border-radius: 6px;
  102. letter-spacing: 1px;
  103. background: rgba(0, 0, 0, .1);
  104. text-shadow: #000 .1em .1em .1em;
  105. box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .3) inset;
  106. }
  107. button {
  108. color: #333 !important;
  109. height: 45px !important;
  110. background: #fff !important;
  111. border-radius: 4px !important;
  112. letter-spacing: 1px !important;
  113. box-shadow: 0 15px 30px 0 hsla(0, 0%, 100%, .25) inset, 0 2px 7px 0 rgba(0, 0, 0, .2);
  114. }
  115. }
  116. }
  117. .footer {
  118. left: 0;
  119. bottom: 0;
  120. width: 100%;
  121. color: #fff;
  122. position: absolute;
  123. text-align: center;
  124. line-height: 30px;
  125. padding-bottom: 10px;
  126. text-shadow: #000 .1em .1em .1em;
  127. a, span {
  128. color: #fff;
  129. }
  130. a:hover {
  131. color: #ccc
  132. }
  133. }
  134. }
  135. #supersized {
  136. top: 0;
  137. left: 0;
  138. width: 100%;
  139. height: 100%;
  140. z-index: -999;
  141. display: block;
  142. position: fixed;
  143. overflow: hidden;
  144. img {
  145. border: 0;
  146. width: auto;
  147. height: auto;
  148. display: none;
  149. outline: 0;
  150. position: relative;
  151. max-width: none !important
  152. }
  153. &.speed img {
  154. image-rendering: -moz-crisp-edges;
  155. -ms-interpolation-mode: nearest-neighbor
  156. }
  157. &.quality img {
  158. image-rendering: optimizeQuality;
  159. -ms-interpolation-mode: bicubic;
  160. }
  161. a, li {
  162. width: 100%;
  163. height: 100%;
  164. display: block;
  165. cursor: default;
  166. }
  167. li {
  168. top: 0;
  169. left: 0;
  170. z-index: -30;
  171. position: fixed;
  172. overflow: hidden;
  173. list-style: none;
  174. &.prevslide {
  175. z-index: -20;
  176. img {
  177. display: inline
  178. }
  179. }
  180. &.activeslide {
  181. z-index: -10;
  182. img {
  183. display: inline
  184. }
  185. }
  186. &.image-loading {
  187. width: 100%;
  188. height: 100%;
  189. background: url(../../plugs/supersized/progress.gif) no-repeat center center;
  190. img {
  191. visibility: hidden
  192. }
  193. }
  194. }
  195. }
  196. #supersized-loader {
  197. top: 50%;
  198. left: 50%;
  199. z-index: 0;
  200. width: 60px;
  201. height: 60px;
  202. position: absolute;
  203. text-indent: -999em;
  204. margin: -30px 0 0 -30px;
  205. background: url(../../plugs/supersized/progress.gif) no-repeat center center;
  206. }