Project

General

Profile

Download (2.71 KB) Statistics
| Branch: | Tag: | Revision:
1
body, html {
2
    height: 100%;
3
    padding: 0;
4
    margin: 0;
5
}
6

    
7
body {
8
    width: 100%;
9
}
10

    
11
header {
12
}
13

    
14
#headerrow {
15
    position: fixed;
16
    height: 90px;
17
    top: 0;
18
    width: 100%;
19
    background-color: white;
20
}
21

    
22
.pagebody {
23
    position: absolute;
24
    top:90px;
25
    bottom:25px;
26
    width: 100%;
27
    color: white;
28
}
29

    
30
.pagebodywarn {
31
    position: absolute;
32
    top:140px;
33
    bottom:25px;
34
    width: 100%;
35
    color: white;
36
}
37

    
38
.nowarning {
39
	height: 80px;
40
	padding-top: 10px;
41
}
42

    
43
#hostspan {
44
	text-align: right;
45
}
46

    
47
.msgbox {
48
	padding-right: 60px;
49
	padding-top: 25px;
50
}
51

    
52
@media only screen and (max-width : 768px) {
53
    /* only size 'xs' and below */
54
    #headerrow {
55
        height: 100px;
56
    }
57

    
58
    .pagebody {
59
    	top: 100px;
60
    }
61

    
62
    .pagebody2 {
63
		top: 250px;
64
    }
65

    
66
    .nowarning {
67
		height: 60px;
68
	}
69

    
70
	.msgbox {
71
		padding-right: 0px;
72
		padding-top: 0px;
73
	}
74

    
75
	#hostspan {
76
		text-align: center;
77
	}
78
}
79

    
80
#footertext {
81
    position: fixed;
82
    height: 25px;
83
    bottom: 0;
84
    width: 100%;
85
    background-color: #212121;
86
    color: white;
87
    text-align: center;
88
}
89

    
90
.loginCont {
91
    position: absolute;
92
    top: 50%; left: 50%;
93
    transform: translate(-50%,-50%);
94
    height: 55%;
95
    width: 80%;
96
}
97

    
98
.error-panel a {
99
	color: white;
100
}
101
p.form-title
102
{
103
    font-family: 'Open Sans' , sans-serif;
104
    font-size: 20px;
105
    font-weight: 500;
106
    text-align: center;
107
    color: #FFFFFF;
108
    margin-top: 5%;
109
    text-transform: uppercase;
110
    letter-spacing: 4px;
111
}
112

    
113
form.login
114
{
115
    width: 270px;
116
    margin: 0 auto;
117
}
118

    
119
form.login input[type="text"], form.login input[type="password"]
120
{
121
    width: 100%;
122
    margin: 0;
123
    padding: 10px 10px;
124
    background: 0;
125
    border: 0;
126
    border-bottom: 1px solid #FFFFFF;
127
    outline: 0;
128
    font-style: italic;
129
    font-size: 18px;
130
    font-weight: 600;
131
    letter-spacing: 1px;
132
    margin-bottom: 5px;
133
    color: #FFFFFF;
134
    outline: 0;
135
}
136

    
137
form.login input[type="submit"]
138
{
139
    width: 60%;
140
    font-size: 14px;
141
    text-transform: uppercase;
142
    font-weight: 500;
143
    margin-top: 36px;
144
    outline: 0;
145
    cursor: pointer;
146
    letter-spacing: 1px;
147
    display: block;
148
    margin : 0 auto;
149
    margin-top: 36px;
150
}
151

    
152
form.login input[type="submit"]:hover
153
{
154
    transition: background-color 0.5s ease;
155
}
156

    
157
form.login label, form.login a
158
{
159
    font-size: 12px;
160
    font-weight: 400;
161
    color: #FFFFFF;
162
}
163

    
164
form.login a
165
{
166
    transition: color 0.5s ease;
167
}
168

    
169
form.login a:hover
170
{
171
    color: #2ecc71;
172
}
173

    
174
.logoCol {
175
    height: 100%;
176
}
177

    
178
/** Re-style web-kit broswer autocomplete boxes (Fixes Chrome's ugly yellow background) **/
179
@-webkit-keyframes autofill {
180
    to {
181
        color: white;
182
        background: transparent;
183
    }
184
}
185

    
186
input:-webkit-autofill {
187
    -webkit-animation-name: autofill;
188
    -webkit-animation-fill-mode: both;
189
}
(2-2/6)