Changes to daniel-eyes.scroll.pub

root
root
25 days ago
Initial commit
body.html
Changed around line 1
+
+

Dr. Daníel Alexanderssons

+

Eye Doctor | Lund, Sweden

+
+
+
+
+

About Me

+

Hello! I'm Daníel Alexanderssons, a dedicated eye doctor based in Lund, Sweden. With a passion for improving vision and eye health, I strive to provide the best care for my patients.

+
+
+
+

Eye Doctor Learning Status

+
+
+
+

Loading progress...

+
+
+
+

Contact

+

If you'd like to get in touch, please email me at daniel@example.com.

+
+
+
+
+

Thank you for visiting my website.

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://daniel-eyes.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Dr. Daníel Alexanderssons - Eye Doctor in Lund
+ style.css
+ body.html
+ script.js
readme.scroll
Changed around line 1
+ # daniel-eyes.scroll.pub
+ Website generated by DeepSeek from prompt: I want a personal website about me, Daníel Alexanderssons, A Doctor at Lund. I want to see the status of my eye doctor learning
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', function () {
+ const progressBar = document.getElementById('progress-bar');
+ const progressText = document.getElementById('progress-text');
+
+ // Simulate loading progress
+ let progress = 0;
+ const interval = setInterval(() => {
+ progress += 10;
+ progressBar.style.width = `${progress}%`;
+ progressText.textContent = `Learning Progress: ${progress}%`;
+
+ if (progress >= 100) {
+ clearInterval(interval);
+ progressText.textContent = 'Learning Complete!';
+ }
+ }, 500);
+ });
style.css
Changed around line 1
+ :root {
+ --primary-color: #0077b6;
+ --secondary-color: #00b4d8;
+ --background-color: #f0f4f8;
+ --text-color: #333;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ header {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ header p {
+ margin: 0.5rem 0 0;
+ font-size: 1.2rem;
+ }
+
+ main {
+ padding: 2rem;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ section {
+ margin-bottom: 2rem;
+ }
+
+ h2 {
+ color: var(--primary-color);
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .progress-container {
+ background-color: #e0e0e0;
+ border-radius: 10px;
+ overflow: hidden;
+ height: 20px;
+ margin-bottom: 1rem;
+ }
+
+ .progress-bar {
+ background-color: var(--secondary-color);
+ height: 100%;
+ width: 0;
+ transition: width 0.5s ease-in-out;
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background-color: var(--primary-color);
+ color: white;
+ margin-top: 2rem;
+ }
+
+ a {
+ color: var(--secondary-color);
+ text-decoration: none;
+ }
+
+ a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 600px) {
+ header h1 {
+ font-size: 2rem;
+ }
+
+ header p {
+ font-size: 1rem;
+ }
+
+ h2 {
+ font-size: 1.5rem;
+ }
+
+ main {
+ padding: 1rem;
+ }
+ }