Subversion Repositories SmartDukaan

Rev

Rev 11194 | Details | Compare with Previous | Last modification | View Log | RSS feed

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