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