2019-08-15 17:40:13 +00:00
|
|
|
//
|
|
|
|
// Citizen - Bottombar Styles
|
|
|
|
// https://starcitizen.tools
|
|
|
|
//
|
|
|
|
|
|
|
|
#mw-bottombar {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
transform: translate(0px, @header-height + @margin-side);
|
|
|
|
transition: @transition-transform;
|
|
|
|
|
2019-12-20 20:19:17 +00:00
|
|
|
&-buttons {
|
2019-08-15 17:40:13 +00:00
|
|
|
display: flex;
|
|
|
|
margin: @margin-side;
|
|
|
|
padding: 0 @margin-side / 2;
|
|
|
|
background-color: #7289da; // Discord color
|
|
|
|
border-radius: 100%;
|
|
|
|
.boxshadow(4);
|
|
|
|
transition: @transition-transform-quick, @transition-box-shadow-quick;
|
|
|
|
|
|
|
|
.citizen-ui-icon {
|
|
|
|
> a {
|
|
|
|
width: @icon-box-size + @icon-padding;
|
|
|
|
height: @header-height;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
text-indent: -1000px; // Hide text
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
display: block;
|
|
|
|
.resource-loader-menu-icon;
|
|
|
|
transition: @transition-opacity;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
&:after {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Movable navigation bar
|
|
|
|
.nav-up ~ #mw-bottombar {
|
|
|
|
transform: none;
|
|
|
|
}
|
2019-10-29 04:33:03 +00:00
|
|
|
|
|
|
|
@media only screen and (max-width: @screen0) {
|
|
|
|
#mw-bottombar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|