voting/foundation.gnome.org/about/bylaws.css

25 lines
473 B
CSS
Raw Normal View History

body {
counter-reset: mySectionCounter;
}
h1:before {
counter-increment: mySectionCounter;
content: 'ARTICLE ' counter(mySectionCounter, upper-roman) ' - ';
}
h1 {
counter-reset: mySubSectionCounter;
}
h1:after {
}
h2:before {
counter-increment: mySubSectionCounter;
content: 'Section ' counter(mySectionCounter, decimal) '.' counter(mySubSectionCounter, decimal) ': ';
}
h2 {
}