88 lines
893 B
Plaintext
88 lines
893 B
Plaintext
@media (max-width: 1080px) {
|
|
@import 'layout-touch.less';
|
|
}
|
|
|
|
@media (min-width: 1081px) {
|
|
@import 'layout-mouse.less';
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediawiki {
|
|
|
|
}
|
|
|
|
#topbar {
|
|
background-color: yellow;
|
|
|
|
}
|
|
|
|
#sidebar-nav {
|
|
|
|
}
|
|
|
|
|
|
.nav-menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
gap: .6em;
|
|
}
|
|
|
|
.nav-links {
|
|
background-color: blue;
|
|
}
|
|
|
|
.mw-list-item a, .mw-list-item a {
|
|
color: white;
|
|
}
|
|
|
|
#sidebar-pageview {
|
|
|
|
}
|
|
|
|
.sidebar-pageview-menu {
|
|
background-color: purple;
|
|
}
|
|
|
|
#titleblock, #pagebody-header {
|
|
background-color: green;
|
|
}
|
|
|
|
#mw-content-text {
|
|
background-color: red;
|
|
}
|
|
|
|
#bottombar {
|
|
background-color: pink;
|
|
}
|
|
|
|
|
|
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|
|
|
|
a {
|
|
color: unset;
|
|
}
|
|
|
|
h1 {
|
|
margin: unset;
|
|
border: unset;
|
|
font-size: unset;
|
|
font-weight: unset;
|
|
}
|
|
|
|
h2 {
|
|
margin: unset;
|
|
border: unset;
|
|
padding: 0;
|
|
}
|
|
|
|
p {
|
|
margin: unset;
|
|
} |