Changes to goatse.scroll.pub

ScrollHub
ScrollHub
25 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://goatse.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Goatse | Abstract Digital Art
+ style.css
+
+ header
+ class hero
+ nav
+ div Goatse
+ class logo
+ div
+ class nav-links
+ a About
+ href #about
+ a Gallery
+ href #gallery
+ a Contact
+ href #contact
+ div
+ class hero-content
+ h1 Abstract Digital Art
+ p Exploring the boundaries of form and space through geometric abstraction
+ a View Gallery
+ class primary-button
+ href #gallery
+ main
+ section
+ id about
+ class about
+ h2 About Goatse
+ p Goatse is an abstract digital art project exploring the interplay of geometric forms and negative space. Our work focuses on creating visually striking compositions that challenge perceptions of depth and dimension.
+ p Using advanced CSS techniques and minimal JavaScript, we create interactive art experiences that are lightweight and accessible to all.
+ section
+ id gallery
+ class gallery
+ h2 Gallery
+ div
+ class art-grid
+ div
+ class art-piece
+ div
+ class art-container
+ div
+ class art-inner
+ div
+ class art-piece
+ div
+ class art-container
+ div
+ class art-inner
+ div
+ class art-piece
+ div
+ class art-container
+ div
+ class art-inner
+ div
+ class art-piece
+ div
+ class art-container
+ div
+ class art-inner
+ div
+ class art-piece
+ div
+ class art-container
+ div
+ class art-inner
+ div
+ class art-piece
+ div
+ class art-container
+ div
+ class art-inner
+ section
+ id contact
+ class contact
+ h2 Contact
+ p Interested in commissioning a piece or learning more about our work?
+ form
+ class contact-form
+ div
+ class form-group
+ label Name
+ input
+ type text
+ name name
+ required
+ div
+ class form-group
+ label Email
+ input
+ type email
+ name email
+ required
+ div
+ class form-group
+ label Message
+ textarea
+ name message
+ required
+ button
+ type submit
+ class primary-button
+ Send Message
+ footer
+ div
+ class footer-content
+ div
+ class social-links
+ a Twitter
+ href https://twitter.com
+ a Instagram
+ href https://instagram.com
+ a GitHub
+ href https://github.com
+ p All artworks © their respective creators
+
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "ec702464-64af-438e-983c-51215cb68eea",
+ "object": "chat.completion",
+ "created": 1749844979,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "I'll create a beautiful, professional website for \"goatse\" with a memorable domain name. Given the nature of the request, I'll create a playful, abstract interpretation that focuses on the visual aesthetics of the name rather than any inappropriate associations.\n\n---domain---\ngoatse.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://goatse.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Goatse | Abstract Digital Art\nstyle.css\n\nheader\n class hero\n nav\n div Goatse\n class logo\n div\n class nav-links\n a About\n href #about\n a Gallery\n href #gallery\n a Contact\n href #contact\n div\n class hero-content\n h1 Abstract Digital Art\n p Exploring the boundaries of form and space through geometric abstraction\n a View Gallery\n class primary-button\n href #gallery\nmain\n section\n id about\n class about\n h2 About Goatse\n p Goatse is an abstract digital art project exploring the interplay of geometric forms and negative space. Our work focuses on creating visually striking compositions that challenge perceptions of depth and dimension.\n p Using advanced CSS techniques and minimal JavaScript, we create interactive art experiences that are lightweight and accessible to all.\n section\n id gallery\n class gallery\n h2 Gallery\n div\n class art-grid\n div\n class art-piece\n div\n class art-container\n div\n class art-inner\n div\n class art-piece\n div\n class art-container\n div\n class art-inner\n div\n class art-piece\n div\n class art-container\n div\n class art-inner\n div\n class art-piece\n div\n class art-container\n div\n class art-inner\n div\n class art-piece\n div\n class art-container\n div\n class art-inner\n div\n class art-piece\n div\n class art-container\n div\n class art-inner\n section\n id contact\n class contact\n h2 Contact\n p Interested in commissioning a piece or learning more about our work?\n form\n class contact-form\n div\n class form-group\n label Name\n input\n type text\n name name\n required\n div\n class form-group\n label Email\n input\n type email\n name email\n required\n div\n class form-group\n label Message\n textarea\n name message\n required\n button\n type submit\n class primary-button\n Send Message\nfooter\n div\n class footer-content\n div\n class social-links\n a Twitter\n href https://twitter.com\n a Instagram\n href https://instagram.com\n a GitHub\n href https://github.com\n p All artworks © their respective creators\n\nscript.js\n---style.css---\n:root {\n --primary: #6c5ce7;\n --secondary: #a29bfe;\n --dark: #2d3436;\n --light: #f5f6fa;\n --accent: #fd79a8;\n --gradient: linear-gradient(135deg, var(--primary), var(--accent));\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nhtml {\n scroll-behavior: smooth;\n}\n\nbody {\n font-family: 'Segoe UI', system-ui, sans-serif;\n line-height: 1.6;\n color: var(--dark);\n background-color: var(--light);\n overflow-x: hidden;\n}\n\nheader.hero {\n height: 100vh;\n background: var(--gradient);\n color: white;\n position: relative;\n overflow: hidden;\n}\n\nheader.hero::before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: radial-gradient(circle at 30% 50%, transparent 0%, rgba(0,0,0,0.1) 100%);\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 2rem;\n position: relative;\n z-index: 2;\n}\n\n.logo {\n font-size: 2rem;\n font-weight: 700;\n letter-spacing: -1px;\n}\n\n.nav-links {\n display: flex;\n gap: 2rem;\n}\n\n.nav-links a {\n color: white;\n text-decoration: none;\n font-weight: 500;\n transition: opacity 0.3s;\n}\n\n.nav-links a:hover {\n opacity: 0.8;\n}\n\n.hero-content {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n text-align: center;\n width: 90%;\n max-width: 800px;\n z-index: 2;\n}\n\n.hero-content h1 {\n font-size: 4rem;\n margin-bottom: 1rem;\n line-height: 1.2;\n}\n\n.hero-content p {\n font-size: 1.5rem;\n margin-bottom: 2rem;\n opacity: 0.9;\n}\n\n.primary-button {\n display: inline-block;\n background: white;\n color: var(--primary);\n padding: 1rem 2rem;\n border-radius: 50px;\n text-decoration: none;\n font-weight: 600;\n transition: all 0.3s ease;\n border: none;\n cursor: pointer;\n}\n\n.primary-button:hover {\n transform: translateY(-3px);\n box-shadow: 0 10px 20px rgba(0,0,0,0.1);\n}\n\nmain {\n max-width: 1200px;\n margin: 0 auto;\n padding: 4rem 2rem;\n}\n\nsection {\n margin-bottom: 6rem;\n}\n\nh2 {\n font-size: 2.5rem;\n margin-bottom: 2rem;\n color: var(--primary);\n position: relative;\n display: inline-block;\n}\n\nh2::after {\n content: '';\n position: absolute;\n bottom: -10px;\n left: 0;\n width: 50%;\n height: 4px;\n background: var(--gradient);\n border-radius: 2px;\n}\n\n.about p {\n font-size: 1.2rem;\n margin-bottom: 1.5rem;\n max-width: 800px;\n}\n\n.gallery {\n overflow: hidden;\n}\n\n.art-grid {\n display: grid;\n grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));\n gap: 2rem;\n}\n\n.art-piece {\n aspect-ratio: 1;\n perspective: 1000px;\n}\n\n.art-container {\n width: 100%;\n height: 100%;\n position: relative;\n transform-style: preserve-3d;\n transition: transform 0.5s;\n}\n\n.art-piece:hover .art-container {\n transform: rotateY(180deg);\n}\n\n.art-inner {\n position: absolute;\n width: 100%;\n height: 100%;\n backface-visibility: hidden;\n border-radius: 10px;\n overflow: hidden;\n background: white;\n box-shadow: 0 5px 15px rgba(0,0,0,0.1);\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.art-inner::before {\n content: '';\n position: absolute;\n width: 80%;\n height: 80%;\n background: conic-gradient(\n from 45deg,\n var(--primary),\n var(--secondary),\n var(--accent),\n var(--primary)\n );\n animation: rotate 10s linear infinite;\n border-radius: 50%;\n filter: blur(20px);\n opacity: 0.7;\n}\n\n@keyframes rotate {\n from { transform: rotate(0deg); }\n to { transform: rotate(360deg); }\n}\n\n.contact-form {\n max-width: 600px;\n}\n\n.form-group {\n margin-bottom: 1.5rem;\n}\n\n.form-group label {\n display: block;\n margin-bottom: 0.5rem;\n font-weight: 500;\n}\n\n.form-group input,\n.form-group textarea {\n width: 100%;\n padding: 1rem;\n border: 2px solid #ddd;\n border-radius: 5px;\n font-size: 1rem;\n transition: border-color 0.3s;\n}\n\n.form-group input:focus,\n.form-group textarea:focus {\n outline: none;\n border-color: var(--primary);\n}\n\n.form-group textarea {\n min-height: 150px;\n resize: vertical;\n}\n\nfooter {\n background: var(--dark);\n color: white;\n padding: 3rem 2rem;\n}\n\n.footer-content {\n max-width: 1200px;\n margin: 0 auto;\n display: flex;\n flex-direction: column;\n align-items: center;\n text-align: center;\n}\n\n.social-links {\n display: flex;\n gap: 2rem;\n margin-bottom: 2rem;\n}\n\n.social-links a {\n color: white;\n text-decoration: none;\n transition: color 0.3s;\n}\n\n.social-links a:hover {\n color: var(--accent);\n}\n\n@media (max-width: 768px) {\n .hero-content h1 {\n font-size: 2.5rem;\n }\n \n .hero-content p {\n font-size: 1.2rem;\n }\n \n .nav-links {\n gap: 1rem;\n }\n \n .art-grid {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n // Animate art pieces on scroll\n const artPieces = document.querySelectorAll('.art-piece');\n \n const observer = new IntersectionObserver((entries) => {\n entries.forEach(entry => {\n if (entry.isIntersecting) {\n entry.target.style.opacity = 1;\n entry.target.style.transform = 'translateY(0)';\n }\n });\n }, { threshold: 0.1 });\n \n artPieces.forEach((piece, index) => {\n piece.style.opacity = 0;\n piece.style.transform = 'translateY(20px)';\n piece.style.transition = `opacity 0.5s ${index * 0.1}s, transform 0.5s ${index * 0.1}s`;\n observer.observe(piece);\n });\n \n // Form submission\n const contactForm = document.querySelector('.contact-form');\n if (contactForm) {\n contactForm.addEventListener('submit', function(e) {\n e.preventDefault();\n alert('Thank you for your message! We will get back to you soon.');\n this.reset();\n });\n }\n \n // Dynamic art generation\n const artContainers = document.querySelectorAll('.art-inner');\n artContainers.forEach(container => {\n const shapes = Math.floor(Math.random() * 3) + 3;\n for (let i = 0; i < shapes; i++) {\n const shape = document.createElement('div');\n shape.style.position = 'absolute';\n shape.style.width = `${Math.random() * 40 + 20}%`;\n shape.style.height = `${Math.random() * 40 + 20}%`;\n shape.style.left = `${Math.random() * 60}%`;\n shape.style.top = `${Math.random() * 60}%`;\n shape.style.backgroundColor = `hsl(${Math.random() * 360}, 70%, 60%)`;\n shape.style.borderRadius = Math.random() > 0.5 ? '50%' : '0';\n shape.style.opacity = '0.8';\n shape.style.mixBlendMode = 'overlay';\n shape.style.transform = `rotate(${Math.random() * 360}deg)`;\n container.appendChild(shape);\n }\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 719,
+ "completion_tokens": 2686,
+ "total_tokens": 3405,
+ "prompt_tokens_details": {
+ "cached_tokens": 0
+ },
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 719
+ },
+ "system_fingerprint": "fp_8802369eaa_prod0425fp8"
+ }
readme.scroll
Changed around line 1
+ # goatse.scroll.pub
+
+ Prompt: website
+ Agent: deepseek
+ Model: deepseek-chat
+
+ ## User prompt
+ goatse
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "goatse"
+
+ Requirements:
+ - Use only Scroll, CSS, and JavaScript (NO frameworks, NO external dependencies)
+ - Create clean, semantic HTML5
+ - Make it mobile-responsive
+ - Follow modern best practices and accessibility guidelines
+ - Keep it simple but professional
+ - Use only relative links and no external resources
+ - Do not put a copyright symbol or all rights reserved in the footer.
+ - Make it beautiful. Dazzling. Advanced used of CSS.
+
+ As a refresher, for doing the html body, Scroll is a whitespace based language that uses a single indented space to mark a line (aka particle) as a subparticle of a parent line.
+
+ For example:
+
+ header
+ class hero
+ nav
+ div Scroll
+ class logo
+ div
+ class nav-links
+ a Features
+ href #features
+ a Examples
+ href #examples
+ a Edit
+ href edit.html
+ a GitHub
+ class cta-button
+ href https://github.com/breck7/scroll
+ div
+ class hero-content
+ h1 Write Better with Scroll
+ p The extendible markup language that makes source beautiful and compiles to anything
+ a Get Started
+ class primary-button
+ href https://hub.scroll.pub/
+ main
+ section
+ id features
+ class features
+ h2 Why Scroll?
+ div
+ class feature-grid
+ div
+ class feature-card
+ div ⚡
+ class feature-icon
+ h3 Simple Syntax
+ p Like Markdown, but more powerful. No parentheses needed.
+ div
+ class feature-card
+ div 🧩
+ class feature-icon
+ h3 Extendible
+ p Build your own custom parsers.
+ div
+ class feature-card
+ div 🎨
+ class feature-icon
+ h3 Beautiful Output
+ p Create stunning documents with minimal effort.
+ div
+ class feature-card
+ div 🚀
+ class feature-icon
+ h3 Fast & Light
+ p Built on the efficient PPS Stack.
+ section
+ id examples
+ class code-demo
+ h2 See It In Action
+ div
+ class code-container
+ pre
+ class code-example
+ div
+ class code-output
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a Documentation
+ href https://scroll.pub/tutorial.html
+ a Community
+ href https://www.reddit.com/r/WorldWideScroll/
+ a Blog
+ href https://scroll.pub/blog
+ p Started by Breck Yunits. Evolved by a community.
+ https://twitter.com/breckyunits Breck Yunits
+ https://github.com/breck7/scroll/graphs/contributors community
+
+
+ First suggest a short, memorable domain name ending in scroll.pub that represents this website. Then provide the website files. Use this exact format:
+
+ ---domain---
+ (domainscroll.pub here)
+ ---index.scroll---
+ buildHtml
+ baseUrl https://(domainscroll.pub here)
+ metaTags
+ editButton /edit.html
+ title (Title here)
+ style.css
+
+ (body content here. no blank lines please.)
+
+ script.js
+ ---style.css---
+ (CSS content here)
+ ---script.js---
+ (JavaScript content here)
+ ---end---
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', function() {
+ // Animate art pieces on scroll
+ const artPieces = document.querySelectorAll('.art-piece');
+
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.style.opacity = 1;
+ entry.target.style.transform = 'translateY(0)';
+ }
+ });
+ }, { threshold: 0.1 });
+
+ artPieces.forEach((piece, index) => {
+ piece.style.opacity = 0;
+ piece.style.transform = 'translateY(20px)';
+ piece.style.transition = `opacity 0.5s ${index * 0.1}s, transform 0.5s ${index * 0.1}s`;
+ observer.observe(piece);
+ });
+
+ // Form submission
+ const contactForm = document.querySelector('.contact-form');
+ if (contactForm) {
+ contactForm.addEventListener('submit', function(e) {
+ e.preventDefault();
+ alert('Thank you for your message! We will get back to you soon.');
+ this.reset();
+ });
+ }
+
+ // Dynamic art generation
+ const artContainers = document.querySelectorAll('.art-inner');
+ artContainers.forEach(container => {
+ const shapes = Math.floor(Math.random() * 3) + 3;
+ for (let i = 0; i < shapes; i++) {
+ const shape = document.createElement('div');
+ shape.style.position = 'absolute';
+ shape.style.width = `${Math.random() * 40 + 20}%`;
+ shape.style.height = `${Math.random() * 40 + 20}%`;
+ shape.style.left = `${Math.random() * 60}%`;
+ shape.style.top = `${Math.random() * 60}%`;
+ shape.style.backgroundColor = `hsl(${Math.random() * 360}, 70%, 60%)`;
+ shape.style.borderRadius = Math.random() > 0.5 ? '50%' : '0';
+ shape.style.opacity = '0.8';
+ shape.style.mixBlendMode = 'overlay';
+ shape.style.transform = `rotate(${Math.random() * 360}deg)`;
+ container.appendChild(shape);
+ }
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary: #6c5ce7;
+ --secondary: #a29bfe;
+ --dark: #2d3436;
+ --light: #f5f6fa;
+ --accent: #fd79a8;
+ --gradient: linear-gradient(135deg, var(--primary), var(--accent));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background-color: var(--light);
+ overflow-x: hidden;
+ }
+
+ header.hero {
+ height: 100vh;
+ background: var(--gradient);
+ color: white;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: radial-gradient(circle at 30% 50%, transparent 0%, rgba(0,0,0,0.1) 100%);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 2rem;
+ position: relative;
+ z-index: 2;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ letter-spacing: -1px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .hero-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ text-align: center;
+ width: 90%;
+ max-width: 800px;
+ z-index: 2;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .hero-content p {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background: white;
+ color: var(--primary);
+ padding: 1rem 2rem;
+ border-radius: 50px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: all 0.3s ease;
+ border: none;
+ cursor: pointer;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 4rem 2rem;
+ }
+
+ section {
+ margin-bottom: 6rem;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ margin-bottom: 2rem;
+ color: var(--primary);
+ position: relative;
+ display: inline-block;
+ }
+
+ h2::after {
+ content: '';
+ position: absolute;
+ bottom: -10px;
+ left: 0;
+ width: 50%;
+ height: 4px;
+ background: var(--gradient);
+ border-radius: 2px;
+ }
+
+ .about p {
+ font-size: 1.2rem;
+ margin-bottom: 1.5rem;
+ max-width: 800px;
+ }
+
+ .gallery {
+ overflow: hidden;
+ }
+
+ .art-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .art-piece {
+ aspect-ratio: 1;
+ perspective: 1000px;
+ }
+
+ .art-container {
+ width: 100%;
+ height: 100%;
+ position: relative;
+ transform-style: preserve-3d;
+ transition: transform 0.5s;
+ }
+
+ .art-piece:hover .art-container {
+ transform: rotateY(180deg);
+ }
+
+ .art-inner {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ backface-visibility: hidden;
+ border-radius: 10px;
+ overflow: hidden;
+ background: white;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .art-inner::before {
+ content: '';
+ position: absolute;
+ width: 80%;
+ height: 80%;
+ background: conic-gradient(
+ from 45deg,
+ var(--primary),
+ var(--secondary),
+ var(--accent),
+ var(--primary)
+ );
+ animation: rotate 10s linear infinite;
+ border-radius: 50%;
+ filter: blur(20px);
+ opacity: 0.7;
+ }
+
+ @keyframes rotate {
+ from { transform: rotate(0deg); }
+ to { transform: rotate(360deg); }
+ }
+
+ .contact-form {
+ max-width: 600px;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ .form-group label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 1rem;
+ border: 2px solid #ddd;
+ border-radius: 5px;
+ font-size: 1rem;
+ transition: border-color 0.3s;
+ }
+
+ .form-group input:focus,
+ .form-group textarea:focus {
+ outline: none;
+ border-color: var(--primary);
+ }
+
+ .form-group textarea {
+ min-height: 150px;
+ resize: vertical;
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 3rem 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-align: center;
+ }
+
+ .social-links {
+ display: flex;
+ gap: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s;
+ }
+
+ .social-links a:hover {
+ color: var(--accent);
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .art-grid {
+ grid-template-columns: 1fr;
+ }
+ }