forked from picocss/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (67 loc) · 2.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Pico.css examples</title>
<meta name="description" content="Minimalist templates to discover Pico in action. Built with Pico CSS.">
<link rel="shortcut icon" href="https://picocss.com/favicon.ico">
<link rel="canonical" href="https://picocss.com/#examples">
<!-- Pico.css (Classless version) -->
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css">
<!-- Custom styles -->
<style>
ul li {
margin-bottom: var(--typography-spacing-vertical);
}
</style>
</head>
<body>
<!-- Header -->
<header>
<hgroup>
<h1>Pico.css examples</h1>
<h2>Minimalist templates to discover Pico in action</h2>
</hgroup>
</header><!-- ./ Header -->
<!-- Main -->
<main>
<ul>
<li>
<strong><a href="preview/">Preview</a></strong><br>
A starter example with all elements and components used in Pico
</li>
<li>
<strong><a href="preview-rtl/">Right-to-left (RTL) preview</a></strong><br>
A starter example in Arabic with all the elements and components used in Pico
</li>
<li>
<strong><a href="classless/">Class-less</a></strong><br>
Just a pure semantic HTML markup, without <code>.classes</code>
</li>
<li>
<strong><a href="basic-template/">Basic template</a></strong><br>
A basic custom template for Pico using only CSS custom properties (variables)
</li>
<li>
<strong><a href="company/">Company</a></strong><br>
A classic company or blog layout with a sidebar
</li>
<li>
<strong><a href="google-amp/">Google Amp</a></strong><br>
A simple layout for Google Amp, with inlined CSS
<li>
<strong><a href="sign-in/">Sign in</a></strong><br>
A minimalist layout for Login pages
</li>
<li>
<strong><a href="bootstrap-grid/">Pico + Bootstrap grid system</a></strong><br>
Custom CSS build with the Bootstrap grid system to manage complex grid layouts in Pico
</li>
</ul>
</main><!-- ./ Main -->
<!-- Footer -->
<footer>
<small>Built with <a href="https://picocss.com">Pico</a> • <a href="https://github.com/picocss/examples/">Source code</a></small>
</footer><!-- ./ Footer -->
</body>
</html>