Skip to content

Instantly share code, notes, and snippets.

View 2thecrow's full-sized avatar
🐋

Alexander Pletnev 2thecrow

🐋
View GitHub Profile
@2thecrow
2thecrow / custom-numeric.css
Created December 18, 2020 12:23 — forked from maxdenaro/custom-numeric.css
Custom numeric on CSS (counter-reset)
ol {
counter-reset: section;
}
li {
display: inline-block;
padding-left: 10px;
}
li::before {
@2thecrow
2thecrow / check-box.css
Last active February 28, 2023 21:03 — forked from maxdenaro/check.css
Custom policy checkbox
/* This css is for normalizing styles. You can skip this. */
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}