2024-11-04 22:52:24 +01:00
|
|
|
// NibblePoker CSS Theme - CC0 1.0 (Public Domain)
|
|
|
|
|
|
|
|
/* Core > Lists */
|
|
|
|
|
2024-11-16 17:12:18 +01:00
|
|
|
ul {
|
|
|
|
&.l-bullets, &.list-bullets {
|
2024-11-04 22:52:24 +01:00
|
|
|
list-style-type: disc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-16 17:12:18 +01:00
|
|
|
ol {
|
|
|
|
&.l-bullets, &.list-bullets {
|
|
|
|
list-style-type: decimal;
|
|
|
|
}
|
2024-11-04 22:52:24 +01:00
|
|
|
}
|
|
|
|
|
2024-11-16 17:12:18 +01:00
|
|
|
ul, ol {
|
|
|
|
&.l-bullet-inside, &.list-bullet-inside {
|
|
|
|
list-style-position: inside;
|
|
|
|
}
|
|
|
|
&.l-bullet-outside, &.list-bullet-outside {
|
|
|
|
list-style-position: outside;
|
|
|
|
}
|
|
|
|
&.l-bullet-manual, &.list-bullet-manual {
|
|
|
|
list-style-position: outside;
|
|
|
|
padding-left: 1.5rem;
|
|
|
|
}
|
2024-11-04 22:52:24 +01:00
|
|
|
}
|
|
|
|
|
2024-11-16 17:12:18 +01:00
|
|
|
ul, ol, li {
|
|
|
|
&.list-bullet-none, &.l-bullet-none {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
&.list-bullet-disc, &.l-bullet-disc {
|
|
|
|
list-style-type: disc;
|
|
|
|
}
|
|
|
|
&.list-bullet-square, &.l-bullet-square {
|
|
|
|
list-style-type: square;
|
|
|
|
}
|
|
|
|
&.list-bullet-decimal, &.l-bullet-decimal {
|
|
|
|
list-style-type: decimal;
|
|
|
|
}
|
|
|
|
&.list-bullet-decimal-leading, &.l-bullet-decimal-leading {
|
|
|
|
list-style-type: decimal-leading-zero;
|
|
|
|
}
|
|
|
|
&.list-bullet-georgian, &.l-bullet-georgian {
|
|
|
|
list-style-type: georgian;
|
|
|
|
}
|
|
|
|
&.list-bullet-chinese, &.l-bullet-chinese {
|
|
|
|
list-style-type: trad-chinese-informal;
|
|
|
|
}
|
|
|
|
&.list-bullet-kannada, &.l-bullet-kannada {
|
|
|
|
list-style-type: kannada;
|
|
|
|
}
|
|
|
|
}
|