29 lines
499 B
CSS
29 lines
499 B
CSS
.login-card {
|
|
position: absolute;
|
|
top: 0; left: 0; bottom: 0; right: 0;
|
|
margin: auto;
|
|
height: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.unauthorized-card {
|
|
position: absolute;
|
|
top: 0; left: 0; bottom: 0; right: 0;
|
|
margin: auto;
|
|
height: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
#login_container {
|
|
height: 100%;
|
|
}
|
|
|
|
#main_content {
|
|
height: 100%;
|
|
}
|
|
|
|
.active {color: green;}
|
|
.inactive {color: orange;}
|
|
.canceled {color: red;}
|
|
.depracated {color: yellow;}
|
|
.hidden {display: none;} |