48 lines
681 B
CSS
Raw Normal View History

2017-01-26 01:38:19 -05:00
#loginBody {
height: 94vh;
width: 100%;
2017-01-26 01:38:19 -05:00
background-color: #222328;
2016-08-09 01:33:14 -04:00
}
#loginFooter {
width: 100%;
height: 6vh;
2017-01-26 01:38:19 -05:00
background-color: #1C1C1F;
position: absolute;
bottom: 0;
2016-08-09 01:33:14 -04:00
}
2017-01-26 01:38:19 -05:00
#loginLogo {
height: 50vh;
}
#github, #version {
font-size: 2.3vh;
2017-01-26 01:38:19 -05:00
color: #FFF !important;
height: 6vh;
margin: 0;
2016-09-09 00:45:58 -04:00
padding: 0 0 0 1vw;
line-height: 6vh;
display: inline-block;
2016-08-09 01:33:14 -04:00
}
#version {
float: right;
margin-right: 1%;
}
2016-08-09 01:33:14 -04:00
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
2016-08-09 01:33:14 -04:00
}
a:hover {
color: #00BFFF;
}