blob: 8287b0f7ae11dd9aad4aeb62e64aed0a5c995d1d (
plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
/***************************************************************
General Page Styling
****************************************************************/
*{
margin: 0;
padding: 0;
}
html, body{
height: 100%;
font-family: Impact, Charcoal, sans-serif;
}
/***************************************************************
Header
****************************************************************/
div.header-bar{
background-color: #3083D6;
height: 80px;
width: 100%;
position: absolute;
}
a.logo{
display: block;
height: 70px;
width: 70px;
margin-top: 5px;
margin-left: 5px;
background-image: url(./logo.png);
background-repeat:no-repeat;
background-size:66px 66px;
background-color:#3083D6;
background-position: center;
border: 1px solid red;
}
.logo:hover .logo{
display: block;
background:#98C1EA;
background-image: url(./logo.png);
background-repeat:no-repeat;
background-size:66px 66px;
background-position: center;
}
/************************************************************
Page-Wrap for sticky footer
*************************************************************/
#page-wrap{
margin-bottom: -25px;
width: 100%;
min-height: 100%;
}
#page-wrap:after{
content: "";
display: block;
height: 25px;
}
/**********************************************************
Content-Area
**********************************************************/
#content-area{
height: 100%;
width: 100%;
position: absolute;
margin-bottom: 0;
}
/*********************************************************
Login-Form
**********************************************************/
div.login-area{
height: auto;
width: 400px;
position: relative;
top: 50%;
transform: translateY(-50%);
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
margin-left: auto;
margin-right: auto;
vertical-align: middle;
border: 1px solid grey;
padding: 10px;
}
h1.login-area{
font-weight: lighter;
}
form.login-form{
}
input.login-input{
box-shadow: 0px 0px 0px;
border-radius: 0;
height: 40px;
font-size: 25px;
margin-top: 15px;
width: 100%;
display:block;
}
input.login-input:focus{
background: #D6E0E5
}
#button-input{
height: 40px;
width: 120px;
display:inline;
}
#recover-password-link{
}
/******************************************************
FOOTER
*******************************************************/
footer{
height: 25px;
width: 100%;
margin-top: -25px;
background-color:#3083D6;
position:relative;
}
#copyright-text{
margin-right: 10px;
text-align: right;
font-size: 12px;
color: white;
}
|