rename output to 98.css and add css-variable post-processing

This commit is contained in:
Jordan Scales 2020-04-21 15:18:38 -04:00
parent 2075ff3a60
commit 23a00f1dcb
8 changed files with 397 additions and 180 deletions

View file

@ -225,7 +225,7 @@ input[type="radio"] + label {
input[type="radio"] + label::before {
content: "";
position: absolute;
left: calc(-1 * var(--radio-total-width));
left: calc(-1 * (var(--radio-total-width-precalc)));
display: inline-block;
width: var(--radio-width);
height: var(--radio-width);
@ -273,7 +273,7 @@ input[type="checkbox"] + label {
input[type="checkbox"] + label::before {
content: "";
position: absolute;
left: calc(-1 * var(--checkbox-total-width));
left: calc(-1 * (var(--checkbox-total-width-precalc)));
display: inline-block;
width: var(--checkbox-width);
height: var(--checkbox-width);