Project

General

Profile

Download (2.8 KB) Statistics
| Branch: | Tag: | Revision:
1 9ae8ade5 Jared Dillard
@import url("/css/logo.css");
2
3 d58a7378 Steve Beaver
body, html {
4
    height: 100%;
5
    padding: 0;
6
    margin: 0;
7 f6f1e117 Steve Beaver
}
8
9
body {
10 d58a7378 Steve Beaver
    width: 100%;
11 e79ff1ee Steve Beaver
}
12
13 d58a7378 Steve Beaver
header {
14 e79ff1ee Steve Beaver
}
15
16 ef1e838b Steve Beaver
#headerrow {
17 d58a7378 Steve Beaver
    position: fixed;
18
    height: 90px;
19
    top: 0;
20
    width: 100%;
21
    background-color: white;
22 e79ff1ee Steve Beaver
}
23
24 ef1e838b Steve Beaver
.pagebody {
25 d58a7378 Steve Beaver
    position: absolute;
26
    top:90px;
27
    bottom:25px;
28
    width: 100%;
29
    color: white;
30 e79ff1ee Steve Beaver
}
31
32 ef1e838b Steve Beaver
.pagebodywarn {
33 2d933f5a Steve Beaver
    position: absolute;
34
    top:140px;
35
    bottom:25px;
36
    width: 100%;
37
    color: white;
38
}
39
40
.nowarning {
41 d58a7378 Steve Beaver
	height: 80px;
42
	padding-top: 10px;
43 e79ff1ee Steve Beaver
}
44
45 d58a7378 Steve Beaver
#hostspan {
46
	text-align: right;
47 e79ff1ee Steve Beaver
}
48 2d933f5a Steve Beaver
49
.msgbox {
50
	padding-right: 60px;
51
	padding-top: 25px;
52
}
53 d58a7378 Steve Beaver
54
@media only screen and (max-width : 768px) {
55
    /* only size 'xs' and below */
56 ef1e838b Steve Beaver
    #headerrow {
57 d58a7378 Steve Beaver
        height: 100px;
58
    }
59
60 ef1e838b Steve Beaver
    .pagebody {
61 d58a7378 Steve Beaver
    	top: 100px;
62
    }
63 e79ff1ee Steve Beaver
64 ef1e838b Steve Beaver
    .pagebody2 {
65 2d933f5a Steve Beaver
		top: 250px;
66
    }
67
68
    .nowarning {
69 d58a7378 Steve Beaver
		height: 60px;
70
	}
71
72
	.msgbox {
73
		padding-right: 0px;
74
		padding-top: 0px;
75
	}
76
77
	#hostspan {
78
		text-align: center;
79
	}
80 e79ff1ee Steve Beaver
}
81
82 ef1e838b Steve Beaver
#footertext {
83 d58a7378 Steve Beaver
    position: fixed;
84
    height: 25px;
85
    bottom: 0;
86
    width: 100%;
87
    background-color: #212121;
88
    color: white;
89
    text-align: center;
90 e79ff1ee Steve Beaver
}
91
92 d58a7378 Steve Beaver
.loginCont {
93
    position: absolute;
94
    top: 50%; left: 50%;
95
    transform: translate(-50%,-50%);
96
    height: 55%;
97
    width: 80%;
98 e79ff1ee Steve Beaver
}
99
100 fde09aa8 Steve Beaver
.error-panel a {
101
	color: white;
102
}
103 e79ff1ee Steve Beaver
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 05ae8524 Steve Beaver
    width: 270px;
118 e79ff1ee Steve Beaver
    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 d58a7378 Steve Beaver
    display: block;
150
    margin : 0 auto;
151 e79ff1ee Steve Beaver
    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 d58a7378 Steve Beaver
.logoCol {
177
    height: 100%;
178 e79ff1ee Steve Beaver
}
179 58d471e9 Steve Beaver
180 9ae8ade5 Jared Dillard
#logodiv svg#logo {
181
    width: 240px;
182
    height: 100%;
183
}
184
185 4eb92692 Steve Beaver
/** Re-style web-kit broswer autocomplete boxes (Fixes Chrome's ugly yellow background) **/
186 58d471e9 Steve Beaver
@-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
}