Ikwipedia:Main Page/styles.css: Difference between revisions
EnWikiAdmin (talk | contribs) No edit summary |
EnWikiAdmin (talk | contribs) No edit summary |
||
Line 63: | Line 63: | ||
background-color: #e6e6e6; | background-color: #e6e6e6; | ||
padding: 0.2em 0.2em; /* Reduced top padding for smaller spacing */ | padding: 0.2em 0.2em; /* Reduced top padding for smaller spacing */ | ||
padding-top: 0.1em; | |||
margin-bottom: 0.3em; | margin-bottom: 0.3em; | ||
font-family: inherit; /* Ensure consistent font */ | font-family: inherit; /* Ensure consistent font */ |
Revision as of 02:44, 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-box {
padding:0;
}
#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 */
margin-bottom: 0.5em; /* Add space between content boxes */
}
#mp-left {
background-color: #f5fffa;
border-color: #cef2e0;
}
#mp-right {
background-color: #f5faff;
border-color: #cedff2;
}
/* Headings */
.mp-h2 {
font-size: 1.4em;
font-weight: bold;
background-color: #e6e6e6;
padding: 0.2em 0.2em; /* Reduced top padding for smaller spacing */
padding-top: 0.1em;
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 */
}
/* Lower Section Heading Borders (Refined Colors) */
#mp-lower .mp-h2,
#mp-bottom .mp-h2 {
background-color: #f5f2ff; /* Light purple closer to Wikipedia */
border-color: #d1c7e0;
}
/* Responsive Design */
@media (max-width: 875px) {
#mp-upper {
flex-direction: column;
}
}