Template
Pagetabs/styles.css
From Dogcraft Wiki
(Created page with ".pagetabs { display:flex; justify-content:space-around; min-width: 100%; margin:1.5em 0 0 0; font-weight: bold; gap:16px; flex-wrap:nowrap; overflow:auto; whi...") |
m (mobile wrap) |
||
Line 9: | Line 9: | ||
overflow:auto; | overflow:auto; | ||
white-space:nowrap; | white-space:nowrap; | ||
} | |||
@media only screen and (max-width: 999px) { | |||
.pagetabs { | |||
justify-content:space-between; | |||
} | |||
} | } | ||
Revision as of 23:46, 2 July 2022
.pagetabs {
display:flex;
justify-content:space-around;
min-width: 100%;
margin:1.5em 0 0 0;
font-weight: bold;
gap:16px;
flex-wrap:nowrap;
overflow:auto;
white-space:nowrap;
}
@media only screen and (max-width: 999px) {
.pagetabs {
justify-content:space-between;
}
}
.pagetabs > div {
padding-bottom:10px;
}
.pagetabs a {
padding-bottom:8px;
}
.pagetabs .mw-selflink.selflink {
border-bottom: solid 3px black;
}
.pagetabs + hr {
margin:-3px 0 1rem 0;
border-style:solid;
border-color:#d9d6d3;
}
This page was last modified on 2 July 2022, at 23:46. (13 months ago)