Skip to content

Commit 73a42fd

Browse files
committed
Add logo to title header
1 parent 320b1d2 commit 73a42fd

File tree

3 files changed

+83
-2
lines changed

3 files changed

+83
-2
lines changed

bb.edn

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{:tasks
2-
{docstrings
2+
{:requires ([babashka.fs :as fs])
3+
docstrings
34
{:task (clojure "-M" "build.clj")}
5+
images
6+
{:task (fs/copy "logo.svg" "build/logo.svg")}
47
build
5-
{:depends [docstrings]
8+
{:depends [docstrings images]
69
:task (shell "asciidoctor -D build -b html5 index.adoc")}}}

docinfo.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<style>
2+
#header {
3+
background-image: url(logo.svg);
4+
background-repeat: no-repeat;
5+
background-size: 66px;
6+
background-position: 0px 46px;
7+
padding-left: 80px;
8+
}
29
.concise-index ul {
310
columns: 19em;
411
margin: 0;

logo.svg

Lines changed: 71 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)