MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Chaudharydsn (talk | contribs) mNo edit summary |
Chaudharydsn (talk | contribs) mNo edit summary |
||
| Line 2: | Line 2: | ||
/* ================================================================= */ | /* ================================================================= */ | ||
/* 1. VERIFIED TICK | /* 1. VERIFIED TICK BADGES & GENERAL UTILITIES */ | ||
/* ================================================================= */ | /* ================================================================= */ | ||
.gov-verified-tick, | .gov-verified-tick, | ||
| Line 24: | Line 24: | ||
/* ================================================================= */ | /* ================================================================= */ | ||
/* 2. DEFAULT BRAND THEME: SAVROSI.ORG ( | /* 2. DEFAULT BRAND THEME: SAVROSI.ORG (HEADINGS) */ | ||
/* ================================================================= */ | /* ================================================================= */ | ||
.mw-parser-output h2 { | .mw-parser-output h2 { | ||
| Line 43: | Line 43: | ||
/* ================================================================= */ | /* ================================================================= */ | ||
/* 3. LEGACY BRAND THEME: GOVPILLARS (SCOPED OVERRIDES) */ | /* 3. SAVROSI PORTABLE INFOBOX STYLING (INDIVIDUAL & COMPANY) */ | ||
/* ================================================================= */ | |||
.savrosi-template-individual .portable-infobox, | |||
.savrosi-template-company .portable-infobox { | |||
border: 1px solid #E2E8F0 !important; | |||
border-top: 5px solid #C59B27 !important; /* Champagne Gold Accent */ | |||
background-color: #FFFFFF !important; | |||
box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08) !important; | |||
border-radius: 8px !important; | |||
font-family: 'Segoe UI', Helvetica, Arial, sans-serif !important; | |||
} | |||
/* Infobox Main Title (Person Name / Company Name) */ | |||
.savrosi-template-individual .pi-title, | |||
.savrosi-template-company .pi-title { | |||
background-color: #0F172A !important; /* Midnight Navy */ | |||
color: #FFFFFF !important; | |||
font-family: 'Cinzel', 'Georgia', serif !important; | |||
font-size: 20px !important; | |||
padding: 12px !important; | |||
text-align: center !important; | |||
letter-spacing: 0.5px !important; | |||
} | |||
/* Group Section Headers */ | |||
.savrosi-template-individual .pi-header, | |||
.savrosi-template-company .pi-header { | |||
background-color: #0F172A !important; /* Midnight Navy */ | |||
color: #C59B27 !important; /* Champagne Gold Text */ | |||
font-family: 'Georgia', serif !important; | |||
font-size: 12px !important; | |||
text-transform: uppercase !important; | |||
letter-spacing: 1.5px !important; | |||
padding: 8px 12px !important; | |||
} | |||
/* Data Labels & Values */ | |||
.savrosi-template-individual .pi-data-label, | |||
.savrosi-template-company .pi-data-label { | |||
color: #0F172A !important; /* Midnight Navy Labels */ | |||
font-weight: 600 !important; | |||
font-size: 13px !important; | |||
} | |||
.savrosi-template-individual .pi-data-value, | |||
.savrosi-template-company .pi-data-value { | |||
color: #334155 !important; | |||
font-size: 13px !important; | |||
} | |||
/* ================================================================= */ | |||
/* 4. LEGACY BRAND THEME: GOVPILLARS (SCOPED OVERRIDES) */ | |||
/* Retains Red & Pink theme for legacy templates */ | /* Retains Red & Pink theme for legacy templates */ | ||
/* ================================================================= */ | /* ================================================================= */ | ||
.template-officer-profile h2, | .template-officer-profile h2, | ||
.template-officer-profile-hindi h2, | .template-officer-profile-hindi h2, | ||
Revision as of 00:37, 5 August 2026
/* CSS placed here will be applied to all skins */
/* ================================================================= */
/* 1. VERIFIED TICK BADGES & GENERAL UTILITIES */
/* ================================================================= */
.gov-verified-tick,
.savrosi-verified-tick {
display: inline-block;
width: 30px;
height: 30px;
background-image: url('https://govpillars.com/images/2/22/Verified.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
vertical-align: middle;
margin-left: 6px;
}
/* Hide the category box on the Main Page only */
.page-Main_Page #catlinks {
display: none !important;
}
/* ================================================================= */
/* 2. DEFAULT BRAND THEME: SAVROSI.ORG (HEADINGS) */
/* ================================================================= */
.mw-parser-output h2 {
color: #0F172A; /* Midnight Navy */
font-family: 'Cinzel', 'Georgia', serif;
}
.mw-parser-output h3 {
color: #0F172A; /* Midnight Navy */
font-family: 'Georgia', serif;
}
.mw-parser-output h4 {
color: #C59B27; /* Champagne Gold Accent */
font-family: 'Georgia', serif;
}
/* ================================================================= */
/* 3. SAVROSI PORTABLE INFOBOX STYLING (INDIVIDUAL & COMPANY) */
/* ================================================================= */
.savrosi-template-individual .portable-infobox,
.savrosi-template-company .portable-infobox {
border: 1px solid #E2E8F0 !important;
border-top: 5px solid #C59B27 !important; /* Champagne Gold Accent */
background-color: #FFFFFF !important;
box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08) !important;
border-radius: 8px !important;
font-family: 'Segoe UI', Helvetica, Arial, sans-serif !important;
}
/* Infobox Main Title (Person Name / Company Name) */
.savrosi-template-individual .pi-title,
.savrosi-template-company .pi-title {
background-color: #0F172A !important; /* Midnight Navy */
color: #FFFFFF !important;
font-family: 'Cinzel', 'Georgia', serif !important;
font-size: 20px !important;
padding: 12px !important;
text-align: center !important;
letter-spacing: 0.5px !important;
}
/* Group Section Headers */
.savrosi-template-individual .pi-header,
.savrosi-template-company .pi-header {
background-color: #0F172A !important; /* Midnight Navy */
color: #C59B27 !important; /* Champagne Gold Text */
font-family: 'Georgia', serif !important;
font-size: 12px !important;
text-transform: uppercase !important;
letter-spacing: 1.5px !important;
padding: 8px 12px !important;
}
/* Data Labels & Values */
.savrosi-template-individual .pi-data-label,
.savrosi-template-company .pi-data-label {
color: #0F172A !important; /* Midnight Navy Labels */
font-weight: 600 !important;
font-size: 13px !important;
}
.savrosi-template-individual .pi-data-value,
.savrosi-template-company .pi-data-value {
color: #334155 !important;
font-size: 13px !important;
}
/* ================================================================= */
/* 4. LEGACY BRAND THEME: GOVPILLARS (SCOPED OVERRIDES) */
/* Retains Red & Pink theme for legacy templates */
/* ================================================================= */
.template-officer-profile h2,
.template-officer-profile-hindi h2,
.template-gov-ecosystem-english h2,
.template-gov-ecosystem-hindi h2,
.govpillars-legacy h2 {
color: #D71A21 !important; /* GovPillars Primary Red */
font-family: 'Georgia', serif !important;
}
.template-officer-profile h3,
.template-officer-profile-hindi h3,
.template-gov-ecosystem-english h3,
.template-gov-ecosystem-hindi h3,
.govpillars-legacy h3 {
color: #BB1F5B !important; /* GovPillars Secondary Pink */
font-family: 'Georgia', serif !important;
}