offline.css
753 Bytes
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
/**
* @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
body.site {
margin: 0;
padding: 0;
}
.outer {
display: table;
position: absolute;
height: 100%;
width: 100%;
}
.middle {
display: table-cell;
vertical-align: middle;
}
.inner {
margin: 0 auto;
max-width: 30em;
background-color: #ffffff;
}
.header {
text-align: center;
margin: 0 0 1em 0;
}
img {
max-width: 100%;
height: auto;
border: 0;
}
form, fieldset {
margin: 0;
padding: 0;
}
label {
display: block;
margin: 0;
}
input[type="text"], input[type="password"] {
box-sizing: border-box;
width: 100%;
height: auto;
}
input {
margin: .5em 0 1em 0;
}