# Live Demo ---
--- :::details Code :::code-group ```css [styles.css] @import url('https://unpkg.com/xterminal/dist/xterminal.css'); .error { color: rgb(248, 88, 88); } .spinner:after { animation: changeContent 0.8s linear infinite; content: "⠋"; } @keyframes changeContent { 10% { content: "⠙"; } 20% { content: "⠹"; } 30% { content: "⠸"; } 40% { content: "⠼"; } 50% { content: "⠴"; } 60% { content: "⠦"; } 70% { content: "⠧"; } 80% { content: "⠇"; } 90% { content: "⠏"; } } ``` ```html [index.html] ``` <<< @/public/demo.js#terminal{js:line-numbers} [createTerminal.js] <<< @/public/demo.js#shell{js:line-numbers} [createShell.js] :::