Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zwbetz-gh/papercss-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachary Betz <zwbetz@gmail.com>2019-02-27 06:04:07 +0300
committerZachary Betz <zwbetz@gmail.com>2019-02-27 06:04:07 +0300
commit9134c0596ed4f0b0a6f2118d58123697dc4d17a7 (patch)
tree8bc6e716b3fefc3865edebcd76ee044db180cba8 /exampleSite
parent7ab6197b5742851d0a138abe5720d3ce768f7b54 (diff)
List font size, toc, anchor styles
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/content/post/papercss-shortcodes.md28
1 files changed, 18 insertions, 10 deletions
diff --git a/exampleSite/content/post/papercss-shortcodes.md b/exampleSite/content/post/papercss-shortcodes.md
index 3c785f9..2cc5885 100644
--- a/exampleSite/content/post/papercss-shortcodes.md
+++ b/exampleSite/content/post/papercss-shortcodes.md
@@ -4,9 +4,13 @@ date: 2019-02-26T13:50:01-06:00
tags: [shortcodes]
---
-## Border
+## border
```
+{{</* border */>}}
+Regular
+{{</* /border */>}}
+
{{</* border "dashed" */>}}
Dashed
{{</* /border */>}}
@@ -24,6 +28,10 @@ Dotted Thick
{{</* /border */>}}
```
+{{< border >}}
+Regular
+{{< /border >}}
+
{{< border "dashed" >}}
Dashed
{{< /border >}}
@@ -40,7 +48,7 @@ Dashed Thick
Dotted Thick
{{< /border >}}
-## Color
+## color
```
{{</* color "primary" */>}}
@@ -92,7 +100,7 @@ Text danger
Text muted
{{< /color >}}
-## Background
+## background
```
{{</* background "primary" */>}}
@@ -136,7 +144,7 @@ Background warning
Background danger
{{< /background >}}
-## Alert
+## alert
```
{{</* alert "primary" */>}}
@@ -180,18 +188,18 @@ Alert-warning
Alert-danger
{{< /alert >}}
-## Badge
+## badge
```
<h3>Example badge {{</* badge */>}}123{{</* /badge */>}}</h3>
-<h3>Example badge {{</* badge "secondary" >}}123{{</* /badge */>}}</h3>
+<h3>Example badge {{</* badge "secondary" */>}}123{{</* /badge */>}}</h3>
-<h3>Example badge {{</* badge "success" >}}123{{</* /badge */>}}</h3>
+<h3>Example badge {{</* badge "success" */>}}123{{</* /badge */>}}</h3>
-<h3>Example badge {{</* badge "warning" >}}123{{</* /badge */>}}</h3>
+<h3>Example badge {{</* badge "warning" */>}}123{{</* /badge */>}}</h3>
-<h3>Example badge {{</* badge "danger" >}}123{{</* /badge */>}}</h3>
+<h3>Example badge {{</* badge "danger" */>}}123{{</* /badge */>}}</h3>
```
<h3>Example badge {{< badge >}}123{{< /badge >}}</h3>
@@ -204,7 +212,7 @@ Alert-danger
<h3>Example badge {{< badge "danger" >}}123{{< /badge >}}</h3>
-## Card
+## card
```
TODO