Subversion Repositories SmartDukaan

Rev

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