shell_styler/index.html
Candifloss b16764daa0 Add: CSS tweaks
- Add blinking cursor after prompt string
- Add thin scrollbar to sidebar
2025-08-20 21:14:12 +05:30

28 lines
653 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>~/ShellStyler</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<aside class="sidebar">
<h2>Segments</h2>
<!-- Segment controls will go here -->
</aside>
<main class="preview">
<div class="terminal-preview">
<!-- Prompt preview will be rendered here -->
user@host:~/Works/shell_styler$ <!-- temp placeholder -->
</div>
</main>
</div>
<footer class="footer">
<h1 class="logo">~/ShellStyle.sh</h1>
<button class="copy-btn">Copy</button>
</footer>
</body>
</html>