Extra sass to css converter. You may need to copy the code into an html file to use it.

%%html
<html>
<head>
    <title>SASS to CSS Converter</title>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.11.1/sass.sync.js"></script>
    <style>
        body {
            font-family: Arial, sans-serif;
            padding: 20px;
            background-color: #f0f0f0;
        }
        textarea {
            width: 100%;
            height: 200px;
            margin-bottom: 20px;
            padding: 10px;
            font-size: 16px;
        }
        button {
            padding: 10px 20px;
            font-size: 16px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #0056b3;
        }
        #error {
            color: red;
        }
    </style>
</head>
<body>
    <textarea id="input" placeholder="Enter your SASS here"></textarea><br>
    <button onclick="convert()">Convert</button><br>
    <textarea id="output" placeholder="Your CSS will appear here"></textarea>
    <p id="error"></p>

    <script>
        function convert() {
            var input = document.getElementById('input').value;
            Sass.compile(input, function(result) {
                if (result.status === 0) { // Success
                    document.getElementById('output').value = result.text;
                    document.getElementById('error').textContent = '';
                } else { // Error
                    document.getElementById('output').value = '';
                    document.getElementById('error').textContent = 'Error: ' + result.message;
                }
            });
        }
    </script>
</body>
</html>

SASS to CSS Converter