diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2022-07-04 16:39:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-04 16:39:09 -0400 |
| commit | e165d79d699f1358fa6224eb964142fcc6c6013b (patch) | |
| tree | 0cec307e89852e98a3e2f187dbf714ce0b4b14d9 | |
| parent | c244c6e9abb58d8cb0f14e68d4335e4e6b140dd8 (diff) | |
| parent | ead9c68db86481e15cdb1504875ed6face948460 (diff) | |
Merge pull request #209 from alpheratz0/patch-1
fix h3 top margin
| -rw-r--r-- | content/_index.md | 2 | ||||
| -rw-r--r-- | static/style.css | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/content/_index.md b/content/_index.md index 41f6971..d47cc7b 100644 --- a/content/_index.md +++ b/content/_index.md @@ -22,7 +22,7 @@ This is the basic "course." Follow these quick tutorials and you'll have a fully {{< basic >}} </div> - +<br> </div> diff --git a/static/style.css b/static/style.css index cb6e6b9..24ce191 100644 --- a/static/style.css +++ b/static/style.css @@ -24,7 +24,6 @@ h2 { border-bottom: dashed #ddd 1px ; max-width: 500px ; margin: 1em auto ; - clear: both ; } h3 { @@ -310,6 +309,10 @@ aside.callout { float: right ; } +br { + clear: both; +} + #servicelist .title { font-size: xx-large ; background-color: rgba(3,3,3,0.6) ; |
