-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (45 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
52 lines (45 loc) · 1.28 KB
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
<!DOCTYPE html>
<html lang="en-US" class="on-white">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CSS bullet formatting module</title>
<link rel="stylesheet" href="bullet.css">
<style>
:focus { outline-color: Black; }
:link, :visited { color: inherit }
.on-white { background: WhiteSmoke; color: Black }
.on-brand { background: PowderBlue; color: Black }
html { font: 1.125em/2 sans-serif }
.pad { padding: 1rem }
.natural { display: table }
.flow { margin: 0 0 1rem }
</style>
<a class="flow pad natural on-brand" href="https://github.com/ryanve/bullet.css">bullet.css</a>
<figure class="flow">
<figcaption><code>ul.bullet-disc</code></figcaption>
<ul class="flow bullet-disc">
<li>list-item
<li>list-item
</ul>
</figure>
<figure class="flow">
<figcaption><code>ul.bullet-circle</code></figcaption>
<ul class="flow bullet-circle">
<li>list-item
<li>list-item
</ul>
</figure>
<figure class="flow">
<figcaption><code>ul.bullet-square</code></figcaption>
<ul class="flow bullet-square">
<li>list-item
<li>list-item
</ul>
</figure>
<figure class="flow">
<figcaption><code>ul.bullet-none</code></figcaption>
<ul class="flow bullet-none">
<li>list-item
<li>list-item
</ul>
</figure>