MediaWiki:SkillNav.css: Difference between revisions
From Elwiki
No edit summary |
No edit summary |
||
(8 intermediate revisions by the same user not shown) | |||
Line 17: | Line 17: | ||
} | } | ||
.skill-nav .skill-nav-header | .skill-nav .skill-nav-header .image-cropped { | ||
margin-left: - | margin-left: -2px; | ||
transform: skew(10deg); | transform: skew(10deg); | ||
} | } | ||
Line 24: | Line 24: | ||
.skill-nav .skill-nav-header { | .skill-nav .skill-nav-header { | ||
display: flex; | display: flex; | ||
place-items: center; | place-items: center; | ||
transform: skew(-10deg); | transform: skew(-10deg); | ||
Line 31: | Line 30: | ||
} | } | ||
.skill-nav .skill-nav- | .skill-nav .skill-nav-title { | ||
color: #fff; | color: #fff; | ||
font-weight: 500; | font-weight: 500; | ||
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); | text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); | ||
display: inline-block; | display: inline-block; | ||
font-size: 1.25rem; | |||
transform: skew(10deg); | transform: skew(10deg); | ||
} | } | ||
Line 128: | Line 127: | ||
} | } | ||
.skill-nav a > img { | .skill-nav a > img:not(.image-face img) { | ||
max-width: initial!important; | max-width: initial!important; | ||
} | |||
.skill-nav .image-face > span { | |||
display: flex; | |||
} | } | ||
Latest revision as of 00:34, 29 January 2024
.skill-nav {
margin: 1rem 0;
}
.skill-nav-inner-wrap {
margin-top: 0.5rem;
display: grid;
grid-template-columns: max-content auto;
border-top: 1px solid black;
border-left: 1px solid black;
user-select: none;
}
.skill-nav-inner-wrap > div {
border-bottom: 1px solid black;
border-right: 1px solid black;
}
.skill-nav .skill-nav-header .image-cropped {
margin-left: -2px;
transform: skew(10deg);
}
.skill-nav .skill-nav-header {
display: flex;
place-items: center;
transform: skew(-10deg);
overflow: hidden;
height: 45px;
}
.skill-nav .skill-nav-title {
color: #fff;
font-weight: 500;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
display: inline-block;
font-size: 1.25rem;
transform: skew(10deg);
}
.skill-nav .skill-nav-header a {
color: #fff !important;
}
.skill-nav .skill-nav-skill-content {
display: flex;
gap: 0.25rem;
flex-wrap: wrap;
}
.skill-nav .skill-nav-skill {
display: flex;
flex-direction: row;
place-content: center;
place-items: center;
transition: background-color 0.3s;
}
.skill-nav .skill-nav-skill a {
padding: 0.35rem;
text-decoration: none!important;
height: 100%;
display: flex;
place-items: center;
box-sizing: border-box;
}
.skill-nav .skill-nav-skill a:not(.skill-nav-image a) {
padding: 0.5rem 0.5rem 0.5rem 0.15rem;
width: 100%;
font-weight: 500;
}
.skill-nav .skill-nav-sub-head {
padding: 0.5rem;
min-width: 8.5rem;
font-weight: 500;
display: flex;
place-items: center;
}
.skill-nav .skill-nav-image {
margin-right: auto;
height: 100%;
display: flex;
place-items: center;
}
.skill-nav .skill-nav-image .force-skill-icon {
padding-right: 0.65rem;
height: calc(30px + 0.5rem)!important;
}
.skill-nav .skill-nav-skill .force-skill-icon a {
display: block;
}
.skill-nav .skill-nav-skill a.mw-selflink:not(.skill-nav-image a) {
font-weight: 600!important;
}
.skill-nav .self-skill:hover {
background: none!important;
}
.skill-nav .mw-customtoggle {
width: calc(20px + 0.75rem);
height: calc(20px + 0.75rem);
transform: skew(10deg);
margin-left: auto;
margin-right: 1.5rem;
padding: 0.5rem;
box-sizing: border-box;
background-size: 20px;
background-repeat: no-repeat;
background-position: center;
transition: background-color .3s;
border-radius: 4px;
}
.skill-nav .mw-customtoggle:hover {
background-color: rgba(255,255,255,.25);
}
.skill-nav .mw-collapsed {
display: none;
}
.skill-nav a > img:not(.image-face img) {
max-width: initial!important;
}
.skill-nav .image-face > span {
display: flex;
}
/* Force Nav */
.force-nav .skill-nav-extra-head {
place-content: center;
grid-column: span 2;
}
.force-nav .skill-nav-header a {
font-size: 1.05rem;
}
.force-nav .skill-nav-header {
height: auto;
padding: 0.2rem;
place-content: center;
}
.force-nav .mw-customtoggle {
margin-left: 0;
position: absolute;
right: 0;
background-size: 15px;
width: calc(15px + 0.75rem);
height: calc(15px + 0.75rem);
}
@media screen and (max-width: 500px) {
.skill-nav .skill-nav-sub-head {
min-width: unset;
}
.skill-nav-inner-wrap {
grid-template-columns: min-content auto;
}
.skill-nav .skill-nav-skill-content {
display: flex;
flex-direction: column;
justify-content: center;
gap: 0;
}
}