UNPKG

1.16 kBCSSView Raw
1
2
3
4/**
5 * 1. Force a vertical scrollbar to prevent a jumpy page.
6 * 2. Fix margin 0 auto in IE4-5.5.
7 * 3. The bottom margin is the negative value of the footer's height.
8 */
9
10html {
11 height: 100%;
12 overflow-y: scroll; /* 1 */
13 min-width: 300px;
14}
15
16body {
17 height: 100%;
18 text-align: center; /* 2 */
19}
20
21.App {
22 margin: 0 auto -150px; /* 3 */
23}
24
25.App-row {
26 text-align: left; /* 2 */
27 padding: 0 8px;
28}
29[dir="rtl"] .App-row {
30 text-align: right;
31}
32
33.lg .App-row {
34 width: 990px;
35 margin: 0 auto;
36 zoom: 1;
37}
38
39.top {
40 height: 44px;
41 line-height: 43px;
42 font-size: .75em;
43}
44.Menu {
45 height: 56px;
46 font-size: .75em;
47}
48
49.Footer,
50.Footer-spacer {
51 display: block;
52 clear: both;
53 height: 149px; /* 3 */
54}
55
56.login {
57 max-width: 450px;
58 margin: 0 auto;
59}
60.md .login__label,
61.lg .login__label {
62 padding-right: 1em;
63 text-align: right;
64}
65
66.modal__content {
67 position: absolute;
68 left: 0;
69 right: 0;
70 margin: 0 auto;
71 top: 60px;
72 width: 300px;
73 background-color: #fff;
74 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
75}
76
77.sm .modal__content {
78 width: 100%;
79 height: 100%;
80 top:0;
81}
82
83.modal__background {
84 background-color: #000;
85 opacity: .6;
86}
87
88
89
90
91