diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-05-24 21:48:58 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-05-24 21:48:58 +0200 |
commit | 152fe90daa7b4c357d93fe9187b8275c979efdf0 (patch) | |
tree | 5fbab43a2603dfcbcb38d82b6dcbd0298ae1d744 | |
parent | 8cd5f89bba7d020151d162456e0f9d859c405d99 (diff) |
minor tweaks
-rw-r--r-- | index.html | 5 | ||||
-rw-r--r-- | makefile | 14 | ||||
-rw-r--r-- | pipeframe.png (renamed from img/pipeframe.png) | bin | 35723 -> 35723 bytes | |||
-rw-r--r-- | style.css | 7 |
4 files changed, 22 insertions, 4 deletions
@@ -13,7 +13,8 @@ <h1>Welcome to pipeframe.xyz</h1> <p style="text-align: center"> - <a target="_blank" href="https://github.com/lonkaars"><img alt="GitHub followers" src="https://img.shields.io/github/followers/lonkaars?style=social"></a> + <a target="_blank" href="https://github.com/lonkaars"><img class="shield" alt="GitHub followers" src="https://img.shields.io/github/followers/lonkaars?style=social"></a> + <img class="shield" alt="Uptime Robot ratio (30 days)" src="https://img.shields.io/uptimerobot/ratio/m788221897-5d991019935e5b6300223adf"> </p> <ul> @@ -26,7 +27,7 @@ <p align="center"> (the domain name comes from this bad boy)<br/> - <img src="img/pipeframe.png" alt="Mariokart 8 pipe frame kart"> + <img src="pipeframe.png" alt="Mariokart 8 pipe frame kart"> </p> </main> diff --git a/makefile b/makefile new file mode 100644 index 0000000..2a2a5fe --- /dev/null +++ b/makefile @@ -0,0 +1,14 @@ +WEBROOT = /srv/www/pipeframe.xyz + +FILES += index.html +FILES += style.css +FILES += pipeframe.png + +install: FORCE + cp -ar $(FILES) $(WEBROOT) + +uninstall: FORCE + $(RM) -r $(FILES:%=$(WEBROOT)/%) + +.PHONY: FORCE + diff --git a/img/pipeframe.png b/pipeframe.png Binary files differindex 6fbff58..6fbff58 100644 --- a/img/pipeframe.png +++ b/pipeframe.png @@ -2,6 +2,7 @@ body, html { margin: 0; padding: 0; + font-size: 10pt; font-family: "Inter", sans-serif; text-transform: lowercase; @@ -13,11 +14,13 @@ main { padding: 0 24px; } +img.shield { margin: 4px; } + h1 { text-align: center; } -p, ul { margin: 30px 0; } +p, ul { margin: 1em 0; } ul { line-height: 1.7; } -.fill { height: calc(100vh - 300px); } +.fill { height: calc(100vh - 275px); } |