MediaWiki:Common.css: Difference between revisions
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 106: | Line 106: | ||
} | } | ||
/* First level of indentation: default bullet */ | /* First level of indentation: default bullet (disc) and color */ | ||
ul { | ul { | ||
list-style-type: disc; /* | list-style-type: disc; | ||
color: black; /* Color of the text */ | |||
} | } | ||
/* Second level of indentation: circle bullet */ | /* Using ::before to control bullet color for the first level */ | ||
ul > li::before { | |||
content: "• "; /* Custom bullet */ | |||
color: black; /* Color of the bullet */ | |||
font-weight: bold; /* You can adjust the size/weight */ | |||
} | |||
/* Second level of indentation: circle bullet and red color */ | |||
ul ul { | ul ul { | ||
list-style-type: circle; /* | list-style-type: circle; | ||
} | |||
ul ul > li::before { | |||
content: "○ "; /* Custom bullet for second level */ | |||
color: red; /* Bullet color for second level */ | |||
} | } | ||
/* Third level of indentation: square bullet */ | /* Third level of indentation: square bullet and blue color */ | ||
ul ul ul { | ul ul ul { | ||
list-style-type: square; /* | list-style-type: square; | ||
} | |||
ul ul ul > li::before { | |||
content: "■ "; /* Custom bullet for third level */ | |||
color: blue; /* Bullet color for third level */ | |||
} | } | ||
/* Fourth level of indentation: | /* Fourth level of indentation: no bullet, green color for text */ | ||
ul ul ul ul { | ul ul ul ul { | ||
list-style-type: none; /* | list-style-type: none; | ||
color: green; /* Text color for fourth level */ | |||
} | } |
Revision as of 06:53, 15 October 2024
h1 { font-family:"URW DIN Black", sans-serif; color: black; } h2.vector-pinnable-header-label { padding-right:1rem !important; } h2 { background:#0072B6; color:#ffffff !important; font-family:"URW DIN Black", sans-serif !important; font-style:normal; font-variant:normal; font-weight:900; line-height:1em !important; padding-top:0.5em !important; margin-bottom:0.5em !important; margin-left:3px; margin-right:0; margin-top:2em !important; orphans:1; page-break-after:auto; page-break-before:auto; text-align:left; text-decoration:none; text-indent:1rem; text-transform:uppercase; widows:1; } h3 { background:#042B60; color:#ffffff !important; font-family:"URW DIN Black", sans-serif !important; font-style:normal; font-variant:normal; /*font-weight:900;*/ line-height:1em !important; padding-top:0.5em !important; margin-bottom:0.5em !important; margin-left:3px; margin-right:0; margin-top:2em !important; orphans:1; page-break-after:auto; page-break-before:auto; text-align:justify; text-align-last:left; text-decoration:none; text-indent:1rem; text-transform:uppercase; widows:1; } h4 { color:#042B60 !important; font-family:"URW DIN Black", sans-serif !important; font-style:normal; font-variant:normal; font-weight:900; line-height:1em !important; padding-top:0.5em !important; margin-bottom:0.5em !important; margin-left:3px; margin-right:0; margin-top:1em !important; orphans:1; page-break-after:auto; page-break-before:auto; text-align:justify; text-align-last:left; text-decoration:none; text-indent:0px; text-transform:uppercase; widows:1; } p { color:#000000; font-family:"URW DIN SemiCond", sans-serif; font-size:14px; font-style:normal; font-variant:normal; font-weight:normal; line-height:1.2; margin-bottom:0.5em; margin-left:0; margin-right:0; margin-top:0.5em; orphans:1; page-break-after:auto; page-break-before:auto; text-align:justify; text-align-last:left; text-decoration:none; text-indent:0px; text-transform:none; widows:1; } pre { border-color: #C4040F; } /* Responzivni obrazek */ fullw { max-width:100%; height:auto; } /* First level of indentation: default bullet (disc) and color */ ul { list-style-type: disc; color: black; /* Color of the text */ } /* Using ::before to control bullet color for the first level */ ul > li::before { content: "• "; /* Custom bullet */ color: black; /* Color of the bullet */ font-weight: bold; /* You can adjust the size/weight */ } /* Second level of indentation: circle bullet and red color */ ul ul { list-style-type: circle; } ul ul > li::before { content: "○ "; /* Custom bullet for second level */ color: red; /* Bullet color for second level */ } /* Third level of indentation: square bullet and blue color */ ul ul ul { list-style-type: square; } ul ul ul > li::before { content: "■ "; /* Custom bullet for third level */ color: blue; /* Bullet color for third level */ } /* Fourth level of indentation: no bullet, green color for text */ ul ul ul ul { list-style-type: none; color: green; /* Text color for fourth level */ }