summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorhazel <hazel@hazelthats.me>2026-03-06 17:33:07 +0100
committerhazel <hazel@hazelthats.me>2026-03-06 17:33:07 +0100
commit1e852ac7d1d2b42ec80296d65a7e187499409fc2 (patch)
treebdebed69af8bd742f56508843899a91fa95da662 /public
parentb47c5ada9ffc59b8e1009533695ec90e11eb679d (diff)
downloadlpdu-site-1e852ac7d1d2b42ec80296d65a7e187499409fc2.tar.gz
lpdu-site-1e852ac7d1d2b42ec80296d65a7e187499409fc2.tar.bz2
lpdu-site-1e852ac7d1d2b42ec80296d65a7e187499409fc2.zip
start on styling
Signed-off-by: hazel <hazel@hazelthats.me>
Diffstat (limited to 'public')
-rw-r--r--public/fru-banner.pngbin0 -> 53693 bytes
-rw-r--r--public/fru-cheatsheet.pngbin0 -> 537844 bytes
-rw-r--r--public/global.css64
3 files changed, 64 insertions, 0 deletions
diff --git a/public/fru-banner.png b/public/fru-banner.png
new file mode 100644
index 0000000..aa97c53
--- /dev/null
+++ b/public/fru-banner.png
Binary files differ
diff --git a/public/fru-cheatsheet.png b/public/fru-cheatsheet.png
new file mode 100644
index 0000000..c755dec
--- /dev/null
+++ b/public/fru-cheatsheet.png
Binary files differ
diff --git a/public/global.css b/public/global.css
new file mode 100644
index 0000000..0c5ce91
--- /dev/null
+++ b/public/global.css
@@ -0,0 +1,64 @@
+body {
+ margin: 0;
+ font-family: sans;
+}
+
+header {
+ background: #171717;
+ color: #fff;
+ overflow: hidden;
+ padding: 0 1em;
+ display: flex;
+ align-items: center;
+ gap: 2em;
+ height: 4rem;
+}
+
+header h1 {
+ margin: 1rem 0;
+ line-height: 1;
+}
+
+header nav {
+ display: flex;
+ height: 4rem;
+ align-items: stretch;
+}
+
+header nav a {
+ display: block;
+ height: 100%;
+ padding: 0 1rem;
+ line-height: 4rem;
+ color: #fff;
+ text-decoration: none;
+}
+
+header nav a:hover {
+ background: #272727;
+}
+
+.banner {
+ text-align: center;
+ position: relative;
+ background-color: #333;
+ color: #fff;
+ overflow: hidden;
+ padding: 3em 0;
+}
+
+.banner .banner-background {
+ display: block;
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ inset: 0;
+ filter: blur(20px) brightness(50%);
+ object-fit: cover;
+}
+
+.banner .banner-title {
+ font-size: 3em;
+ position: relative;
+ z-index: 100;
+}