Amiga Workbench CSS Reference

This reference demonstrates using standardized generic HTML elements with the Amiga theme.

Window Structure

Reference Window

Standardized window body content.

<div class="window">
    <div class="title-bar">
        <div class="title-bar-text">Window Title</div>
        <div class="title-bar-controls">
            <button aria-label="Minimize"></button>
            <button aria-label="Maximize"></button>
            <button aria-label="Close"></button>
        </div>
    </div>
    <div class="window-body">...</div>
</div>

Buttons

<button>Normal Button</button>
<button class="default">Default Button</button>
<button disabled>Disabled</button>

Form Controls

Amiga Controls
<fieldset>
    <legend>Legend</legend>
    <input type="text">
    <label><input type="checkbox" checked> Label</label>
    <label><input type="radio" name="r" checked> Label</label>
</fieldset>