Ikwipedia:Main Page/styles.css: Difference between revisions
EnWikiAdmin (talk | contribs) No edit summary |
EnWikiAdmin (talk | contribs) No edit summary |
||
Line 54: | Line 54: | ||
.mp-h2 { | .mp-h2 { | ||
font-size: 1.4em; | font-size: 1.4em; | ||
margin-top: 0.2em; /* Reduced space above the heading box */ | |||
font-weight: bold; | font-weight: bold; | ||
background-color: #e6e6e6; | background-color: #e6e6e6; | ||
padding: 0. | padding: 0.3em; | ||
margin-bottom: 0.3em; | |||
margin-bottom: 0.3em; | |||
font-family: inherit; /* Ensure consistent font */ | font-family: inherit; /* Ensure consistent font */ | ||
border-bottom: 0; /* Remove horizontal line */ | border-bottom: 0; /* Remove horizontal line */ |
Revision as of 02:23, 23 December 2024
/* Top Banner */
#mp-topbanner {
background-color: #f9f9f9;
border: 1px solid #ddd;
text-align: center;
margin-bottom: 0.2em;
padding: 0.1em;
font-family: inherit; /* Ensure fonts inherit globally */
}
#mp-topbanner h1 {
font-size: 1.8em;
margin: 0 0 0.0em 0;
font-family: inherit; /* Ensure consistent font */
border-bottom: none;
}
#mp-topbanner p {
margin: 0.0em 0;
font-family: inherit; /* Ensure consistent font */
}
/* Main Layout */
#mp-upper {
display: flex;
justify-content: space-between;
gap: 0.4em;
max-width: 1200px;
margin: 0 auto;
font-family: inherit; /* Ensure consistent font */
}
#mp-left,
#mp-right,
#mp-lower,
#mp-bottom {
padding: 0.5em;
border: 1px solid #cedff2;
background-color: #f5faff;
font-family: inherit; /* Ensure consistent font */
}
#mp-left {
background-color: #f5fffa;
border-color: #cef2e0;
}
#mp-right {
background-color: #f5faff;
border-color: #cedff2;
}
/* Headings */
.mp-h2 {
font-size: 1.4em;
margin-top: 0.2em; /* Reduced space above the heading box */
font-weight: bold;
background-color: #e6e6e6;
padding: 0.3em;
margin-bottom: 0.3em;
font-family: inherit; /* Ensure consistent font */
border-bottom: 0; /* Remove horizontal line */
border: 1px solid #aaa; /* Default thin border for all headings */
}
/* Left Column Heading Borders */
#mp-left .mp-h2 {
background-color: #cef2e0;
border-color: #a3bfb1; /* Light green border */
}
/* Right Column Heading Borders */
#mp-right .mp-h2 {
background-color: #cedff2;
border-color: #a3b0bf; /* Light blue border */
}
/* Lower Section Heading Borders */
#mp-lower .mp-h2,
#mp-bottom .mp-h2 {
background-color: #ddcef2;
border-color: #afa3bf; /* Light purple border */
}
/* Responsive Design */
@media (max-width: 875px) {
#mp-upper {
flex-direction: column;
}
}
/* Basic box styling */
.test-box {
border: 1px solid #aaa;
background-color: #f8f9fa;
font-size: 90%;
}
/* Title styling within the box */
.test-box .test-title {
font-size: 120%;
font-weight: bold; /* Match bold headings */
background-color: #cef2e0; /* Light green background */
border-bottom: none; /* Remove horizontal line */
}
/* Sub-boxes */
.test-box .test-subbox {
border: 1px solid #ccc;
background-color: #ffffff;
}