Simple Clean CSS

A classless CSS library. Include sc.min.css (2.4KB w/max compression) and write semantic HTML.

The expanded version is sc.css (11.9KB).

Every example below has the code that produced the example.

For icons, the grouped SVG files are svg sprite sheets. See Icon Reference for sample code to use individual svg icons and hover the icon for it's name.

For layout prefer Grid Layout. For some inline cases, Flex Layout might be a better choice.



Forms

Account Information
Preferences

<form onsubmit="return false;">
  <fieldset>
    <legend>Account Information</legend>

    <label for="name">Full Name</label>
    <input type="text" id="name" placeholder="Jane Doe">

    <label for="email">Email</label>
    <input type="email" id="email" placeholder="[email protected]">

    <label for="password">Password</label>
    <input type="password" id="password" placeholder="Enter password">

    <label for="url">Website</label>
    <input type="url" id="url" placeholder="https://example.com">

    <label for="phone">Phone</label>
    <input type="tel" id="phone" placeholder="+1 (555) 000-0000">

    <label for="date">Date</label>
    <input type="date" id="date">

    <label for="number">Quantity</label>
    <input type="number" id="number" min="0" max="100" value="1">

    <label for="search">Search</label>
    <input type="search" id="search" placeholder="Search...">

    <label for="color">Favorite Color</label>
    <input type="color" id="color" value="#2563eb">

    <label for="range">Range</label>
    <input type="range" id="range" min="0" max="100" value="50">
  </fieldset>

  <fieldset>
    <legend>Preferences</legend>

    <label for="country">Country</label>
    <select id="country">
      <option value="" disabled selected>Select a country</option>
      <option>United States</option>
      <option>United Kingdom</option>
      <option>Canada</option>
      <option>Australia</option>
    </select>

    <label for="bio">Bio</label>
    <textarea id="bio" rows="4" placeholder="Tell us about yourself..."></textarea>

    <p>
      <label><input type="checkbox" checked> Subscribe to newsletter</label>
      <label><input type="checkbox"> Accept terms and conditions</label>
    </p>

    <p>
      <label><input type="radio" name="plan" checked> Free</label>
      <label><input type="radio" name="plan"> Pro</label>
      <label><input type="radio" name="plan"> Enterprise</label>
    </p>
  </fieldset>

  <p>
    <button type="submit">Submit</button>
    <button type="reset">Reset</button>
    <button disabled>Disabled</button>
  </p>
</form>

Inline Forms

Account Information
Preferences

<form onsubmit="return false;">
  <fieldset>
    <legend>Account Information</legend>
    <div>
      <label for="i-name">Full Name</label>
      <input type="text" id="i-name" placeholder="Jane Doe">

      <label for="i-email">Email</label>
      <input type="email" id="i-email" placeholder="[email protected]">

      <label for="i-password">Password</label>
      <input type="password" id="i-password" placeholder="Enter password">

      <label for="i-url">Website</label>
      <input type="url" id="i-url" placeholder="https://example.com">

      <label for="i-phone">Phone</label>
      <input type="tel" id="i-phone" placeholder="+1 (555) 000-0000">

      <label for="i-date">Date</label>
      <input type="date" id="i-date">

      <label for="i-number">Quantity</label>
      <input type="number" id="i-number" min="0" max="100" value="1">

      <label for="i-search">Search</label>
      <input type="search" id="i-search" placeholder="Search...">

      <label for="i-color">Favorite Color</label>
      <input type="color" id="i-color" value="#2563eb">

      <label for="i-range">Range</label>
      <input type="range" id="i-range" min="0" max="100" value="50">
    </div>
  </fieldset>

  <fieldset>
    <legend>Preferences</legend>
    <div>
      <label for="i-country">Country</label>
      <select id="i-country">
        <option value="" disabled selected>Select a country</option>
        <option>United States</option>
        <option>United Kingdom</option>
        <option>Canada</option>
        <option>Australia</option>
      </select>

      <label for="i-bio">Bio</label>
      <textarea id="i-bio" rows="4" placeholder="Tell us about yourself..."></textarea>

      <span>
        <label><input type="checkbox" checked> Subscribe to newsletter</label>
        <label><input type="checkbox"> Accept terms and conditions</label>
      </span>

      <span>
        <label><input type="radio" name="i-plan" checked> Free</label>
        <label><input type="radio" name="i-plan"> Pro</label>
        <label><input type="radio" name="i-plan"> Enterprise</label>
      </span>
    </div>
  </fieldset>

  <p>
    <button type="submit">Submit</button>
    <button type="reset">Reset</button>
    <button disabled>Disabled</button>
  </p>
