Changes to alexis.scroll.pub

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

    About Me

    +

    Welcome to my personal website! I'm Alexis, a passionate web developer with a love for creating beautiful, functional websites. Here, you'll find information about my skills, projects, and thoughts on web development.

    +
    +
    +
    +

    Contact

    +

    Feel free to reach out to me for any inquiries or collaborations. You can email me at alexis@example.com or connect with me on social media.

    +
    +
    +
    +

    Blog

    +

    Check out my latest blog posts where I share insights, tutorials, and updates on my projects. Stay tuned for new content!

    +
    +
    +
    +

    Resume

    +

    Download my resume to learn more about my professional experience and skills. Download Resume

    +
    +
    +
    +
    +

    Thank you for visiting my website. I hope you found it informative and inspiring.

    +
    index.scroll
    Changed around line 1
    + buildHtml
    + baseUrl https://alexis.scroll.pub
    + metaTags
    + editButton /edit.html
    + title Alexis - Personal Website
    + style.css
    + body.html
    + script.js
    prompt.json
    Changed around line 1
    + {
    + "id": "35ce9705-6405-4a8b-a963-455c7d8030fb",
    + "object": "chat.completion",
    + "created": 1735340602,
    + "model": "deepseek-chat",
    + "choices": [
    + {
    + "index": 0,
    + "message": {
    + "role": "assistant",
    + "content": "---domain---\nalexis.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://alexis.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Alexis - Personal Website\nstyle.css\nbody.html\nscript.js\n---body.html---\n
    \n \n
    \n\n
    \n
    \n

    About Me

    \n

    Welcome to my personal website! I'm Alexis, a passionate web developer with a love for creating beautiful, functional websites. Here, you'll find information about my skills, projects, and thoughts on web development.

    \n
    \n\n
    \n

    Contact

    \n

    Feel free to reach out to me for any inquiries or collaborations. You can email me at alexis@example.com or connect with me on social media.

    \n
    \n\n
    \n

    Blog

    \n

    Check out my latest blog posts where I share insights, tutorials, and updates on my projects. Stay tuned for new content!

    \n
    \n\n
    \n

    Resume

    \n

    Download my resume to learn more about my professional experience and skills. Download Resume

    \n
    \n
    \n\n
    \n

    Thank you for visiting my website. I hope you found it informative and inspiring.

    \n
    \n---style.css---\n:root {\n --primary-color: #3498db;\n --secondary-color: #2ecc71;\n --background-color: #f4f4f4;\n --text-color: #333;\n --font-family: 'Arial', sans-serif;\n}\n\nbody {\n font-family: var(--font-family);\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n line-height: 1.6;\n}\n\n.top-bar {\n background-color: var(--primary-color);\n padding: 1rem;\n text-align: center;\n}\n\n.top-bar nav ul {\n list-style: none;\n padding: 0;\n margin: 0;\n display: flex;\n justify-content: center;\n}\n\n.top-bar nav ul li {\n margin: 0 1rem;\n}\n\n.top-bar nav ul li a {\n color: white;\n text-decoration: none;\n font-weight: bold;\n transition: color 0.3s ease;\n}\n\n.top-bar nav ul li a:hover {\n color: var(--secondary-color);\n}\n\n.section {\n padding: 2rem;\n margin: 1rem 0;\n background-color: white;\n border-radius: 8px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\nh1 {\n color: var(--primary-color);\n margin-bottom: 1rem;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background-color: var(--primary-color);\n color: white;\n margin-top: 2rem;\n}\n\n@media (max-width: 768px) {\n .top-bar nav ul {\n flex-direction: column;\n }\n\n .top-bar nav ul li {\n margin: 0.5rem 0;\n }\n\n .section {\n padding: 1rem;\n }\n}\n---script.js---\n// Smooth scrolling for anchor links\ndocument.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function (e) {\n e.preventDefault();\n document.querySelector(this.getAttribute('href')).scrollIntoView({\n behavior: 'smooth'\n });\n });\n});\n---end---"
    + },
    + "logprobs": null,
    + "finish_reason": "stop"
    + }
    + ],
    + "usage": {
    + "prompt_tokens": 256,
    + "completion_tokens": 941,
    + "total_tokens": 1197,
    + "prompt_cache_hit_tokens": 0,
    + "prompt_cache_miss_tokens": 256
    + },
    + "system_fingerprint": "fp_f1afce2943"
    + }
    readme.scroll
    Changed around line 1
    + # alexis.scroll.pub
    + Website generated by DeepSeek from prompt: I want to create a personal website with a top bar that has pages for about, contact, blog and resume
    script.js
    Changed around line 1
    + // Smooth scrolling for anchor links
    + document.querySelectorAll('a[href^="#"]').forEach(anchor => {
    + anchor.addEventListener('click', function (e) {
    + e.preventDefault();
    + document.querySelector(this.getAttribute('href')).scrollIntoView({
    + behavior: 'smooth'
    + });
    + });
    + });
    style.css
    Changed around line 1
    + :root {
    + --primary-color: #3498db;
    + --secondary-color: #2ecc71;
    + --background-color: #f4f4f4;
    + --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;
    + }
    +
    + .top-bar {
    + background-color: var(--primary-color);
    + padding: 1rem;
    + text-align: center;
    + }
    +
    + .top-bar nav ul {
    + list-style: none;
    + padding: 0;
    + margin: 0;
    + display: flex;
    + justify-content: center;
    + }
    +
    + .top-bar nav ul li {
    + margin: 0 1rem;
    + }
    +
    + .top-bar nav ul li a {
    + color: white;
    + text-decoration: none;
    + font-weight: bold;
    + transition: color 0.3s ease;
    + }
    +
    + .top-bar nav ul li a:hover {
    + color: var(--secondary-color);
    + }
    +
    + .section {
    + padding: 2rem;
    + margin: 1rem 0;
    + background-color: white;
    + border-radius: 8px;
    + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    + }
    +
    + h1 {
    + color: var(--primary-color);
    + margin-bottom: 1rem;
    + }
    +
    + footer {
    + text-align: center;
    + padding: 1rem;
    + background-color: var(--primary-color);
    + color: white;
    + margin-top: 2rem;
    + }
    +
    + @media (max-width: 768px) {
    + .top-bar nav ul {
    + flex-direction: column;
    + }
    +
    + .top-bar nav ul li {
    + margin: 0.5rem 0;
    + }
    +
    + .section {
    + padding: 1rem;
    + }
    + }