MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 82: | Line 82: | ||
height: 8px; | height: 8px; | ||
width: 95%; | width: 95%; | ||
background: linear-gradient(to right, #ff8a00, #ffffff, #0f8f00); | |||
border-radius: 5px; | |||
margin: 25px auto 40px; | |||
} | |||
/* === HERO SECTION CONTAINER === */ | |||
.hero-container { | |||
width: 100%; | |||
max-width: 1080px; | |||
margin: 0 auto; | |||
text-align: center; | |||
padding: 20px 20px 40px; | |||
} | |||
/* === INDIAN FLAG LINE === */ | |||
.flag-line { | |||
height: 8px; | |||
width: 100%; | |||
max-width: 1080px; | |||
background: linear-gradient(to right, #ff8a00, #ffffff, #0f8f00); | background: linear-gradient(to right, #ff8a00, #ffffff, #0f8f00); | ||
border-radius: 5px; | border-radius: 5px; | ||
| Line 87: | Line 105: | ||
} | } | ||
/* === | /* === TITLE === */ | ||
.hero-title { | .hero-title { | ||
font-size: 34px; | font-size: 34px; | ||
font-weight: 600; | font-weight: 600; | ||
margin-bottom: 20px; | margin-bottom: 20px; | ||
} | } | ||
| Line 104: | Line 120: | ||
.hero-subtitle { | .hero-subtitle { | ||
max-width: 900px; | max-width: 900px; | ||
margin: 0 | margin: 0 auto 35px; | ||
font-size: 20px; | font-size: 20px; | ||
line-height: 1.6; | line-height: 1.6; | ||
font-style: italic; | font-style: italic; | ||
color: #444; | color: #444; | ||
} | } | ||
/* === SEARCH BAR | /* === SEARCH BAR === */ | ||
.hero-search form { | .hero-search form { | ||
display: flex; | display: flex; | ||
justify-content: center; | |||
gap: 10px; | gap: 10px; | ||
} | } | ||
| Line 134: | Line 149: | ||
font-weight: 600; | font-weight: 600; | ||
cursor: pointer; | cursor: pointer; | ||
} | |||
/* === OPTIONAL LEFT ALIGN MODE === */ | |||
.hero-left { | |||
text-align: left !important; | |||
} | |||
.hero-left .hero-search form { | |||
justify-content: flex-start !important; | |||
} | } | ||