</form>

Buttons

Button Element

Submit Input

Reset Input

Button Input

Link Button

A button that looks like a link. Useful for actions that shouldn't navigate. Add type="reset" for a danger-colored link button. See Button Layout Demos for usage in menus, tabs, navs, and more.

<button>Default Button</button>
<button disabled>Disabled Button</button>

<input type="submit" value="Submit">
<input type="submit" value="Submit (Disabled)" disabled>

<input type="reset" value="Reset">
<input type="reset" value="Reset (Disabled)" disabled>

<input type="button" value="Button">
<input type="button" value="Button (Disabled)" disabled>

<button role="link">Link Button</button>
<button type="reset" role="link">Danger Link Button</button>
<button role="link" disabled>Disabled Link Button</button>

Icon Buttons

Gray Background (default)

White Background (span-wrapped)

<!-- Gray Background (default): svg directly in button -->
<button aria-label="Add">
  <svg><use href="scsss-nav.svg#icon-add"/></svg>
</button>
<button aria-label="Edit">
  <svg><use href="scsss-editing.svg#icon-edit"/></svg>
</button>
<button aria-label="Delete">
  <svg><use href="scsss-files.svg#icon-delete"/></svg>
</button>
<button aria-label="Search">
  <svg><use href="scsss-nav.svg#icon-search"/></svg>
</button>
<button aria-label="Settings">
  <svg><use href="scsss-nav.svg#icon-settings"/></svg>
</button>
<button aria-label="Download">
  <svg><use href="scsss-files.svg#icon-download"/></svg>
</button>
<button aria-label="Close">
  <svg><use href="scsss-nav.svg#icon-close"/></svg>
</button>

<!-- White Background (span-wrapped): wrap svg in a span -->
<button aria-label="Add">
  <span><svg><use href="scsss-nav.svg#icon-add"/></svg></span>
</button>
<button aria-label="Edit">
  <span><svg><use href="scsss-editing.svg#icon-edit"/></svg></span>
</button>
<button aria-label="Delete">
  <span><svg><use href="scsss-files.svg#icon-delete"/></svg></span>
</button>
<button aria-label="Search">
  <span><svg><use href="scsss-nav.svg#icon-search"/></svg></span>
</button>
<button aria-label="Settings">
  <span><svg><use href="scsss-nav.svg#icon-settings"/></svg></span>
</button>
<button aria-label="Download">
  <span><svg><use href="scsss-files.svg#icon-download"/></svg></span>
</button>
<button aria-label="Close">
  <span><svg><use href="scsss-nav.svg#icon-close"/></svg></span>
</button>

Icon-Label Buttons

Default (icon left)

Default (icon right)

Submit (icon left)

Submit (icon right)

Reset (icon left)

Reset (icon right)

<!-- Default (icon left) -->
<button>
  <svg><use href="scsss-nav.svg#icon-add"/></svg>
  <span>Add</span>
</button>
<button>
  <svg><use href="scsss-editing.svg#icon-edit"/></svg>
  <span>Edit</span>
</button>
<button>
  <svg><use href="scsss-files.svg#icon-delete"/></svg>
  <span>Delete</span>
</button>
<button>
  <svg><use href="scsss-nav.svg#icon-search"/></svg>
  <span>Search</span>
</button>
<button disabled>
  <svg><use href="scsss-nav.svg#icon-add"/></svg>
  <span>Disabled</span>
</button>

<!-- Default (icon right) -->
<button>
  <span>Add</span>
  <svg><use href="scsss-nav.svg#icon-add"/></svg>
</button>
<button>
  <span>Edit</span>
  <svg><use href="scsss-editing.svg#icon-edit"/></svg>
</button>
<button>
  <span>Delete</span>
  <svg><use href="scsss-files.svg#icon-delete"/></svg>
</button>
<button>
  <span>Search</span>
  <svg><use href="scsss-nav.svg#icon-search"/></svg>
</button>
<button disabled>
  <span>Disabled</span>
  <svg><use href="scsss-nav.svg#icon-add"/></svg>
</button>

<!-- Submit (icon left) -->
<button type="submit">
  <svg><use href="scsss-files.svg#icon-download"/></svg>
  <span>Download</span>
</button>
<button type="submit">
  <svg><use href="scsss-nav.svg#icon-search"/></svg>
  <span>Search</span>
</button>
<button type="submit" disabled>
  <svg><use href="scsss-files.svg#icon-download"/></svg>
  <span>Disabled</span>
</button>

<!-- Submit (icon right) -->
<button type="submit">
  <span>Download</span>
  <svg><use href="scsss-files.svg#icon-download"/></svg>
</button>
<button type="submit">
  <span>Search</span>
  <svg><use href="scsss-nav.svg#icon-search"/></svg>
</button>
<button type="submit" disabled>
  <span>Disabled</span>
  <svg><use href="scsss-files.svg#icon-download"/></svg>
</button>

<!-- Reset (icon left) -->
<button type="reset">
  <svg><use href="scsss-nav.svg#icon-close"/></svg>
  <span>Reset</span>
</button>
<button type="reset">
  <svg><use href="scsss-files.svg#icon-delete"/></svg>
  <span>Clear</span>
</button>
<button type="reset" disabled>
  <svg><use href="scsss-nav.svg#icon-close"/></svg>
  <span>Disabled</span>
</button>

<!-- Reset (icon right) -->
<button type="reset">
  <span>Reset</span>
  <svg><use href="scsss-nav.svg#icon-close"/></svg>
</button>
<button type="reset">
  <span>Clear</span>
  <svg><use href="scsss-files.svg#icon-delete"/></svg>
</button>
<button type="reset" disabled>
  <span>Disabled</span>
  <svg><use href="scsss-nav.svg#icon-close"/></svg>
</button>

Dialog

Dialog Title

This is a native HTML dialog element. It can be used for modals, confirmations, and alerts.

<button onclick="document.getElementById('demo-dialog').showModal()">Open Dialog</button>

<dialog id="demo-dialog" onclick="if(event.target===this)this.close()" style="padding: 0;">
  <div style="padding: 0 1.5rem; background: var(--bg);">
    <h3>Dialog Title</h3>
    <p>This is a native HTML dialog element. Click the backdrop or the Close button to dismiss.</p>
    <p>
      <button onclick="document.getElementById('demo-dialog').close()">Close</button>
    </p>
  </div>
</dialog>

Headings

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>

Inline Text Elements

This is a regular paragraph. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Text can be bold, italic, or both.

You can highlight text with the mark element.

This is small text and this is abbr with a title.

Subscript: H2O and Superscript: E=mc2

This text has been deleted and this has been inserted.

Press Ctrl+S to save.

<p>This is a regular paragraph.</p>
<p>Text can be <strong>bold</strong>, <em>italic</em>, or <strong><em>both</em></strong>.</p>
<p>You can <mark>highlight text</mark> with the mark element.</p>
<p>This is <small>small text</small> and this is <abbr title="abbreviation">abbr</abbr> with a title.</p>
<p>Subscript: H<sub>2</sub>O and Superscript: E=mc<sup>2</sup></p>
<p>This text has been <del>deleted</del> and this has been <ins>inserted</ins>.</p>
<p>Press <kbd>Ctrl+S</kbd> to save.</p>


Lists

Unordered List

Ordered List

  1. Step one
  2. Step two
  3. Step three
    1. Sub-step 3.1
    2. Sub-step 3.2
  4. Step four

Definition List

HTML
HyperText Markup Language, the standard language for web pages.
CSS
Cascading Style Sheets, used to style and layout web pages.
JavaScript
A programming language for adding interactivity to web pages.
<h3>Unordered List</h3>
<ul>
  <li>First item</li>
  <li>Second item</li>
  <li>Third item
    <ul>
      <li>Nested item A</li>
      <li>Nested item B</li>
    </ul>
  </li>
  <li>Fourth item</li>
</ul>

<h3>Ordered List</h3>
<ol>
  <li>Step one</li>
  <li>Step two</li>
  <li>Step three
    <ol>
      <li>Sub-step 3.1</li>
      <li>Sub-step 3.2</li>
    </ol>
  </li>
  <li>Step four</li>
</ol>

<h3>Definition List</h3>
<dl>
  <dt>HTML</dt>
  <dd>HyperText Markup Language, the standard language for web pages.</dd>
  <dt>CSS</dt>
  <dd>Cascading Style Sheets, used to style and layout web pages.</dd>
  <dt>JavaScript</dt>
  <dd>A programming language for adding interactivity to web pages.</dd>
</dl>

Blockquote

Simplicity is the ultimate sophistication.

- Leonardo da Vinci

<blockquote>
  <p>Simplicity is the ultimate sophistication.</p>
  <p><small>- Leonardo da Vinci</small></p>
</blockquote>

Code

Inline code: const x = 42;

Code Block

function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet("World"));

Sample Output

Error: file not found

<p>Inline code: <code>const x = 42;</code></p>

<pre><code>function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet("World"));</code></pre>

<p><samp>Error: file not found</samp></p>

Tables

Name Type Size Status
index.html HTML 4.2 KB Active
style.css CSS 8.1 KB Active
app.js JavaScript 12.7 KB Draft
old.css CSS 3.0 KB Deprecated
<table>
  <thead>
    <tr>
      <th>Name</th>
      <th>Type</th>
      <th>Size</th>
      <th>Status</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>index.html</td>
      <td>HTML</td>
      <td>4.2 KB</td>
      <td>Active</td>
    </tr>
    <tr>
      <td>style.css</td>
      <td>CSS</td>
      <td>8.1 KB</td>
      <td>Active</td>
    </tr>
    <tr>
      <td>app.js</td>
      <td>JavaScript</td>
      <td>12.7 KB</td>
      <td>Draft</td>
    </tr>
    <tr>
      <td>old.css</td>
      <td>CSS</td>
      <td>3.0 KB</td>
      <td>Deprecated</td>
    </tr>
  </tbody>
</table>

Images & Media

A placeholder image
A placeholder image with a figcaption.
<figure>
  <img src="placeholder.png" alt="A placeholder image" loading="lazy">
  <figcaption>A placeholder image with a figcaption.</figcaption>
</figure>

Details & Summary

What is Simple Clean CSS?

Simple Clean CSS is a classless CSS library that styles raw HTML elements to look clean and modern out of the box. No classes needed.

How do I use it?

Just add <link rel="stylesheet" href="sc.min.css"> to your HTML and write semantic markup. That's it.

Is this details element open by default?

Yes, this one uses the open attribute so it starts expanded.

<details>
  <summary>What is Simple Clean CSS?</summary>
  <p>Simple Clean CSS is a classless CSS library that styles raw HTML elements to look clean and modern out of the box. No classes needed.</p>
</details>

<details>
  <summary>How do I use it?</summary>
  <p>Just add <code>&lt;link rel="stylesheet" href="sc.min.css"&gt;</code> to your HTML and write semantic markup. That's it.</p>
</details>

<details open>
  <summary>Is this details element open by default?</summary>
  <p>Yes, this one uses the <code>open</code> attribute so it starts expanded.</p>
</details>

Progress & Meter

Progress

65%

Meter

70%
<h3>Progress</h3>
<label for="progress-bar">Upload progress:</label>
<progress id="progress-bar" value="65" max="100">65%</progress>

<h3>Meter</h3>
<label for="disk-usage">Disk usage:</label>
<meter id="disk-usage" value="0.7" min="0" max="1" low="0.3" high="0.8" optimum="0.5">70%</meter>

Miscellaneous

Address

123 Main Street
Springfield, IL 62701
United States

Time

The event starts at .

Horizontal Rule

Content above the rule.


Content below the rule.

