MediaWiki:Common.css: Difference between revisions
No edit summary |
m 15 revisions imported |
||
(9 intermediate revisions by the same user not shown) | |||
Line 34: | Line 34: | ||
display: flex; | display: flex; | ||
justify-content: space-between; | justify-content: space-between; | ||
align-items: center; | |||
} | } | ||
.comic .previous, .comic .next { | .comic .previous, .comic .next { | ||
flex: 1; | |||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
gap: 0.5em; | gap: 0.5em; | ||
} | |||
.comic .next { | |||
justify-content: flex-end; | |||
} | } | ||
.comic .previous a, .comic .next a { | .comic .previous a, .comic .next a { | ||
font-size: 20px; | font-size: 20px; | ||
width: max-content; /* This fixes "Video X" labels making the whole bar taller. There's probably a better solution. */ | |||
} | } | ||
Line 48: | Line 54: | ||
font-weight: bold; | font-weight: bold; | ||
font-size: 24px; | font-size: 24px; | ||
margin: 0; | margin: 0 auto; | ||
} | |||
.comic .image-container { | |||
display: flex; flex-wrap: wrap; | |||
} | } | ||
Line 60: | Line 70: | ||
.comic .image-container img { | .comic .image-container img { | ||
max-width: 400px; | max-width: 80vw; | ||
width: 400px; | |||
display: block; | display: block; | ||
border: 1px solid grey; | border: 1px solid grey; | ||
Line 68: | Line 79: | ||
display: flex; flex-wrap: wrap; gap: 0 0.5em; | display: flex; flex-wrap: wrap; gap: 0 0.5em; | ||
margin: 0 auto; | margin: 0 auto; | ||
} | |||
.index-banner { | |||
text-align: center; display: flex; gap: 0.25em; justify-items: center; flex-direction: column; | |||
} | |||
.index-banner p { margin: 0; padding: 0; } | |||
.index-split { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 1em; | |||
} | |||
.index-split > div { | |||
flex-shrink: 0; | |||
flex-grow: 1; | |||
width: auto; | |||
} | |||
.index-split > div:first-child { | |||
flex-basis: 60%; | |||
} | |||
.index-split > div:last-child { | |||
flex-basis: 35%; | |||
} | } |
Latest revision as of 21:09, 25 October 2024
/* CSS placed here will be applied to all skins */
.dim-label {
color: rgba(0, 0, 0, 0.525);
}
.comic * {
box-sizing: border-box;
}
.comic-mainpage {
border: 1px solid #e0e0e0;
background-color: #f8f9fa;
padding: 0.75em;
}
.comic {
border: 1px solid #e0e0e0;
background-color: #f8f9fa;
padding: 0.75em;
display: flex;
flex-direction: column;
flex-wrap: wrap;
gap: 0.75em;
text-align: center;
}
.comic p {
margin: 0;
padding: 0;
}
.comic .prev-title-next {
display: flex;
justify-content: space-between;
align-items: center;
}
.comic .previous, .comic .next {
flex: 1;
display: flex;
align-items: center;
gap: 0.5em;
}
.comic .next {
justify-content: flex-end;
}
.comic .previous a, .comic .next a {
font-size: 20px;
width: max-content; /* This fixes "Video X" labels making the whole bar taller. There's probably a better solution. */
}
.comic .title {
font-weight: bold;
font-size: 24px;
margin: 0 auto;
}
.comic .image-container {
display: flex; flex-wrap: wrap;
}
.comic .image-container a {
margin: 0 auto;
display: block;
width: fit-content;
background: none !important;
padding-right: 0;
}
.comic .image-container img {
max-width: 80vw;
width: 400px;
display: block;
border: 1px solid grey;
}
.comic .tags {
display: flex; flex-wrap: wrap; gap: 0 0.5em;
margin: 0 auto;
}
.index-banner {
text-align: center; display: flex; gap: 0.25em; justify-items: center; flex-direction: column;
}
.index-banner p { margin: 0; padding: 0; }
.index-split {
display: flex;
flex-wrap: wrap;
gap: 1em;
}
.index-split > div {
flex-shrink: 0;
flex-grow: 1;
width: auto;
}
.index-split > div:first-child {
flex-basis: 60%;
}
.index-split > div:last-child {
flex-basis: 35%;
}