diff options
| author | Yuval Adam <_@yuv.al> | 2022-11-07 10:53:02 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2022-11-07 10:53:02 +0200 |
| commit | 8a3b8bc7aea534e0f68831ebee6915a1321f303d (patch) | |
| tree | 7c5d6fb46d40234db3efd72dc6e8d60497f983f1 | |
| parent | 5e4a4249b4490fffe677aa2cf6c7b2915ff8c55b (diff) | |
Add minimal h1 shadow
| -rw-r--r-- | static/base.css | 3 | ||||
| -rw-r--r-- | templates/index.html | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/static/base.css b/static/base.css index e69de29..668207a 100644 --- a/static/base.css +++ b/static/base.css @@ -0,0 +1,3 @@ +h1.shadow { + text-shadow: 3px 3px 3px #ccc; +} diff --git a/templates/index.html b/templates/index.html index be0619c..aa366de 100644 --- a/templates/index.html +++ b/templates/index.html @@ -21,11 +21,11 @@ </head> <body class="mw7-ns ph3 center sans-serif"> - <h1 class="mt5-ns f1 center code">Doma<span class="silver">.</span>in Na<span class="silver">.</span>me Ha<span - class="silver">.</span>ck Cl<span class="silver">.</span>ub</h1> + <h1 class="mt5-ns f1 center code shadow">Doma<span class="silver">.</span>in Na<span class="silver">.</span>me + Ha<span class="silver">.</span>ck Cl<span class="silver">.</span>ub</h1> <p class="lh-copy">An exclusive club of nerds that own the <a href="https://en.wikipedia.org/wiki/Domain_hack" - class="link dim dark-pink">domain hack</a> to their name, and serve their personal homepage from it. Are you one of us? <a href="https://github.com/yuvadm/namehack.club" - class="link dim dark-pink">Join the club.</a></p> + class="link dim dark-pink">domain hack</a> to their name, and serve their personal homepage from it. Are you one + of us? <a href="https://github.com/yuvadm/namehack.club" class="link dim dark-pink">Join the club.</a></p> <ul class="list pl0 pv4"> {% for name in names %} |
