Changes to graduateme.scroll.pub

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

Help Me Graduate

+

Your comprehensive guide to academic success and graduation

+
+
+
+
+

Our Services

+
+
+

Study Resources

+

Access curated materials for your courses

+
+
+

Time Management

+

Learn effective scheduling techniques

+
+
+

Exam Prep

+

Master test-taking strategies

+
+
+
+
+
+

Success Stories

+
+
"This website helped me organize my studies and graduate on time!"
+ - Sarah, Computer Science Graduate
+
+
+
+
+
+
+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://graduateme.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Help Me Graduate - Your Path to Success
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "320e3f96-e860-4096-a7d6-3c32228686e7",
+ "object": "chat.completion",
+ "created": 1735398203,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\ngraduateme.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://graduateme.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Help Me Graduate - Your Path to Success\nstyle.css\nbody.html\nscript.js\n---body.html---\n
\n
\n

Help Me Graduate

\n

Your comprehensive guide to academic success and graduation

\n Explore Services\n
\n
\n\n
\n

Our Services

\n
\n
\n

Study Resources

\n

Access curated materials for your courses

\n
\n
\n

Time Management

\n

Learn effective scheduling techniques

\n
\n
\n

Exam Prep

\n

Master test-taking strategies

\n
\n
\n
\n\n
\n

Success Stories

\n
\n
\"This website helped me organize my studies and graduate on time!\"
\n - Sarah, Computer Science Graduate\n
\n
\n\n\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #50e3c2;\n --text-color: #333;\n --background-color: #f5f5f5;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Segoe UI', sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\n.hero {\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n color: white;\n padding: 4rem 1rem;\n text-align: center;\n min-height: 60vh;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.hero-content h1 {\n font-size: 3rem;\n margin-bottom: 1rem;\n animation: fadeIn 1s ease-in;\n}\n\n.cta-button {\n display: inline-block;\n padding: 1rem 2rem;\n background: white;\n color: var(--primary-color);\n text-decoration: none;\n border-radius: 2rem;\n margin-top: 2rem;\n transition: transform 0.3s ease;\n}\n\n.cta-button:hover {\n transform: translateY(-3px);\n}\n\n.services-section {\n padding: 4rem 1rem;\n text-align: center;\n}\n\n.service-cards {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n}\n\n.card {\n background: white;\n padding: 2rem;\n border-radius: 1rem;\n box-shadow: 0 2px 10px rgba(0,0,0,0.1);\n transition: transform 0.3s ease;\n}\n\n.card:hover {\n transform: translateY(-5px);\n}\n\n.testimonial-section {\n background: var(--primary-color);\n color: white;\n padding: 4rem 1rem;\n text-align: center;\n}\n\n.testimonial blockquote {\n font-style: italic;\n margin: 1rem auto;\n max-width: 600px;\n}\n\nfooter {\n background: var(--text-color);\n color: white;\n padding: 2rem 1rem;\n text-align: center;\n}\n\nfooter nav {\n display: flex;\n justify-content: center;\n gap: 2rem;\n}\n\nfooter a {\n color: white;\n text-decoration: none;\n}\n\n@keyframes fadeIn {\n from {\n opacity: 0;\n transform: translateY(20px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n\n@media (max-width: 768px) {\n .hero-content h1 {\n font-size: 2rem;\n }\n \n .service-cards {\n grid-template-columns: 1fr;\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\n// Add animation to cards when they come into view\nconst cards = document.querySelectorAll('.card');\n\nconst observer = new IntersectionObserver(entries => {\n entries.forEach(entry => {\n if (entry.isIntersecting) {\n entry.target.classList.add('visible');\n observer.unobserve(entry.target);\n }\n });\n}, {\n threshold: 0.1\n});\n\ncards.forEach(card => {\n observer.observe(card);\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 241,
+ "completion_tokens": 1211,
+ "total_tokens": 1452,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 241
+ },
+ "system_fingerprint": "fp_f1afce2943"
+ }
readme.scroll
Changed around line 1
+ # graduateme.scroll.pub
+ Website generated by DeepSeek from prompt: 请帮我做一个网站 帮我毕业
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'
+ });
+ });
+ });
+
+ // Add animation to cards when they come into view
+ const cards = document.querySelectorAll('.card');
+
+ const observer = new IntersectionObserver(entries => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.classList.add('visible');
+ observer.unobserve(entry.target);
+ }
+ });
+ }, {
+ threshold: 0.1
+ });
+
+ cards.forEach(card => {
+ observer.observe(card);
+ });
style.css
Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --secondary-color: #50e3c2;
+ --text-color: #333;
+ --background-color: #f5f5f5;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 4rem 1rem;
+ text-align: center;
+ min-height: 60vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-in;
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: white;
+ color: var(--primary-color);
+ text-decoration: none;
+ border-radius: 2rem;
+ margin-top: 2rem;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-3px);
+ }
+
+ .services-section {
+ padding: 4rem 1rem;
+ text-align: center;
+ }
+
+ .service-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .card:hover {
+ transform: translateY(-5px);
+ }
+
+ .testimonial-section {
+ background: var(--primary-color);
+ color: white;
+ padding: 4rem 1rem;
+ text-align: center;
+ }
+
+ .testimonial blockquote {
+ font-style: italic;
+ margin: 1rem auto;
+ max-width: 600px;
+ }
+
+ footer {
+ background: var(--text-color);
+ color: white;
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ footer a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .service-cards {
+ grid-template-columns: 1fr;
+ }
+ }