Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

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