walter-boente_book-collection/css/modules/_titles-counters.scss

70 lines
1.2 KiB
SCSS
Raw Normal View History

2026-01-19 22:14:03 +01:00
#section__content{
2026-01-20 21:30:25 +01:00
h1, h2, h3 {
&::before{
content: attr(data-counter);
}
}
2026-01-19 22:14:03 +01:00
2026-01-20 21:30:25 +01:00
h4, h5, h6{
&::before{
content: attr(data-counter) ". ";
}
2026-01-19 22:14:03 +01:00
}
2026-01-20 21:30:25 +01:00
// counter-reset: h1;
2026-01-19 22:14:03 +01:00
2026-01-20 21:30:25 +01:00
// h1{
// counter-increment: h1 1;
// counter-reset: h2;
// }
2026-01-19 22:14:03 +01:00
2026-01-20 21:30:25 +01:00
// h1::before{
// content: counter(h1, upper-alpha);
2026-01-19 22:14:03 +01:00
2026-01-20 21:30:25 +01:00
// }
2026-01-19 22:14:03 +01:00
2026-01-20 21:30:25 +01:00
// h2{
// counter-increment: h2 1;
// counter-reset: h3;
// }
2026-01-19 22:14:03 +01:00
2026-01-20 21:30:25 +01:00
// h2::before{
// content: counter(h2, upper-roman);
// }
2026-01-19 22:14:03 +01:00
2026-01-20 21:30:25 +01:00
// h3{
// counter-increment: h3 1;
// counter-reset: h4;
// }
2026-01-19 22:14:03 +01:00
2026-01-20 21:30:25 +01:00
// h3::before{
// content: counter(h3);
// }
2026-01-19 22:14:03 +01:00
2026-01-20 21:30:25 +01:00
// h4{
// counter-increment: h4 1;
// counter-reset: h5;
// }
2026-01-19 22:14:03 +01:00
2026-01-20 21:30:25 +01:00
// h4::before{
// content: counter(h4, lower-alpha) ". ";
// }
2026-01-20 19:05:58 +01:00
2026-01-20 21:30:25 +01:00
// h5{
// counter-increment: h5 1;
// counter-reset: h6;
// }
2026-01-20 19:05:58 +01:00
2026-01-20 21:30:25 +01:00
// h5::before{
// content: counter(h5, lower-alpha) counter(h5, lower-alpha) ". ";
// }
// h6{
// counter-increment: h6 1;
// }
// h6::before{
// content: "(" counter(h6) "). ";
// }
2026-01-19 22:14:03 +01:00
}