login.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. * {
  2. box-sizing: border-box;
  3. }
  4. html,body {
  5. height: 100%;
  6. }
  7. .login_bg {
  8. overflow-x: hidden;
  9. padding-top: 6%;
  10. background: url("../img/login_bg.jpg") no-repeat center;
  11. background-size: cover;
  12. }
  13. .login_from {
  14. width: 500px;
  15. margin: 0 auto;
  16. padding: 35px 40px;
  17. border-radius: 5px;
  18. background: url("../img/login_form_bg.png") center;
  19. box-shadow: 0 1px 5px rgba(0, 0, 0, .15);
  20. position: relative;
  21. .layui-form .layui-input {
  22. line-height: 40px;
  23. width: 100%;
  24. height: 40px;
  25. border: 1px solid #cfdae6;
  26. border-radius: 100px;
  27. background: #fff;
  28. position: relative;
  29. text-indent: 20px;
  30. padding: 0 10px;
  31. font-size: 16px;
  32. &:focus {
  33. border: 2px solid #00aaef!important;
  34. }
  35. &.layui-form-danger {
  36. border: 2px solid #fa7252!important;
  37. }
  38. &::-webkit-input-placeholder {
  39. color: #adbdcc;
  40. }
  41. &:-moz-placeholder {
  42. color: #adbdcc;
  43. }
  44. &::-moz-placeholder {
  45. color: #adbdcc;
  46. }
  47. &:-ms-input-placeholder {
  48. color: #adbdcc;
  49. }
  50. }
  51. .layui-btn {
  52. margin-top: 20px;
  53. font-size: 20px;
  54. line-height: 40px;
  55. width: 100%;
  56. height: 40px;
  57. color: #fff;
  58. border-radius: 100px;
  59. background: #00aaef;
  60. opacity: 1;
  61. &:hover {
  62. background: #3399cc;
  63. }
  64. }
  65. }
  66. .login_title {
  67. margin-bottom: 38px;
  68. text-align: center;
  69. h1 {
  70. font-size: 26px;
  71. font-weight: normal;
  72. color: #3d5266;
  73. line-height: 44px;
  74. }
  75. }
  76. .errorinfo {
  77. display: none;
  78. margin-left: 20px;
  79. margin-top: 10px;
  80. color: #fa7252;
  81. }
  82. .form_group {
  83. margin-bottom: 20px;
  84. }