diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | partials/footer.html | 2 | ||||
-rw-r--r-- | resources/glider-medium.png | bin | 0 -> 1197 bytes | |||
-rw-r--r-- | resources/glider-small.png | bin | 408 -> 0 bytes | |||
-rw-r--r-- | src/style.css | 4 |
5 files changed, 3 insertions, 5 deletions
@@ -1,6 +1,6 @@ HTML := journal.html about.html CSS := style.css -RESOURCES := glider.png glider-small.png +RESOURCES := glider.png glider-medium.png PARTIALS := $(addprefix partials/, meta.html nav.html footer.html) diff --git a/partials/footer.html b/partials/footer.html index 33a4998..d5f4556 100644 --- a/partials/footer.html +++ b/partials/footer.html @@ -13,6 +13,6 @@ </p> <a id="emblem" href='http://www.catb.org/hacker-emblem/'> - <img src='resources/glider.png' alt='hacker emblem' /> + <img src='resources/glider-medium.png' alt='hacker emblem' /> </a> </footer> diff --git a/resources/glider-medium.png b/resources/glider-medium.png Binary files differnew file mode 100644 index 0000000..cf4978d --- /dev/null +++ b/resources/glider-medium.png diff --git a/resources/glider-small.png b/resources/glider-small.png Binary files differdeleted file mode 100644 index 3db4379..0000000 --- a/resources/glider-small.png +++ /dev/null diff --git a/src/style.css b/src/style.css index 1564af5..bc0488d 100644 --- a/src/style.css +++ b/src/style.css @@ -130,8 +130,6 @@ footer a { } footer #emblem { flex: 1; - flex-basis: 55px; + flex-basis: 40px; flex-grow: 0; - margin-top: 0.2rem; - margin-bottom: 0.6rem; } |