MediaWiki:Common.css: Difference between revisions
(fix for minervalneue skin) |
(actually apply the fix) |
||
Line 130: | Line 130: | ||
/* fix for minervalneue skin */ | /* fix for minervalneue skin */ | ||
.box .content { | .mw-body-content .box .content { | ||
width: 95%; | width: 95%; | ||
} | } |
Revision as of 09:56, 9 August 2022
/* hello world */
/* cst1229's wasteof3 theme */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap");
:root {
/* blue theme colors */
--primary-50: #eff6ff;
--primary-100: #dbeafe;
--primary-200: #bfdbfe;
--primary-300: #93c5fd;
--primary-400: #60a5fa;
--primary-500: #3b82f6;
--primary-600: #2563eb;
--primary-700: #1d4ed8;
--primary-800: #1e40af;
--primary-900: #1e3a8a;
}
.mw-header {
background-color: var(--primary-400);
margin-top: 0;
padding: 0;
position: fixed;
top: 0;
left: 0;
/* vw doesn't take scrollbars into account so we have to use this ugly hack */
min-width: calc(100vw - 15px);
border-bottom: solid 4px black;
color: black;
}
.mw-sidebar, .mw-page-container, body {
background-color: rgb(243 244 246);
background-image: none;
border: none;
}
.mw-workspace-container {
margin-top: calc(3.125em + 8px);
}
#vector-sticky-header {
display: none;
}
html, body, h1, h2, h3, h4, h5, h6, .mw-body .firstHeading {
font-family: Space Grotesk, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace, sans-serif;
}
.mw-sidebar, .mw-page-container {
background-color: rgb(243 244 246);
background-image: none;
}
.mw-body {
background-color: white;
background-image: none;
border: solid 2px #e5e7eb;
border-radius: 0 0 0.5rem 0.5rem;
}
.mw-article-toolbar-container .mw-list-item {
background-color: white;
background-image: none;
border: solid 2px #e5e7eb;
border-bottom: none;
border-radius: 0.5rem 0.5rem 0 0;
}
.mw-article-toolbar-container .mw-list-item *, #p-views {
background-image: none;
}
.mw-workspace-container a {
-webkit-text-decoration-line: underline;
text-decoration-line: underline;
}
.mw-workspace-container a:visited:not(.new) {
color: var(--primary-700);
}
.mw-workspace-container a:not(.new) {
color: var(--primary-700);
-webkit-text-decoration-color: var(--primary-700);
text-decoration-color: var(--primary-700);
}
.mw-workspace-container a:hover {
-webkit-text-decoration-color: #000;
text-decoration-color: #000;
}
.mw-header .mw-logo {
color: inherit;
}
/* end of theme */
.box {
width: 49%;
height: auto;
margin-bottom: 2%;
}
.box .header {
border: 1px solid #d8d8d8;
border-radius: 5px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
background: #efefef;
padding: 0 1em 0;
}
/* fix for vector 2022 skin */
.skin-vector .box .header h3 {
margin: 0;
margin-top: -7px;
}
.box .content {
background: #fafafa;
border: 1px solid #d8d8d8;
border-top: 0;
padding: 0.7em;
}
/* fix for minervalneue skin */
.mw-body-content .box .content {
width: 95%;
}
.img {
border: 1px solid #d8d8d8;
width: fit-content;
margin-left: 6%;
}
.article-title {
font-size: 120%;
font-weight: bold;
text-align: center;
}