MediaWiki:Medik.css: Difference between revisions
From Makerpedia
Added in css lines written by Aaron for other skins |
added sidebar icons for Medik skin |
||
| Line 24: | Line 24: | ||
#mw-navigation { | #mw-navigation { | ||
| Line 39: | Line 34: | ||
} | } | ||
#mw-navigation a:not(.disabled) { | #mw-navigation a:not(.disabled), #mw-navigation a:not(.disabled):hover { | ||
color: white; | color: white; | ||
text-align: center; | |||
} | |||
@media screen and (min-width: 768px) { | |||
#p-banner .mw-wiki-logo { | |||
width: 5em; | |||
height: 5em; | |||
} | |||
#site-navigation li a::before { | |||
text-align: center; | |||
display: block; | |||
content: ''; | |||
background-size: 3em; | |||
height: 3em; | |||
width: 3em; | |||
margin: auto; | |||
margin-top: 1em; | |||
filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(141deg) brightness(103%) contrast(101%); | |||
} | |||
#site-navigation li a:hover { | |||
filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(141deg) brightness(103%) contrast(101%); | |||
} | |||
} | } | ||
| Line 47: | Line 64: | ||
} | } | ||
#n-HOME a::before { | #n-HOME a::before, #n-HOME-1 a::before { | ||
background-image: url("images/icons/home.svg"); | |||
- | } | ||
#n-SPACES a::before, #n-SPACES-1 a::before { | |||
background-image: url("images/icons/door.svg"); | |||
} | |||
#n-TOOLS a::before, #n-TOOLS-1 a::before { | |||
background-image: url("images/icons/tools.svg"); | |||
} | |||
#n-TUTORIALS a::before, #n-SUBMIT-PROJECT a::before { | |||
background-image: url("images/icons/howTo.svg"); | |||
} | |||
#n-PROJECTS a::before { | |||
background-image: url("images/icons/gallery.svg"); | |||
} | } | ||
Revision as of 22:59, 25 January 2025
/* All CSS here will be loaded for users of the Medik skin */
/* css from Aaron */
body {
height: 100%;
}
h2, h1, h3 {
font-family: Arial, Helvetica, sans-serif;
}
[show*='vid'] img, [show*='none'] img {
display: none;
}
[show*='img'] .videoBox, [show*='none'] .videoBox {
display: none;
}
.ytplayer {
max-width: 90vw;
}
#mw-navigation {
background-color: #003069;
}
#p-navigation-label {
visibility: hidden;
}
#mw-navigation a:not(.disabled), #mw-navigation a:not(.disabled):hover {
color: white;
text-align: center;
}
@media screen and (min-width: 768px) {
#p-banner .mw-wiki-logo {
width: 5em;
height: 5em;
}
#site-navigation li a::before {
text-align: center;
display: block;
content: '';
background-size: 3em;
height: 3em;
width: 3em;
margin: auto;
margin-top: 1em;
filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(141deg) brightness(103%) contrast(101%);
}
#site-navigation li a:hover {
filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(141deg) brightness(103%) contrast(101%);
}
}
#site-navigation li {
text-align: center;
}
#n-HOME a::before, #n-HOME-1 a::before {
background-image: url("images/icons/home.svg");
}
#n-SPACES a::before, #n-SPACES-1 a::before {
background-image: url("images/icons/door.svg");
}
#n-TOOLS a::before, #n-TOOLS-1 a::before {
background-image: url("images/icons/tools.svg");
}
#n-TUTORIALS a::before, #n-SUBMIT-PROJECT a::before {
background-image: url("images/icons/howTo.svg");
}
#n-PROJECTS a::before {
background-image: url("images/icons/gallery.svg");
}