commit 1057939d3fb631e1f89cabdca36080845c5827b9
Author: ffff:79.225.248.135 <ffff:79.225.248.135@hub.scroll.pub>
Date: 2024-12-28 17:06:26 +0000
Subject: updated gallery.css
diff --git a/gallery.css b/gallery.css
new file mode 100644
index 0000000..79da6a7
--- /dev/null
+++ b/gallery.css
@@ -0,0 +1,25 @@
+.gallery {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 20px;
+ justify-content: center;
+}
+
+.photo {
+ width: 300px;
+ height: 300px;
+ overflow: hidden;
+ border-radius: 8px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+}
+
+.photo img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+}
+
+.photo:hover {
+ transform: scale(1.05);
+}
commit dff06bb79bccf9d38d7042b088618f89cba78072
Author: Breck Yunits <breck7@gmail.com>
Date: 2024-11-10 10:09:24 -1000
Subject: initial gallery_template template
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..bd1a52d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+.DS_Store
+*.html
+*.txt
+*.xml
+*.css
+*.js
+*.csv
+requests.scroll
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..1090caa
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,9 @@
+buildHtml
+
+gallery.css
+theme dark
+div#theGal.gallery
+disk
+ where name includes jpg
+ compose tag <a href="{name}" class="photo"><img src="{name}"/></a>
+ printColumn tag
diff --git a/nytimesfrontpagescover.jpg b/nytimesfrontpagescover.jpg
new file mode 100644
index 0000000..b424ad6
Binary files /dev/null and b/nytimesfrontpagescover.jpg differ
diff --git a/postcard.jpg b/postcard.jpg
new file mode 100644
index 0000000..e15616d
Binary files /dev/null and b/postcard.jpg differ
diff --git a/spines.jpg b/spines.jpg
new file mode 100644
index 0000000..9f1c89e
Binary files /dev/null and b/spines.jpg differ