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: #ddd;
9
	padding: 0;
10
	margin: 0;
11
}
12
 
13
.page-lock {
14
   top: 50%;
15
   left: 50%;
16
   position: absolute;
17
   margin-top: -140px;
18
   margin-left: -260px;
19
}
20
 
21
.page-lock .page-logo {
22
	margin-bottom: 15px;
23
}
24
 
25
.page-lock .page-body {
26
   width: 510px;
27
   padding: 15px;
28
   background: url(../img/bg-white-lock.png) repeat;
29
   @include border-radius(7px);
30
}
31
 
32
.page-lock .page-body:after,
33
.page-lock .page-body:before {
34
	display: table;
35
	content: "";
36
	line-height: 0;
37
}
38
 
39
.page-lock .page-body:after {
40
	clear: both;
41
}
42
 
43
.page-lock .page-footer-custom {
44
   margin-top: 10px;
45
   text-align: left !important;
46
   font-size: 12px;
47
   color: #eaeaea;
48
}
49
 
50
.page-lock img.page-lock-img {
51
	float: left;
52
	width: 200px;
53
	height: auto;
54
}
55
 
56
.page-lock .page-lock-info {
57
	padding-left: 10px;
58
	float: right;
59
	width: 280px;
60
}
61
 
62
.page-lock .page-lock-info h1 {
63
	margin-top: -5px;
64
	font-weight: 300;
65
	color: #fff;
66
	font-size: 28px;
67
	line-height: 32px;
68
	margin-bottom: 5px;
69
}
70
 
71
.page-lock .page-lock-info .email {
72
	color: #eee;
73
	display: block;
74
	font-size: 14px;
75
	line-height: 14px;
76
	margin-bottom: 10px;
77
}
78
 
79
.page-lock .page-lock-info .locked {
80
	color: #333;
81
	font-size: 14px;
82
	line-height: 14px;
83
	font-style: normal;
84
}
85
 
86
.page-lock .page-lock-info form {
87
	margin: 28px 0;
88
}
89
 
90
.page-lock .page-lock-info input {
91
	background: #fff;
92
}
93
 
94
.page-lock .relogin {
95
	margin-top: 10px;
96
}
97
 
98
.page-lock .relogin a {
99
	color: #e1e1e1;
100
}
101
 
102
/*Responsive*/
103
@media (max-width: 768px) {
104
	.page-lock {
105
	   top:0px;
106
	   width: 280px;
107
	   margin-top: 20px;
108
	   margin-left: -140px;
109
	}
110
 
111
	.page-lock .page-body {
112
		padding: 20px 10px;
113
	    text-align: center;
114
		width: 280px;
115
	}
116
 
117
	.page-lock img.page-lock-img {
118
		float: none !important;
119
		display: block;
120
		margin: 0 auto;
121
		text-align: center;
122
		margin-bottom: 15px;
123
	}
124
	.page-lock .page-lock-info {
125
		float: none !important;
126
		width: 260px;
127
		margin: 0 auto;
128
	}
129
 
130
	.page-lock .page-lock-info input {
131
		width: 200px !important;
132
	}
133
}