Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
12694 anikendra 1
@import "common.less";
2
 
3
.auth-head{
4
  background:darken(@list-color2,5%);
5
  border-top:@list-color1 solid 1px;
6
  padding:0 1%;
7
  position:relative;
8
  .boxsize;
9
  width:100%;
10
  > a:nth-of-type(1), > a:nth-of-type(3){
11
    .float(left);
12
    width:49%;
13
    padding:10px 0;
14
    .font(1.6em);
15
    font-weight:bold;
16
    color:@grey;
17
    text-align:center;
18
    .boxsize;
19
    text-transform:uppercase;
20
    height:45px;
21
    line-height:22px;
22
  }
23
  > a:nth-of-type(3){
24
    .float(right)!important;  
25
  }
26
  > a:nth-of-type(2){
27
    .float(left);
28
    width:2%;
29
    margin: 5px 0 5px -0.5px;
30
    max-width:1px;
31
    height:35px;
32
    background:@grey;
33
    text-align:center;
34
    position:absolute;
35
    left:50%;
36
  }
37
  .selected{
38
    color:@ltblue!important;
39
    border-bottom:@ltblue solid 5px;
40
  }
41
 
42
}
43
 
44
.login-cont{
45
  padding:0px 0px 10px;
46
  margin-top:1px;
47
  .input-cont{
48
    padding:10px 10px;
49
    background:@list-color2;
50
    width:100%;
51
    .boxsize;  
52
  }
53
}
54
form{
55
  fieldset{
56
    border:none;
57
  label{
58
    font-weight:bold;
59
    display:block;
60
    .font(1.4em);
61
    color:@grey;
62
  }
63
  input{
64
    width:100%;
65
    appearance:none;
66
    -webkit-appearance:none;
67
    border:@list-color1 solid 1px;
68
    //background:@list-color1;
69
    color:@grey;
70
    border-radius:0;
71
    outline:none;
72
    padding:10px;
73
    display:block;
74
    .boxsize;
75
    .font(1.4em);
76
    margin:2px 0 8px 0;
77
  }
78
  }
79
}
80
 
81
.frgt-pwd{
82
  margin:3px 0;
83
  .float(right);
84
  color:@ltblue;
85
  text-decoration:underline;
86
  .font(1.2em);
87
}
88
 
89
.btn-cont,.registerbtn-cont{
90
  padding:0 10px;
91
 
92
}
93
input.login-btn, .register-btn{
94
  .float(left);
95
  width:100%;
96
  margin:10px 0;
97
  background:@ltblue;
98
  color:@white;
99
  .font(1.8em);
100
  text-align:center;
101
  padding:8px 0;
102
  text-transform:uppercase;
103
  appearance: none;
104
  -webkit-appearance: none;
105
}
106
 
107
.seperator{
108
  position:relative;
109
  border-top:@list-color1 solid 1px;
110
  width:100%;
111
  margin:20px 0 30px;
112
  span{
113
 
114
    .font(1.2em);
115
    font-weight:bold;
116
    text-align:center;
117
    line-height:32px;
118
    top:-15px;
119
    position:absolute;
120
    width:30px;
121
    height:30px;
122
    border-radius:20px;
123
    background:@white;
124
    color:@ltblue;
125
    left:50%;
126
    margin-left:-15px;
127
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.5);  
128
  }
129
}
130
 
131
.fb-login{
132
  .float(left);
133
  width:49%;
134
  padding:8px 0;
135
  text-align:center;
136
  .font(1.8em);
137
  color:@white;
138
  background: url("../images/facebook-icon.png") no-repeat -19px -6px;
139
  background-size: 58px;
140
  background-color:rgba(59,113,166,1);
141
  text-transform:uppercase;
142
}
143
 
144
.go-login{
145
  .float(right);
146
  width:49%;
147
  padding:8px 0;
148
  text-align:center;
149
  .font(1.8em);
150
  color:@white;
151
  background: url("../images/New-Google-Plus-icon.png") no-repeat -5px -9px;
152
  background-size: 50px;
153
  background-color:rgb(218,72,53);
154
  text-transform:uppercase;
155
}
156
 
157
/*------------------register-hldr---------------------------*/
158
 
159
.register-hldr{
160
  padding:0px 0px 10px;
161
  margin-top:1px;
162
.register-cont{
163
  padding:10px 10px;
164
  background:@list-color2;
165
  width:100%;
166
  .boxsize;  
167
  input{
168
    margin-bottom:0;
169
  }
170
  p{
171
      text-align:right;
172
      margin-bottom:5px;
173
    }  
174
}
175
 
176
}
177
 
178
/*----------------------error-msg---------------------------*/
179
 
180
.error_msg{
181
  padding:5px;
182
  display:block;
183
  border:red dotted 1px;
184
  background:@list-color2;
185
  color:red;
186
  .font(1.4em);
187
  margin:10px;
188
}