Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
@import '../../global/_variables'; // global variables.
2
@import '../../global/components/_mixins'; // global mixings.
3
 
4
/***
5
Lock Page
6
***/
7
body {
8
  background-color: lighten(#364150, 8%) !important;
9
  padding: 0;
10
  margin: 0;
11
}
12
 
13
.page-lock {
14
	margin: 90px auto 30px auto;
15
	width: 450px;
16
}
17
 
18
.page-lock .page-logo {
19
	text-align: center;
20
	margin-bottom: 15px;
21
}
22
 
23
.page-lock .page-body {
24
  width: 100%;
25
  margin-top: 50px;
26
  background-color: #3a4554;
27
 
28
	@include border-radius(7px);
29
}
30
 
31
.lock-head {
32
	display: block;
33
	background-color: #323d4b;
34
	text-align: center;
35
	padding-top: 15px;
36
	padding-bottom: 15px;
37
	font-size: 22px;
38
	font-weight: 400;
39
	color: #4db3a5;
40
	@include border-radius(7px 7px 0 0);
41
}
42
 
43
.lock-body {
44
	display: block;
45
	margin: 35px;
46
	overflow: hidden;
47
}
48
 
49
.lock-avatar {
50
	margin-top: 15px;
51
	height: 110px;
52
	-webkit-border-radius: 50% !important;
53
	-moz-border-radius: 50% !important;
54
	border-radius: 50% !important;
55
}
56
 
57
.lock-form {
58
	padding-left: 40px;
59
}
60
 
61
.lock-form h4 {
62
	margin-top: 0px;
63
	color: #dbe2ea;
64
	font-size:18px;
65
	font-weight: 400;
66
}
67
 
68
.lock-form .form-group {
69
	margin-top: 20px;
70
}
71
 
72
.lock-form .form-group .form-control {
73
	background-color: #303a48;
74
	border: none;
75
	width: 220px;
76
	height: 40px;
77
	color: #697687;
78
}
79
 
80
.lock-form .form-group .form-control::-moz-placeholder { color: #556376; opacity: 1; }
81
.lock-form .form-group .form-control:-ms-input-placeholder { color: #556376; }
82
.lock-form .form-group .form-control::-webkit-input-placeholder { color: #556376; }
83
 
84
.lock-form .form-group .form-control:focus {
85
	background-color: #2b3542;
86
}
87
 
88
 
89
.lock-form .form-actions {
90
	margin-top: 20px;
91
}
92
 
93
.lock-form .form-actions .btn-success {
94
	background-color: #e76070 !important;
95
	width: 220px;
96
	font-weight: 600;
97
	padding: 10px;
98
}
99
 
100
.lock-form .form-actions .btn-success:hover {
101
	background-color: #d75464 !important;
102
}
103
 
104
.lock-bottom {
105
	display: block;
106
	background-color: #323d4b;
107
	text-align: center;
108
	padding-top: 20px;
109
	padding-bottom: 20px;
110
 
111
 
112
	@include border-radius(0 0 7px 7px);
113
}
114
 
115
.lock-bottom  a {
116
	font-size: 14px;
117
	font-weight: 400;
118
	color: #638cac;
119
}
120
 
121
.lock-bottom  a:hover {
122
	color: #7ba2c0;
123
}
124
 
125
.page-footer-custom {
126
	text-align: center;
127
	padding-top: 40px;
128
	color: #5f6e83;
129
}
130
 
131
@media (max-width: 768px) {
132
	.page-lock {
133
		margin: 100px auto;
134
	}
135
}
136
 
137
@media (max-width: 560px) {
138
 
139
	.page-lock {
140
		margin: 50px auto;
141
		width: 400px;
142
	}
143
 
144
	.lock-body {
145
		margin: 30px;
146
	}
147
 
148
	.lock-avatar {
149
		width: 120px;
150
		height: 120px;
151
		margin-top: 20px;
152
	}
153
 
154
	.lock-form h4 {
155
		font-size:16px;
156
	}
157
 
158
	.lock-form .form-group .form-control {
159
		padding: 20px 20px;
160
		width: 170px;
161
	}
162
 
163
	.lock-form .form-actions .btn-success {
164
		width: 170px;
165
		margin-bottom: 10px;
166
	}
167
 
168
}
169
 
170
@media (max-width: 420px) {
171
 
172
	.page-lock {
173
		margin: 30px auto;
174
		width: 280px;
175
	}
176
 
177
	.lock-body {
178
		margin: 0px;
179
	}
180
 
181
	.page-lock .page-body {
182
	  margin-top: 30px;
183
	}
184
 
185
	.lock-avatar {
186
		margin-top: 20px;
187
	}
188
 
189
	.lock-avatar-block {
190
		display: block;
191
		width: 100%;
192
		text-align: center;
193
		margin-bottom: 10px
194
	}
195
 
196
	.lock-form {
197
		padding-left: 20px;
198
	}
199
 
200
	.lock-form h4 {
201
		font-size:16px;
202
		text-align: center;
203
	}
204
 
205
	.lock-form .form-group .form-control {
206
		padding: 20px 20px;
207
		width: 240px;
208
	}
209
 
210
	.lock-form .form-actions .btn-success {
211
		width: 240px;
212
		margin-bottom: 20px;
213
	}
214
 
215
}
216
 
217
 
218
 
219
 
220
 
221
 
222
 
223
 
224
 
225