Changes to cowork.scroll.pub

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

Welcome to Our Coworking Space

+

Your next big idea starts here. Apply now to join our vibrant community of innovators and creators.

+
+
+
+
+
+

Apply to Join

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Why Choose Us?

+
+
+

Collaborative Environment

+

Work alongside like-minded individuals and grow together.

+
+
+

Flexible Plans

+

Choose from daily, weekly, or monthly memberships.

+
+
+

Modern Amenities

+

High-speed internet, meeting rooms, and more.

+
+
+
+
+
+
+

Questions? Reach out to us at info@cowork.scroll.pub

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://cowork.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Join Our Coworking Space
+ style.css
+ body.html
+ script.js
readme.scroll
Changed around line 1
+ # cowork.scroll.pub
+ Website generated by DeepSeek from prompt: I want a website that people who intend to join our coworking space can apply using. Be creative
script.js
Changed around line 1
+ document.getElementById('applicationForm').addEventListener('submit', function(event) {
+ event.preventDefault();
+ alert('Thank you for your application! We will get back to you soon.');
+ this.reset();
+ });
style.css
Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background-color: #f4f4f4;
+ color: #333;
+ }
+
+ header {
+ background: linear-gradient(135deg, #6a11cb, #2575fc);
+ color: white;
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ .header-content h1 {
+ font-size: 2.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .header-content p {
+ font-size: 1.2rem;
+ }
+
+ main {
+ padding: 2rem 1rem;
+ }
+
+ .application-form {
+ max-width: 600px;
+ margin: 0 auto;
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .application-form h2 {
+ margin-bottom: 1.5rem;
+ font-size: 2rem;
+ color: #333;
+ }
+
+ .application-form label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: bold;
+ }
+
+ .application-form input,
+ .application-form textarea {
+ width: 100%;
+ padding: 0.75rem;
+ margin-bottom: 1rem;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ font-size: 1rem;
+ }
+
+ .application-form button {
+ background: #2575fc;
+ color: white;
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 4px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .application-form button:hover {
+ background: #1a5bbf;
+ }
+
+ .features {
+ margin-top: 3rem;
+ text-align: center;
+ }
+
+ .features h2 {
+ font-size: 2rem;
+ margin-bottom: 1.5rem;
+ color: #333;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .feature {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature h3 {
+ font-size: 1.5rem;
+ margin-bottom: 0.75rem;
+ color: #2575fc;
+ }
+
+ .feature p {
+ font-size: 1rem;
+ color: #555;
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: #333;
+ color: white;
+ margin-top: 2rem;
+ }
+
+ footer a {
+ color: #2575fc;
+ text-decoration: none;
+ }
+
+ footer a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 768px) {
+ .header-content h1 {
+ font-size: 2rem;
+ }
+
+ .header-content p {
+ font-size: 1rem;
+ }
+
+ .application-form {
+ padding: 1rem;
+ }
+
+ .features h2 {
+ font-size: 1.75rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }