commit 382c15d8544ededf38176b59ca4881066f0769f5
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 14:48:14 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..90b10ae
--- /dev/null
+++ b/body.html
@@ -0,0 +1,22 @@
+<header>
+ <h1>Eye Learning Progress in Lund</h1>
+ <p>Tracking my journey to better vision and eye health.</p>
+</header>
+
+<main>
+ <section class="progress-section">
+ <div class="progress-container">
+ <div class="progress-bar" style="width: 69%;"></div>
+ </div>
+ <p class="progress-text">Current Progress: <span>69</span> out of 100</p>
+ </section>
+
+ <section class="description">
+ <h2>About My Eye Learning Journey</h2>
+ <p>Embarking on a journey to improve my vision and eye health through dedicated learning and practice. Each step brings me closer to my goal of achieving optimal eye health and visual clarity.</p>
+ </section>
+</main>
+
+<footer>
+ <p>Lund, Sweden</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..333007b
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://eyelearn.scroll.pub
+metaTags
+editButton /edit.html
+title Eye Learning Progress in Lund
+style.css
+body.html
+script.js
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..c5905f2
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# eyelearn.scroll.pub
+Website generated by DeepSeek from prompt: A website which shows the status of my eye learning in Lund. Progress should be 69 out of 100
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..254813c
--- /dev/null
+++ b/script.js
@@ -0,0 +1 @@
+// No JavaScript required for this simple static page
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..97d1ba1
--- /dev/null
+++ b/style.css
@@ -0,0 +1,100 @@
+body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ margin: 0;
+ padding: 0;
+ background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
+ color: #333;
+ line-height: 1.6;
+}
+
+header {
+ text-align: center;
+ padding: 2rem 1rem;
+ background: #4a90e2;
+ color: white;
+}
+
+header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+}
+
+header p {
+ margin: 0.5rem 0 0;
+ font-size: 1.2rem;
+}
+
+main {
+ padding: 2rem 1rem;
+ max-width: 800px;
+ margin: 0 auto;
+}
+
+.progress-section {
+ text-align: center;
+ margin-bottom: 2rem;
+}
+
+.progress-container {
+ width: 100%;
+ height: 20px;
+ background: #e0e0e0;
+ border-radius: 10px;
+ overflow: hidden;
+ margin: 1rem 0;
+}
+
+.progress-bar {
+ height: 100%;
+ background: #4a90e2;
+ border-radius: 10px;
+ transition: width 0.5s ease;
+}
+
+.progress-text {
+ font-size: 1.2rem;
+ font-weight: bold;
+}
+
+.progress-text span {
+ color: #4a90e2;
+}
+
+.description {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+}
+
+.description h2 {
+ margin-top: 0;
+ font-size: 1.8rem;
+ color: #4a90e2;
+}
+
+footer {
+ text-align: center;
+ padding: 1rem;
+ background: #4a90e2;
+ color: white;
+ margin-top: 2rem;
+}
+
+@media (max-width: 600px) {
+ header h1 {
+ font-size: 2rem;
+ }
+
+ header p {
+ font-size: 1rem;
+ }
+
+ .progress-text {
+ font-size: 1rem;
+ }
+
+ .description h2 {
+ font-size: 1.5rem;
+ }
+}
\ No newline at end of file