1
|
@import url("/css/logo.css");
|
2
|
|
3
|
body, html {
|
4
|
height: 100%;
|
5
|
padding: 0;
|
6
|
margin: 0;
|
7
|
}
|
8
|
|
9
|
body {
|
10
|
width: 100%;
|
11
|
}
|
12
|
|
13
|
header {
|
14
|
}
|
15
|
|
16
|
#headerrow {
|
17
|
position: fixed;
|
18
|
height: 90px;
|
19
|
top: 0;
|
20
|
width: 100%;
|
21
|
background-color: white;
|
22
|
}
|
23
|
|
24
|
.pagebody {
|
25
|
position: absolute;
|
26
|
top:90px;
|
27
|
bottom:25px;
|
28
|
width: 100%;
|
29
|
color: white;
|
30
|
}
|
31
|
|
32
|
.pagebodywarn {
|
33
|
position: absolute;
|
34
|
top:140px;
|
35
|
bottom:25px;
|
36
|
width: 100%;
|
37
|
color: white;
|
38
|
}
|
39
|
|
40
|
.nowarning {
|
41
|
height: 80px;
|
42
|
padding-top: 10px;
|
43
|
}
|
44
|
|
45
|
#hostspan {
|
46
|
text-align: right;
|
47
|
}
|
48
|
|
49
|
.msgbox {
|
50
|
padding-right: 60px;
|
51
|
padding-top: 25px;
|
52
|
}
|
53
|
|
54
|
@media only screen and (max-width : 768px) {
|
55
|
/* only size 'xs' and below */
|
56
|
#headerrow {
|
57
|
height: 100px;
|
58
|
}
|
59
|
|
60
|
.pagebody {
|
61
|
top: 100px;
|
62
|
}
|
63
|
|
64
|
.pagebody2 {
|
65
|
top: 250px;
|
66
|
}
|
67
|
|
68
|
.nowarning {
|
69
|
height: 60px;
|
70
|
}
|
71
|
|
72
|
.msgbox {
|
73
|
padding-right: 0px;
|
74
|
padding-top: 0px;
|
75
|
}
|
76
|
|
77
|
#hostspan {
|
78
|
text-align: center;
|
79
|
}
|
80
|
}
|
81
|
|
82
|
#footertext {
|
83
|
position: fixed;
|
84
|
height: 25px;
|
85
|
bottom: 0;
|
86
|
width: 100%;
|
87
|
background-color: #212121;
|
88
|
color: white;
|
89
|
text-align: center;
|
90
|
}
|
91
|
|
92
|
.loginCont {
|
93
|
position: absolute;
|
94
|
top: 50%; left: 50%;
|
95
|
transform: translate(-50%,-50%);
|
96
|
height: 55%;
|
97
|
width: 80%;
|
98
|
}
|
99
|
|
100
|
.error-panel a {
|
101
|
color: white;
|
102
|
}
|
103
|
p.form-title
|
104
|
{
|
105
|
font-family: 'Open Sans' , sans-serif;
|
106
|
font-size: 20px;
|
107
|
font-weight: 500;
|
108
|
text-align: center;
|
109
|
color: #FFFFFF;
|
110
|
margin-top: 5%;
|
111
|
text-transform: uppercase;
|
112
|
letter-spacing: 4px;
|
113
|
}
|
114
|
|
115
|
form.login
|
116
|
{
|
117
|
width: 270px;
|
118
|
margin: 0 auto;
|
119
|
}
|
120
|
|
121
|
form.login input[type="text"], form.login input[type="password"]
|
122
|
{
|
123
|
width: 100%;
|
124
|
margin: 0;
|
125
|
padding: 10px 10px;
|
126
|
background: 0;
|
127
|
border: 0;
|
128
|
border-bottom: 1px solid #FFFFFF;
|
129
|
outline: 0;
|
130
|
font-style: italic;
|
131
|
font-size: 18px;
|
132
|
font-weight: 600;
|
133
|
letter-spacing: 1px;
|
134
|
margin-bottom: 5px;
|
135
|
color: #FFFFFF;
|
136
|
outline: 0;
|
137
|
}
|
138
|
|
139
|
form.login input[type="submit"]
|
140
|
{
|
141
|
width: 60%;
|
142
|
font-size: 14px;
|
143
|
text-transform: uppercase;
|
144
|
font-weight: 500;
|
145
|
margin-top: 36px;
|
146
|
outline: 0;
|
147
|
cursor: pointer;
|
148
|
letter-spacing: 1px;
|
149
|
display: block;
|
150
|
margin : 0 auto;
|
151
|
margin-top: 36px;
|
152
|
}
|
153
|
|
154
|
form.login input[type="submit"]:hover
|
155
|
{
|
156
|
transition: background-color 0.5s ease;
|
157
|
}
|
158
|
|
159
|
form.login label, form.login a
|
160
|
{
|
161
|
font-size: 12px;
|
162
|
font-weight: 400;
|
163
|
color: #FFFFFF;
|
164
|
}
|
165
|
|
166
|
form.login a
|
167
|
{
|
168
|
transition: color 0.5s ease;
|
169
|
}
|
170
|
|
171
|
form.login a:hover
|
172
|
{
|
173
|
color: #2ecc71;
|
174
|
}
|
175
|
|
176
|
.logoCol {
|
177
|
height: 100%;
|
178
|
}
|
179
|
|
180
|
#logodiv svg#logo {
|
181
|
width: 240px;
|
182
|
height: 100%;
|
183
|
}
|
184
|
|
185
|
/** Re-style web-kit browser autocomplete boxes (Fixes Chrome's ugly yellow background) **/
|
186
|
@-webkit-keyframes autofill {
|
187
|
to {
|
188
|
color: white;
|
189
|
background: transparent;
|
190
|
}
|
191
|
}
|
192
|
|
193
|
input:-webkit-autofill {
|
194
|
-webkit-animation-name: autofill;
|
195
|
-webkit-animation-fill-mode: both;
|
196
|
}
|