531 lines
No EOL
21 KiB
HTML
531 lines
No EOL
21 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
<title>Preview • Pico CSS</title>
|
|
<meta name="description" content="A pure HTML example, without dependencies." />
|
|
|
|
<!-- Pico.css -->
|
|
<link rel="stylesheet" href="pico.min.css" />
|
|
<link rel="stylesheet" href="css.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Header -->
|
|
<header class="container">
|
|
<hgroup>
|
|
<h1>Pico</h1>
|
|
<p>A pure HTML example, without dependencies.</p>
|
|
</hgroup>
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
<details class="dropdown">
|
|
<summary role="button" class="primary">Theme</summary>
|
|
<ul>
|
|
<li><a href="#" data-theme-switcher="auto">Auto</a></li>
|
|
<li><a href="#" data-theme-switcher="light">Light</a></li>
|
|
<li><a href="#" data-theme-switcher="dark">Dark</a></li>
|
|
</ul>
|
|
</details>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="#preview">Preview</a></li>
|
|
<li><a href="#typography">Typography</a></li>
|
|
<li><a href="#buttons">Buttons</a></li>
|
|
<li><a href="#form">Form</a></li>
|
|
<li><a href="#tables">Tables</a></li>
|
|
<li><a href="#modal">Modal</a></li>
|
|
<li><a href="#accordions">Accordions</a></li>
|
|
<li><a href="#article">Article/card</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<nav aria-label="breadcrumb">
|
|
<ul>
|
|
<li><a href="#">Home</a></li>
|
|
<li><a href="#">Services</a></li>
|
|
<li>Design</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
<header class="header container">
|
|
<hgroup class="flex">
|
|
<img src="logo.png" width="40px">
|
|
<h1>Pico</h1>
|
|
<p>A pure HTML example, without dependencies.</p>
|
|
</hgroup>
|
|
|
|
<nav aria-label="breadcrumb">
|
|
<ul>
|
|
<li><a href="#">Home</a></li>
|
|
<li><a href="#">Services</a></li>
|
|
<li>Design</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<p>
|
|
Lorem ipsum dolor sit amet consectetur <a href=""> adipisicing elit</a>. Odit dolore dolorum vitae
|
|
necessitatibus, facere
|
|
reprehenderit ipsa vero quaerat, obcaecati nihil consequatur animi. Perferendis fuga possimus ducimus, iure
|
|
ipsa nisi quidem?
|
|
</p>
|
|
|
|
</header>
|
|
|
|
<!-- ./ Header -->
|
|
|
|
<!-- Main -->
|
|
<main class="container">
|
|
<!-- Preview -->
|
|
<section id="preview">
|
|
<h2>Preview</h2>
|
|
<p>
|
|
Sed ultricies dolor non ante vulputate hendrerit. Vivamus sit amet suscipit sapien. Nulla
|
|
iaculis eros a elit pharetra egestas.
|
|
</p>
|
|
<form>
|
|
<div class="grid">
|
|
<input type="text" name="firstname" placeholder="First name" aria-label="First name" required />
|
|
<input type="email" name="email" placeholder="Email address" aria-label="Email address"
|
|
autocomplete="email" required />
|
|
<button type="submit">Subscribe</button>
|
|
</div>
|
|
<fieldset>
|
|
<label for="terms">
|
|
<input type="checkbox" role="switch" id="terms" name="terms" />
|
|
I agree to the
|
|
<a href="#" onclick="event.preventDefault()">Privacy Policy</a>
|
|
</label>
|
|
</fieldset>
|
|
</form>
|
|
</section>
|
|
<!-- ./ Preview -->
|
|
|
|
<!-- Typography-->
|
|
<section id="typography">
|
|
<h2>Typography</h2>
|
|
<p>
|
|
Aliquam lobortis vitae nibh nec rhoncus. Morbi mattis neque eget efficitur feugiat.
|
|
Vivamus porta nunc a erat mattis, mattis feugiat turpis pretium. Quisque sed tristique
|
|
felis.
|
|
</p>
|
|
|
|
<!-- Blockquote-->
|
|
<blockquote>
|
|
"Maecenas vehicula metus tellus, vitae congue turpis hendrerit non. Nam at dui sit amet
|
|
ipsum cursus ornare."
|
|
<footer>
|
|
<cite>- Phasellus eget lacinia</cite>
|
|
</footer>
|
|
</blockquote>
|
|
|
|
<!-- Lists-->
|
|
<h3>Lists</h3>
|
|
<ul>
|
|
<li>Aliquam lobortis lacus eu libero ornare facilisis.</li>
|
|
<li>Nam et magna at libero scelerisque egestas.</li>
|
|
<li>Suspendisse id nisl ut leo finibus vehicula quis eu ex.</li>
|
|
<li>Proin ultricies turpis et volutpat vehicula.</li>
|
|
</ul>
|
|
|
|
<!-- Inline text elements-->
|
|
<h3>Inline text elements</h3>
|
|
<div class="grid">
|
|
<p><a href="#" onclick="event.preventDefault()">Primary link</a></p>
|
|
<p><a href="#" class="secondary" onclick="event.preventDefault()">Secondary link</a></p>
|
|
<p><a href="#" class="error" onclick="event.preventDefault()">Error link</a></p>
|
|
<p><a href="#" class="success" onclick="event.preventDefault()">Success link</a></p>
|
|
<p><a href="#" class="warning" onclick="event.preventDefault()">Warning link</a></p>
|
|
<p><a href="#" class="info" onclick="event.preventDefault()">Info link</a></p>
|
|
</div>
|
|
<div class="grid">
|
|
<p><strong>Bold</strong></p>
|
|
<p><em>Italic</em></p>
|
|
<p><u>Underline</u></p>
|
|
</div>
|
|
<div class="grid">
|
|
<p><del>Deleted</del></p>
|
|
<p><ins>Inserted</ins></p>
|
|
<p><s>Strikethrough</s></p>
|
|
</div>
|
|
<div class="grid">
|
|
<p><small>Small </small></p>
|
|
<p>Text <sub>Sub</sub></p>
|
|
<p>Text <sup>Sup</sup></p>
|
|
</div>
|
|
<div class="grid">
|
|
<p>
|
|
<abbr title="Abbreviation" data-tooltip="Abbreviation">Abbr.</abbr>
|
|
</p>
|
|
<p><kbd>Kbd</kbd></p>
|
|
<p><mark>Highlighted</mark></p>
|
|
</div>
|
|
|
|
<!-- Headings-->
|
|
<h1>Heading 1</h1>
|
|
<p>
|
|
Integer bibendum malesuada libero vel eleifend. Fusce iaculis turpis ipsum, at efficitur
|
|
sem scelerisque vel. Aliquam auctor diam ut purus cursus fringilla. Class aptent taciti
|
|
sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
|
|
</p>
|
|
<h2>Heading 2</h2>
|
|
<p>
|
|
Integer bibendum malesuada libero vel eleifend. Fusce iaculis turpis ipsum, at efficitur
|
|
sem scelerisque vel. Aliquam auctor diam ut purus cursus fringilla. Class aptent taciti
|
|
sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
|
|
</p>
|
|
<h3>Heading 3</h3>
|
|
<p>
|
|
Integer bibendum malesuada libero vel eleifend. Fusce iaculis turpis ipsum, at efficitur
|
|
sem scelerisque vel. Aliquam auctor diam ut purus cursus fringilla. Class aptent taciti
|
|
sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
|
|
</p>
|
|
<h4>Heading 4</h4>
|
|
<p>
|
|
Cras fermentum velit vitae auctor aliquet. Nunc non congue urna, at blandit nibh. Donec ac
|
|
fermentum felis. Vivamus tincidunt arcu ut lacus hendrerit, eget mattis dui finibus.
|
|
</p>
|
|
<h5>Heading 5</h5>
|
|
<p>
|
|
Donec nec egestas nulla. Sed varius placerat felis eu suscipit. Mauris maximus ante in
|
|
consequat luctus. Morbi euismod sagittis efficitur. Aenean non eros orci. Vivamus ut diam
|
|
sem.
|
|
</p>
|
|
<h6>Heading 6</h6>
|
|
<p>
|
|
Ut sed quam non mauris placerat consequat vitae id risus. Vestibulum tincidunt nulla ut
|
|
tortor posuere, vitae malesuada tortor molestie. Sed nec interdum dolor. Vestibulum id
|
|
auctor nisi, a efficitur sem. Aliquam sollicitudin efficitur turpis, sollicitudin
|
|
hendrerit ligula semper id. Nunc risus felis, egestas eu tristique eget, convallis in
|
|
velit.
|
|
</p>
|
|
|
|
<!-- Medias-->
|
|
<figure>
|
|
<img src="img/aleksandar-jason-a562ZEFKW8I-unsplash-2000x1000.jpg" alt="Minimal landscape" />
|
|
<figcaption>
|
|
Image from
|
|
<a href="https://unsplash.com/photos/a562ZEFKW8I" target="_blank">unsplash.com</a>
|
|
</figcaption>
|
|
</figure>
|
|
</section>
|
|
<!-- ./ Typography-->
|
|
|
|
<!-- Buttons-->
|
|
<section id="buttons">
|
|
<h2>Buttons</h2>
|
|
<p class="grid">
|
|
<button data-tooltip="Tooltip">Primary</button>
|
|
<button class="secondary">Secondary</button>
|
|
<button class="error">Error</button>
|
|
<button class="success">Success</button>
|
|
<button class="warning">Warning</button>
|
|
<button class="info">Info</button>
|
|
</p>
|
|
<p class="grid">
|
|
<button class="outline">Primary outline</button>
|
|
<button class="outline secondary">Secondary outline</button>
|
|
<button class="outline error">Contrast outline</button>
|
|
<button class="outline success">Contrast outline</button>
|
|
<button class="outline warning">Contrast outline</button>
|
|
<button class="outline info">Contrast outline</button>
|
|
</p>
|
|
</section>
|
|
<!-- ./ Buttons -->
|
|
|
|
<!-- Form elements-->
|
|
<section id="form">
|
|
<form>
|
|
<h2>Form elements</h2>
|
|
|
|
<!-- Search -->
|
|
<label for="search">Search</label>
|
|
<input type="search" id="search" name="search" placeholder="Search" />
|
|
|
|
<!-- Text -->
|
|
<label for="text">Text</label>
|
|
<input type="text" id="text" name="text" placeholder="Text" />
|
|
<small>Curabitur consequat lacus at lacus porta finibus.</small>
|
|
|
|
<!-- Select -->
|
|
<label for="select">Select</label>
|
|
<select id="select" name="select" required>
|
|
<option value="" selected>Select…</option>
|
|
<option>…</option>
|
|
</select>
|
|
|
|
<!-- File browser -->
|
|
<label for="file">File browser
|
|
<input type="file" id="file" name="file" />
|
|
</label>
|
|
|
|
<!-- Range slider control -->
|
|
<label for="range">Range slider
|
|
<input type="range" min="0" max="100" value="50" id="range" name="range" />
|
|
</label>
|
|
|
|
<!-- States -->
|
|
<div class="grid">
|
|
<label for="valid">
|
|
Valid
|
|
<input type="text" id="valid" name="valid" placeholder="Valid" aria-invalid="false" />
|
|
</label>
|
|
<label for="invalid">
|
|
Invalid
|
|
<input type="text" id="invalid" name="invalid" placeholder="Invalid" aria-invalid="true" />
|
|
</label>
|
|
<label for="disabled">
|
|
Disabled
|
|
<input type="text" id="disabled" name="disabled" placeholder="Disabled" disabled />
|
|
</label>
|
|
</div>
|
|
|
|
<div class="grid">
|
|
<!-- Date-->
|
|
<label for="date">Date
|
|
<input type="date" id="date" name="date" />
|
|
</label>
|
|
|
|
<!-- Time-->
|
|
<label for="time">Time
|
|
<input type="time" id="time" name="time" />
|
|
</label>
|
|
|
|
<!-- Color-->
|
|
<label for="color">Color
|
|
<input type="color" id="color" name="color" value="#0eaaaa" />
|
|
</label>
|
|
</div>
|
|
|
|
<div class="grid">
|
|
<!-- Checkboxes -->
|
|
<fieldset>
|
|
<legend><strong>Checkboxes</strong></legend>
|
|
<label for="checkbox-1">
|
|
<input type="checkbox" id="checkbox-1" name="checkbox-1" checked />
|
|
Checkbox
|
|
</label>
|
|
<label for="checkbox-2">
|
|
<input type="checkbox" id="checkbox-2" name="checkbox-2" />
|
|
Checkbox
|
|
</label>
|
|
</fieldset>
|
|
|
|
<!-- Radio buttons -->
|
|
<fieldset>
|
|
<legend><strong>Radio buttons</strong></legend>
|
|
<label for="radio-1">
|
|
<input type="radio" id="radio-1" name="radio" value="radio-1" checked />
|
|
Radio button
|
|
</label>
|
|
<label for="radio-2">
|
|
<input type="radio" id="radio-2" name="radio" value="radio-2" />
|
|
Radio button
|
|
</label>
|
|
</fieldset>
|
|
|
|
<!-- Switch -->
|
|
<fieldset>
|
|
<legend><strong>Switches</strong></legend>
|
|
<label for="switch-1">
|
|
<input type="checkbox" id="switch-1" name="switch-1" role="switch" checked />
|
|
Switch
|
|
</label>
|
|
<label for="switch-2">
|
|
<input type="checkbox" id="switch-2" name="switch-2" role="switch" />
|
|
Switch
|
|
</label>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<!-- Buttons -->
|
|
<input type="reset" value="Reset" onclick="event.preventDefault()" />
|
|
<input type="submit" value="Submit" onclick="event.preventDefault()" />
|
|
</form>
|
|
</section>
|
|
<!-- ./ Form elements-->
|
|
|
|
<!-- Tables -->
|
|
<section id="tables">
|
|
<h2>Tables</h2>
|
|
<div class="overflow-auto">
|
|
<table class="striped">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">#</th>
|
|
<th scope="col">Heading</th>
|
|
<th scope="col">Heading</th>
|
|
<th scope="col">Heading</th>
|
|
<th scope="col">Heading</th>
|
|
<th scope="col">Heading</th>
|
|
<th scope="col">Heading</th>
|
|
<th scope="col">Heading</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">1</th>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">2</th>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">3</th>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
<td>Cell</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
<!-- ./ Tables -->
|
|
|
|
<!-- Modal -->
|
|
<section id="modal">
|
|
<h2>Modal</h2>
|
|
<button class="contrast" data-target="modal-example" onclick="toggleModal(event)">
|
|
Launch demo modal
|
|
</button>
|
|
</section>
|
|
<!-- ./ Modal -->
|
|
|
|
<!-- Accordions -->
|
|
<section id="accordions">
|
|
<h2>Accordions</h2>
|
|
<details>
|
|
<summary>Accordion 1</summary>
|
|
<p>
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque urna diam,
|
|
tincidunt nec porta sed, auctor id velit. Etiam venenatis nisl ut orci consequat, vitae
|
|
tempus quam commodo. Nulla non mauris ipsum. Aliquam eu posuere orci. Nulla convallis
|
|
lectus rutrum quam hendrerit, in facilisis elit sollicitudin. Mauris pulvinar pulvinar
|
|
mi, dictum tristique elit auctor quis. Maecenas ac ipsum ultrices, porta turpis sit
|
|
amet, congue turpis.
|
|
</p>
|
|
</details>
|
|
<details open>
|
|
<summary>Accordion 2</summary>
|
|
<ul>
|
|
<li>Vestibulum id elit quis massa interdum sodales.</li>
|
|
<li>Nunc quis eros vel odio pretium tincidunt nec quis neque.</li>
|
|
<li>Quisque sed eros non eros ornare elementum.</li>
|
|
<li>Cras sed libero aliquet, porta dolor quis, dapibus ipsum.</li>
|
|
</ul>
|
|
</details>
|
|
</section>
|
|
<!-- ./ Accordions -->
|
|
|
|
<!-- Article-->
|
|
<article id="article">
|
|
<h2>Article</h2>
|
|
<p>
|
|
Nullam dui arcu, malesuada et sodales eu, efficitur vitae dolor. Sed ultricies dolor non
|
|
ante vulputate hendrerit. Vivamus sit amet suscipit sapien. Nulla iaculis eros a elit
|
|
pharetra egestas. Nunc placerat facilisis cursus. Sed vestibulum metus eget dolor pharetra
|
|
rutrum.
|
|
</p>
|
|
<footer>
|
|
<small>Duis nec elit placerat, suscipit nibh quis, finibus neque.</small>
|
|
</footer>
|
|
</article>
|
|
<article>
|
|
<header>Card Header</header>
|
|
Card Body
|
|
<footer>Card Footer</footer>
|
|
</article>
|
|
<!-- ./ Article-->
|
|
|
|
<!-- Group -->
|
|
<section id="group">
|
|
<h2>Group</h2>
|
|
<form>
|
|
<fieldset role="group">
|
|
<input name="email" type="email" placeholder="Enter your email" autocomplete="email" />
|
|
<input type="submit" value="Subscribe" />
|
|
</fieldset>
|
|
</form>
|
|
</section>
|
|
<!-- ./ Group -->
|
|
|
|
<!-- Progress -->
|
|
<section id="progress">
|
|
<h2>Progress bar</h2>
|
|
<progress id="progress-1" value="25" max="100"></progress>
|
|
<progress id="progress-2"></progress>
|
|
</section>
|
|
<!-- ./ Progress -->
|
|
|
|
<!-- Loading -->
|
|
<section id="loading">
|
|
<h2>Loading</h2>
|
|
<article aria-busy="true"></article>
|
|
<button aria-busy="true">Please wait…</button>
|
|
</section>
|
|
<!-- ./ Loading -->
|
|
</main>
|
|
<!-- ./ Main -->
|
|
|
|
<!-- Footer -->
|
|
<footer class="container">
|
|
<small>Built with <a href="https://picocss.com">Pico</a> •
|
|
<a href="https://github.com/picocss/examples/blob/master/v2-html/index.html">Source code</a></small>
|
|
</footer>
|
|
<!-- ./ Footer -->
|
|
|
|
<!-- Modal example -->
|
|
<dialog id="modal-example">
|
|
<article>
|
|
<header>
|
|
<button aria-label="Close" rel="prev" data-target="modal-example" onclick="toggleModal(event)"></button>
|
|
<h3>Confirm your action!</h3>
|
|
</header>
|
|
<p>
|
|
Cras sit amet maximus risus. Pellentesque sodales odio sit amet augue finibus
|
|
pellentesque. Nullam finibus risus non semper euismod.
|
|
</p>
|
|
<footer>
|
|
<button role="button" class="secondary" data-target="modal-example" onclick="toggleModal(event)">
|
|
Cancel</button><button autofocus data-target="modal-example" onclick="toggleModal(event)">
|
|
Confirm
|
|
</button>
|
|
</footer>
|
|
</article>
|
|
</dialog>
|
|
<!-- ./ Modal example -->
|
|
|
|
<!-- Minimal theme switcher -->
|
|
<script src="js/minimal-theme-switcher.js"></script>
|
|
|
|
<!-- Modal -->
|
|
<script src="js/modal.js"></script>
|
|
</body>
|
|
|
|
</html> |