mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 18:40:05 +00:00
4beb15e43d
* feat: update layout in different breakpoints * ci: lint code to MediaWiki standards Check commit and GitHub actions for more details * feat: remove negative margin for namespace and catlinks * ci: lint code to MediaWiki standards Check commit and GitHub actions for more details Co-authored-by: github-actions <github-actions@users.noreply.github.com>
27 lines
495 B
Plaintext
27 lines
495 B
Plaintext
.mw-sidebar-sitename {
|
|
position: fixed;
|
|
bottom: @margin-side;
|
|
left: @margin-side;
|
|
font-size: 11px;
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
|
transition: @transition-opacity-quick;
|
|
visibility: visible;
|
|
|
|
.mw-wiki-title {
|
|
display: block;
|
|
width: 100px;
|
|
letter-spacing: 4px;
|
|
}
|
|
}
|
|
|
|
a.mw-wiki-title {
|
|
color: var( --color-base--subtle );
|
|
}
|
|
|
|
@media ( max-width: @width-breakpoint-desktop-wide ) {
|
|
.mw-sidebar-sitename {
|
|
z-index: -1; // remove link
|
|
opacity: 0; // hide visual
|
|
}
|
|
}
|