Convert between plain CSS and SCSS/LESS: nest selectors, extract variables, or flatten back to CSS.
Input
CSS381 chars
Output
SCSS34 lines
Tip: CSS → SCSS/LESS nests descendant selectors that share a common prefix (e.g. .card .title and .card .body nest under .card). SCSS/LESS → CSS flattens nested rules, resolves $/@ variables and & parent references, and bubbles nested @media blocks. This is a lightweight converter — Sass/Less function calls (e.g. darken()) are passed through unevaluated.