MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 188: | Line 188: | ||
border: none; | border: none; | ||
background: transparent; | background: transparent; | ||
} | |||
/* ── Prateeka — inline bold (quoted lemma being explained) ──────*/ | |||
.gr-prateeka { | |||
font-weight: bold; | |||
font-style: normal; | |||
color: #333; | |||
} | |||
/* ── Mulaprateeka — block-level centered bold heading ───────────*/ | |||
.gr-mulaprateeka-block { | |||
display: block; | |||
font-weight: bold; | |||
font-style: normal; | |||
text-align: center; | |||
color: #333; | |||
margin: 1em 0 0.4em; | |||
line-height: 1.6; | |||
} | |||
/* ── Moola — inline highlighted source text ─────────────────────*/ | |||
.gr-moola { | |||
font-weight: bold; | |||
font-style: italic; | |||
color: #c65; | |||
} | } | ||
.teeka-block { | .teeka-block { | ||
border-radius: 8px; | border-radius: 8px; | ||
padding: 10px 14px 12px; | padding: 10px 14px 12px; | ||
| Line 592: | Line 613: | ||
body.page-Main_Page #footer { display: none !important; } | body.page-Main_Page #footer { display: none !important; } | ||
/* ── Main page view toggle ───────────────────────────────────*/ | |||
.gr-home-toggle { | |||
display: flex; | |||
gap: 8px; | |||
margin: 0 0 24px; | |||
justify-content: center; | |||
} | |||
.gr-toggle-btn { | |||
font-family: 'Adishila', 'Noto Serif Devanagari', serif; | |||
font-size: 0.88em; | |||
padding: 6px 20px; | |||
border: 1.5px solid #c0392b; | |||
border-radius: 20px; | |||
background: transparent; | |||
color: #c0392b; | |||
cursor: pointer; | |||
transition: background 0.15s, color 0.15s; | |||
} | |||
.gr-toggle-btn:hover { | |||
background: #fdf0ed; | |||
} | |||
.gr-toggle-btn.gr-toggle-active { | |||
background: #c0392b; | |||
color: #fff; | |||
} | |||
/* ── Responsive ──────────────────────────────────────────────────*/ | /* ── Responsive ──────────────────────────────────────────────────*/ | ||
@media (max-width: 600px) { | @media (max-width: 600px) { | ||