Template:Character infobox/styles.css: Difference between revisions
Template page
More actions
No edit summary Tag: Manual revert |
No edit summary |
||
Line 1: | Line 1: | ||
/* Karakter Bilgi Kutusu (Infobox) | /* Karakter Bilgi Kutusu (Infobox) - DIV Tabanlı Stiller */ | ||
. | .infobox-div { | ||
float: right; | float: right; | ||
width: 300px; | width: 300px; | ||
border: 1px solid #a2a9b1; | border: 1px solid var(--cdx-color-border, #a2a9b1); | ||
background-color: #f8f9fa; | background-color: var(--cdx-color-background-secondary, #f8f9fa); | ||
margin: 0 0 1em | margin: 0 0 1em 1.5em; | ||
font-size: 90%; | font-size: 90%; | ||
} | } | ||
.infobox-div-title { | |||
. | background-color: var(--cdx-color-background-accent-subtle, #eaf3ff); | ||
background-color: # | border-bottom: 1px solid var(--cdx-color-border-subtle, #c8ccd1); | ||
font-size: 1.3em; | font-size: 1.3em; | ||
font-weight: bold; | font-weight: bold; | ||
text-align: center; | text-align: center; | ||
padding: | padding: 10px; | ||
color: var(--cdx-color-text-primary, #202122); | |||
} | } | ||
.infobox-div-image { | |||
. | padding: 10px; | ||
text-align: center; | text-align: center; | ||
} | } | ||
.infobox-div-caption { | |||
. | |||
font-size: 0.9em; | font-size: 0.9em; | ||
font-style: italic; | font-style: italic; | ||
color: #54595d; | color: var(--cdx-color-text-secondary, #54595d); | ||
padding: 0 10px 10px 10px; | padding: 0 10px 10px 10px; | ||
text-align: center; | text-align: center; | ||
} | } | ||
.infobox-div-header { | |||
. | background-color: var(--cdx-color-background-accent-soft, #dcebff); | ||
font-weight: bold; | |||
text-align: center; | |||
padding: 8px; | |||
margin-top: 5px; | |||
color: var(--cdx-color-text-primary, #202122); | |||
} | |||
.infobox-div-row { | |||
display: flex; | |||
padding: 8px 10px; | |||
border-top: 1px solid var(--cdx-color-border-subtle, #e3e6e8); | |||
align-items: center; | |||
} | |||
.infobox-div-label { | |||
font-weight: bold; | font-weight: bold; | ||
width: 35%; | width: 35%; | ||
color: var(--cdx-color-text-primary, #202122); | |||
} | } | ||
.infobox-div-data { | |||
. | |||
width: 65%; | width: 65%; | ||
color: var(--cdx-color-text-secondary, #54595d); | |||
} | } |
Revision as of 20:31, 12 June 2025
/* Karakter Bilgi Kutusu (Infobox) - DIV Tabanlı Stiller */ .infobox-div { float: right; width: 300px; border: 1px solid var(--cdx-color-border, #a2a9b1); background-color: var(--cdx-color-background-secondary, #f8f9fa); margin: 0 0 1em 1.5em; font-size: 90%; } .infobox-div-title { background-color: var(--cdx-color-background-accent-subtle, #eaf3ff); border-bottom: 1px solid var(--cdx-color-border-subtle, #c8ccd1); font-size: 1.3em; font-weight: bold; text-align: center; padding: 10px; color: var(--cdx-color-text-primary, #202122); } .infobox-div-image { padding: 10px; text-align: center; } .infobox-div-caption { font-size: 0.9em; font-style: italic; color: var(--cdx-color-text-secondary, #54595d); padding: 0 10px 10px 10px; text-align: center; } .infobox-div-header { background-color: var(--cdx-color-background-accent-soft, #dcebff); font-weight: bold; text-align: center; padding: 8px; margin-top: 5px; color: var(--cdx-color-text-primary, #202122); } .infobox-div-row { display: flex; padding: 8px 10px; border-top: 1px solid var(--cdx-color-border-subtle, #e3e6e8); align-items: center; } .infobox-div-label { font-weight: bold; width: 35%; color: var(--cdx-color-text-primary, #202122); } .infobox-div-data { width: 65%; color: var(--cdx-color-text-secondary, #54595d); }