48 lines
681 B
CSS
48 lines
681 B
CSS
#loginBody {
|
|
height: 94vh;
|
|
width: 100%;
|
|
background-color: #222328;
|
|
}
|
|
|
|
#loginFooter {
|
|
width: 100%;
|
|
height: 6vh;
|
|
background-color: #1C1C1F;
|
|
position: absolute;
|
|
bottom: 0;
|
|
}
|
|
|
|
#loginLogo {
|
|
height: 50vh;
|
|
}
|
|
|
|
#github, #version {
|
|
font-size: 2.3vh;
|
|
color: #FFF !important;
|
|
|
|
height: 6vh;
|
|
margin: 0;
|
|
padding: 0 0 0 1vw;
|
|
|
|
line-height: 6vh;
|
|
display: inline-block;
|
|
}
|
|
|
|
#version {
|
|
float: right;
|
|
margin-right: 1%;
|
|
}
|
|
|
|
a {
|
|
color: #0099CC;
|
|
text-decoration: none;
|
|
|
|
-webkit-transition: color 0.4s ease;
|
|
-moz-transition: color 0.4s ease;
|
|
-ms-transition: color 0.4s ease;
|
|
transition: color 0.4s ease
|
|
}
|
|
|
|
a:hover {
|
|
color: #00BFFF;
|
|
} |