Ikwipedia:Main Page/styles.css: Difference between revisions
EnWikiAdmin (talk | contribs) No edit summary |
EnWikiAdmin (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
/* General Settings */ | |||
body { | |||
font-family: Arial, sans-serif; | |||
line-height: 1.6; | |||
margin: 0; | |||
padding: 0; | |||
background-color: #f9f9f9; | |||
} | } | ||
/* Full-Width Title Box */ | |||
#ikwipedia-titlebox { | |||
background-color: #e6e6e6; | |||
/* - | border: 1px solid #ccc; | ||
padding: 1em; | padding: 1em; | ||
text-align: center; | |||
margin-bottom: 1em; | |||
} | } | ||
#ikwipedia-titlebox h1 { | |||
font-size: 1.8em; | |||
font-size: | margin-bottom: 0.5em; | ||
} | } | ||
#ikwipedia-titlebox p { | |||
margin: 0.5em 0; | |||
} | } | ||
/* Main | /* Main Content Layout */ | ||
#ikwipedia-main-content { | |||
display: flex; | |||
margin: 0 auto; | margin: 0 auto; | ||
max-width: | max-width: 1200px; | ||
gap: 1em; | |||
} | |||
/* Columns */ | |||
#ikwipedia-left, #ikwipedia-right { | |||
flex: 1; | |||
padding: 1em; | padding: 1em; | ||
background-color: # | background-color: #fff; | ||
border: 1px solid #ccc; | |||
} | } | ||
/* | /* Section Styling */ | ||
.ikwipedia- | .ikwipedia-section { | ||
border: 1px solid # | margin-bottom: 1em; | ||
border: 1px solid #ccc; | |||
background-color: #f8f9fa; | background-color: #f8f9fa; | ||
} | } | ||
.ikwipedia-heading { | |||
.ikwipedia- | background-color: #e6e6e6; | ||
padding: 0.5em; | |||
font-weight: bold; | font-weight: bold; | ||
font-size: 1.2em; | |||
border-bottom: 1px solid #ccc; | |||
border-bottom: | |||
} | } | ||
.ikwipedia-content { | |||
.ikwipedia- | padding: 1em; | ||
font-size: 1em; | |||
} | } | ||
.ikwipedia- | /* Inline List for DynamicPageList (DPL) */ | ||
.ikwipedia-content dpl { | |||
display: inline; | |||
} | } | ||
.ikwipedia- | .ikwipedia-content dpl::before { | ||
content: "• "; | |||
} | } |
Revision as of 00:40, 23 December 2024
/* General Settings */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
/* Full-Width Title Box */
#ikwipedia-titlebox {
background-color: #e6e6e6;
border: 1px solid #ccc;
padding: 1em;
text-align: center;
margin-bottom: 1em;
}
#ikwipedia-titlebox h1 {
font-size: 1.8em;
margin-bottom: 0.5em;
}
#ikwipedia-titlebox p {
margin: 0.5em 0;
}
/* Main Content Layout */
#ikwipedia-main-content {
display: flex;
margin: 0 auto;
max-width: 1200px;
gap: 1em;
}
/* Columns */
#ikwipedia-left, #ikwipedia-right {
flex: 1;
padding: 1em;
background-color: #fff;
border: 1px solid #ccc;
}
/* Section Styling */
.ikwipedia-section {
margin-bottom: 1em;
border: 1px solid #ccc;
background-color: #f8f9fa;
}
.ikwipedia-heading {
background-color: #e6e6e6;
padding: 0.5em;
font-weight: bold;
font-size: 1.2em;
border-bottom: 1px solid #ccc;
}
.ikwipedia-content {
padding: 1em;
font-size: 1em;
}
/* Inline List for DynamicPageList (DPL) */
.ikwipedia-content dpl {
display: inline;
}
.ikwipedia-content dpl::before {
content: "• ";
}