Preformatted Text

                        
  ___  ___ ___ ___ ___ 
 / __|/ __/ __/ __/ __|
 \__ \ (_| (__\__ \__ \
 |___/\___\___|___/___/
                        
    
<address>
  123 Main Street<br>
  Springfield, IL 62701<br>
  United States
</address>

<p>The event starts at <time datetime="2026-03-15T09:00">9:00 AM on March 15, 2026</time>.</p>

<hr>

<pre>
  ___  ___ ___ ___ ___
 / __|/ __/ __/ __/ __|
 \__ \ (_| (__\__ \__ \
 |___/\___\___|___/___/
</pre>

Icon Reference

All icons are available as SVG symbols in the grouped SVG files.

NOTE: these files are Simple Clean Svg Sprite Sheets - scsss:

Use them with the <svg><use> pattern:

<svg style="width: 24px; height: 24px;"><use href="scsss-nav.svg#icon-add"/></svg>

Hover over the icon to see it's name.

Navigation & UI

These icons are in the file: scsss-nav.svg

Files & Documents

These icons are in the file: scsss-files.svg

Editing

These icons are in the file: scsss-editing.svg

View & Display

These icons are in the file: scsss-view.svg

Communication

These icons are in the file: scsss-comms.svg

Users & Social

These icons are in the file: scsss-social.svg

Media

These icons are in the file: scsss-media.svg

Data & Analytics

These icons are in the file: scsss-data.svg

Status & Alerts

These icons are in the file: scsss-status.svg

Utility

These icons are in the file: scsss-utility.svg


Button Layout Demos

These demos show how <button role="link">, <button type="reset" role="link">, and <details role="menu"> can be composed with standard HTML layout to build common UI patterns — no extra CSS classes needed.

Site Nav Header

MySite

<div style="display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem;">
  <h3 style="margin: 0;">MySite</h3>
  <span style="display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; justify-content: flex-end;">
    <button role="link">Home</button>
    <button role="link">About</button>
    <button role="link">Projects</button>
    <button role="link">Blog</button>
    <button role="link">Contact</button>
  </span>
</div>
Sidebar Menu

With JavaScript, clicking a sidebar item would swap this content area. The bold item indicates which view is active.

<div style="display: grid; grid-template-columns: 10rem 1fr; gap: 1.5rem;">
  <div style="display: grid; gap: 0.25rem; justify-items: start;">
    <button role="link" style="font-weight: 600;">Dashboard</button>
    <button role="link">Profile</button>
    <button role="link">Settings</button>
    <button role="link">Notifications</button>
    <button role="link">Billing</button>
    <button role="link" disabled>Admin (locked)</button>
  </div>
  <div style="padding: 0.75rem; background: var(--bg-soft); border: var(--border-w) solid var(--border); border-radius: var(--radius-md);">
    <p>With JavaScript, clicking a sidebar item would swap this content area.</p>
  </div>
</div>
Tabs

With JavaScript, clicking a tab would swap this panel's content. The bold tab with the underline indicates which panel is currently visible.

<div style="display: flex; gap: 1.5rem; border-bottom: var(--border-w) solid var(--border); padding-bottom: 0.5rem; margin-bottom: 1rem;">
  <!-- Active tab -->
  <button role="link" style="font-weight: 700; text-decoration: none;">General</button>
  <!-- Inactive tabs -->
  <button role="link" style="text-decoration: none; color: var(--text-muted);">Security</button>
  <button role="link" style="text-decoration: none; color: var(--text-muted);">Notifications</button>
  <button role="link" style="text-decoration: none; color: var(--text-muted);" disabled>Integrations</button>
</div>
<div>
  <p>Tab panel content here.</p>
</div>
Dropdown Menu (right-aligned, default)
Account

Menu

Menu

<div style="display: flex; justify-content: flex-end; gap: 1.5rem; align-items: flex-start;">
  <details role="menu">
    <summary>Account</summary>
    <div>
      <button role="link">Profile</button>
      <button role="link">Settings</button>
      <hr>
      <button type="reset" role="link">Sign Out</button>
    </div>
  </details>
  <details role="menu">
    <summary>Menu <svg><use href="scsss-nav.svg#icon-down"/></svg></summary>
    <div>
      <button role="link">Profile</button>
      <button role="link">Account Settings</button>
      <button role="link">Notifications</button>
      <button role="link">Help &amp; Support</button>
      <hr>
      <button type="reset" role="link">Sign Out</button>
    </div>
  </details>
  <details role="menu">
    <summary><svg><use href="scsss-nav.svg#icon-menu"/></svg> Menu</summary>
    <div>
      <button role="link">Profile</button>
      <button role="link">Account Settings</button>
      <hr>
      <button type="reset" role="link">Sign Out</button>
    </div>
  </details>
</div>
Dropdown Menu (left-aligned)
Actions

Settings
More
<div style="display: flex; gap: 1.5rem; align-items: flex-start;">
  <details role="menu">
    <summary>Actions</summary>
    <div style="right: auto; left: 0;">
      <button role="link">Edit Item</button>
      <button role="link">Duplicate</button>
      <hr>
      <button type="reset" role="link">Delete Item</button>
    </div>
  </details>
  <details role="menu">
    <summary><svg><use href="scsss-nav.svg#icon-settings"/></svg> Settings</summary>
    <div style="right: auto; left: 0;">
      <button role="link">Profile</button>
      <button role="link">Preferences</button>
      <button role="link">Notifications</button>
    </div>
  </details>
  <details role="menu">
    <summary>More <svg><use href="scsss-nav.svg#icon-down"/></svg></summary>
    <div style="right: auto; left: 0;">
      <button role="link">Help</button>
      <button role="link">About</button>
    </div>
  </details>
</div>

The <details role="menu"> strips the box styling and makes the summary look like a link. The panel div is automatically positioned, styled, and grid-aligned by CSS. Panels default to right-aligned; for left-aligned, add style="right: auto; left: 0;" to the panel div. Use type="reset" on a link button to indicate a dangerous action. To animate a chevron icon on open/close, target details[role="menu"][open] > summary > svg:last-child in your own CSS with a transform: rotate(180deg) and transition.

Breadcrumb Header
Profile
<div style="display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;">
  <button role="link">Home</button>
  <span style="color: var(--text-light);">&rsaquo;</span>
  <button role="link">Settings</button>
  <span style="color: var(--text-light);">&rsaquo;</span>
  <button role="link">Account</button>
  <span style="color: var(--text-light);">&rsaquo;</span>
  <span style="color: var(--text-muted); font-weight: 600;">Profile</span>
</div>

Customizing the CSS

This library uses CSS custom properties (variables) that you can override to customize colors, spacing, and more. Override any of these variables in your own CSS to customize the appearance:

Variable Default Value Purpose
--font-sans system-ui, sans-serif Default font family for text
--font-mono ui-monospace, monospace Monospace font for code
--text #1a1a1a Primary text color
--text-heading #111 Heading text color
--text-muted #374151 Muted/secondary text
--text-light #6b7280 Light text color
--bg #fff Primary background color
--bg-soft #f9fafb Soft background (nav, details)
--bg-muted #f3f4f6 Muted background
--bg-accent #e5e7eb Accent background
--border #d1d5db Border color
--border-w 0.0625rem Border width
--mark #fff3a0 Highlight/mark color
--link #2563eb Link and submit button color
--link-hover #1d4ed8 Link hover color
--link-visited #7c3aed Visited link color
--focus-ring rgba(37, 99, 235, 0.15) Focus ring color
--btn-active #bfc4cc Button active state
--btn-text-on #fff Text color on colored buttons
--submit-active #1e40af Submit button active state
--danger #ea580c Danger/reset button color
--danger-hover #c2410c Danger button hover
--danger-active #9a3412 Danger button active state
--radius-xs 0.1875rem Extra small border radius
--radius-sm 0.25rem Small border radius
--radius-md 0.375rem Medium border radius
--radius-lg 0.5rem Large border radius
--radius-pill 62.4375rem Pill-shaped border radius

This example shows how to change button colors by overriding the --link and --danger variables:

<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" href="sc.min.css">
  <style>
    :root {
      --link: #8b5cf6;        /* Purple submit buttons */
      --danger: #f59e0b;      /* Amber reset buttons */
    }
  </style>
</head>
<body>
  <button>Regular Button</button>
  <button type="submit">Submit Button</button>
  <button type="reset">Reset Button</button>
</body>
</html>