mirror of
https://github.com/ansible/awx.git
synced 2026-02-12 07:04:45 -03:30
53 lines
741 B
Plaintext
53 lines
741 B
Plaintext
/** @define DashboardCounts */
|
|
|
|
.Footer {
|
|
height: 40px;
|
|
background-color: #f6f6f6;
|
|
color: #848992;
|
|
width: 100%;
|
|
z-index: 1040;
|
|
position: fixed;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.Footer-logo {
|
|
float: left;
|
|
height: 40px;
|
|
width: 250px;
|
|
}
|
|
|
|
.Footer-logoImage {
|
|
height: 40px;
|
|
width: 250px;
|
|
}
|
|
|
|
.Footer-copyright{
|
|
float: right;
|
|
font-size: 12px;
|
|
margin-right: 20px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.Footer-link:hover{
|
|
color: #ffffff;
|
|
}
|
|
|
|
.Footer-link{
|
|
color: #848992;
|
|
}
|
|
|
|
.Footer-copyright.is-loggedOut,
|
|
.Footer-logo.is-loggedOut {
|
|
opacity: 0;
|
|
}
|
|
|
|
@menu-breakpoint: 553px;
|
|
|
|
@media screen and (max-width: (@menu-breakpoint)) {
|
|
.Footer-copyright{
|
|
display: none;
|
|
}
|
|
}
|