MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
.page-Main_Page h1.firstHeading { | /* Hide Main_Page title */ | ||
body.page-Main_Page h1.firstHeading { | |||
display: none; | display: none; | ||
} | } | ||
/* | /* Hero Banner */ | ||
. | .ww-hero { | ||
text-align: center; | text-align: center; | ||
padding: 20px 10px; | padding: 20px 10px; | ||
border-bottom: 2px solid #000; | |||
background: #fff; | background: #fff; | ||
} | } | ||
.ww-hero-title { | |||
. | font-size: 1.8em; | ||
font-size: 1. | font-weight: bold; | ||
color: #000; | |||
} | } | ||
.ww-hero-cta a { | |||
.cta- | background: #000; | ||
color: #fff; | |||
padding: 10px 16px; | |||
border-radius: 6px; | |||
font-weight: bold; | |||
display: inline-block; | display: inline-block; | ||
margin-top: 10px; | |||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
.section | /* Section Styling */ | ||
.ww-section { | |||
padding: 20px 10px; | |||
border-bottom: 1px solid #ddd; | |||
} | |||
.ww-section h2 { | |||
font-size: 1.2em; | font-size: 1.2em; | ||
margin: | color: #000; | ||
margin-bottom: 10px; | |||
} | } | ||
. | /* Cards (Profiles/Companies) */ | ||
.ww-cards { | |||
display: flex; | display: flex; | ||
gap: 10px; | gap: 10px; | ||
flex-wrap: wrap; | |||
} | |||
.ww-cards a { | |||
display: inline-block; | |||
padding: 10px; | padding: 10px; | ||
background: #f9f9f9; | |||
border: 1px solid #ccc; | border: 1px solid #ccc; | ||
border-radius: | border-radius: 8px; | ||
text-decoration: none; | |||
color: #000; | |||
min-width: 130px; | |||
text-align: center; | text-align: center; | ||
} | } | ||
/* Footer */ | |||
.ww-footer { | |||
. | |||
text-align: center; | text-align: center; | ||
font-size: 0.9em; | font-size: 0.9em; | ||
color: # | color: #666; | ||
padding: 20px 0; | |||
} | } | ||
.ww-footer a { | |||
.footer | color: #000; | ||
margin: 0 8px; | margin: 0 8px; | ||
} | } |
Latest revision as of 17:05, 23 April 2025
/* Hide Main_Page title */ body.page-Main_Page h1.firstHeading { display: none; } /* Hero Banner */ .ww-hero { text-align: center; padding: 20px 10px; border-bottom: 2px solid #000; background: #fff; } .ww-hero-title { font-size: 1.8em; font-weight: bold; color: #000; } .ww-hero-cta a { background: #000; color: #fff; padding: 10px 16px; border-radius: 6px; font-weight: bold; display: inline-block; margin-top: 10px; text-decoration: none; } /* Section Styling */ .ww-section { padding: 20px 10px; border-bottom: 1px solid #ddd; } .ww-section h2 { font-size: 1.2em; color: #000; margin-bottom: 10px; } /* Cards (Profiles/Companies) */ .ww-cards { display: flex; gap: 10px; flex-wrap: wrap; } .ww-cards a { display: inline-block; padding: 10px; background: #f9f9f9; border: 1px solid #ccc; border-radius: 8px; text-decoration: none; color: #000; min-width: 130px; text-align: center; } /* Footer */ .ww-footer { text-align: center; font-size: 0.9em; color: #666; padding: 20px 0; } .ww-footer a { color: #000; margin: 0 8px; }