Blame view

topages/login/login.css 1.54 KB
0efcfd88   liuqimichale   登录
1
2
3
4
  html,body{
      width: 100%;
      height: 100%;
      overflow: hidden;
f27d6115   liuqimichale   登录
5
      background-color: #fff;
0efcfd88   liuqimichale   登录
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  }
  .login-wrap{
      width:calc(100% - 800px);
      width:-webkit-calc(100% - 800px);
      width:-moz-calc(100% - 800px);
      height: 100%;
      position: relative;
  }
  .login-main{
      position: absolute;
      right: 0;
      top:50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      width: 400px;
  }
  .login-name{
      font-size: 40px;
      color: rgba(0,0,0,.8);
  }
  .login-hint{
      font-size: 16px;
      color: rgba(0,0,0,.6);
  }
  .login-btn{
      width: 253px;
      height: 58px;
      cursor: pointer;
      text-align: center;
7cb2724f   liuqimichale   登录
36
      line-height: 58px;
0efcfd88   liuqimichale   登录
37
38
39
40
41
42
43
44
45
      font-size: 20px;
      color: #fff;
      background: url("../../resource/img/login-btn.png") no-repeat;
  }
  .login-bg{
      height: 100%;
      width: 800px;
      background: url("../../resource/img/login-bg.png") no-repeat;
      background-size:100% 100% ;
7cb2724f   liuqimichale   登录
46
47
48
49
50
51
  }
  .login-username,.login-password{
      width: 400px;
      height: 48px;
      line-height: 48px;
      padding-left: 20px;
f27d6115   liuqimichale   登录
52
      background-color: #f2f3f4!important;
7cb2724f   liuqimichale   登录
53
54
55
56
57
58
59
      font-size: 14px;
      color: rgba(0,0,0,.4);
      border: 0;
      border-radius: 25px;
  }
  input:focus {outline: none;}
  input:-webkit-autofill {
f27d6115   liuqimichale   登录
60
61
      background-color: #f2f3f4!important;
      -webkit-box-shadow: 0 0 0px 1000px #f2f3f4 inset !important;
7cb2724f   liuqimichale   登录
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  }
  .login-username{
      margin: 64px 0 40px;
  }
  .login-errorifo{
      font-size: 14px;
      color:#f94c6e ;
      height: 14px;
      line-height: 14px;
      margin: 23px 0;
  }
  /*.login-password{*/
      /*margin-bottom: 60px;*/
  /*}*/