Skip to content

Instantly share code, notes, and snippets.

@Luiz-Monad
Created December 4, 2016 20:51
Show Gist options
  • Save Luiz-Monad/e2bc87796a24ce5b44d438b1adbff9af to your computer and use it in GitHub Desktop.
Save Luiz-Monad/e2bc87796a24ce5b44d438b1adbff9af to your computer and use it in GitHub Desktop.
input:not(:checked) + input:not(:checked) + input:not(:checked) + input:checked +
div:before {
content: "1";
}
input:not(:checked) + input:not(:checked) + input:checked + input:not(:checked) +
div:before {
content: "2";
}
input:not(:checked) + input:not(:checked) + input:checked + input:checked +
div:before {
content: "3";
}
input:not(:checked) + input:checked + input:not(:checked) + input:not(:checked) +
div:before {
content: "4";
}
input:not(:checked) + input:checked + input:not(:checked) + input:checked +
div:before {
content: "5";
}
input:not(:checked) + input:checked + input:checked + input:not(:checked) +
div:before {
content: "6";
}
input:not(:checked) + input:checked + input:checked + input:checked +
div:before {
content: "7";
}
input:checked + input:not(:checked) + input:not(:checked) + input:not(:checked) +
div:before {
content: "8";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment