declare const style = "ol {\n    /* Give our counter a name, any name will do */  \n    counter-reset: ordered-list;\n  }\n  \n  ol li {\n    /* Indicate that we should increment the count\n       for every list item */\n    counter-increment: counts;\n    list-style: none;\n  }\n  \n  ol li:before {\n    /* Use the count in the :before pseudoelement */\n    content: counter(counts) '. ';\n    display: inline-block;\n    color: deeppink;\n    font-family: 'Pacifico', cursive;\n    width: 32px;\n  }";
