From 9cac1c7bf46f0fee7392ec47ad445fe487bf6ef4 Mon Sep 17 00:00:00 2001
From: Joris
Date: Wed, 16 Apr 2025 09:20:45 +0200
Subject: Add interface to pick example to run
---
public/index.html | 1 +
public/main.css | 41 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+)
create mode 100644 public/main.css
(limited to 'public')
diff --git a/public/index.html b/public/index.html
index 2cb9f22..3775afa 100644
--- a/public/index.html
+++ b/public/index.html
@@ -2,5 +2,6 @@
Rx
+
diff --git a/public/main.css b/public/main.css
new file mode 100644
index 0000000..8a0da32
--- /dev/null
+++ b/public/main.css
@@ -0,0 +1,41 @@
+body {
+ margin: 0;
+ font-family: sans-serif;
+}
+
+header {
+ padding: 1rem;
+ background-color: #333;
+ color: white;
+}
+
+h1 {
+ margin: 0;
+}
+
+nav button {
+ margin-bottom: 0.5rem;
+ padding: 0.5rem;
+ width: 100%;
+ cursor: pointer;
+ border: none;
+ font-size: 1rem;
+}
+
+nav button.selected {
+ background-color: #833;
+ color: white;
+}
+
+main {
+ display: flex;
+}
+
+ul {
+ list-style-type: none;
+ padding: 0 1rem;
+}
+
+section {
+ margin: 1rem;
+}
--
cgit v1.2.3