aboutsummaryrefslogtreecommitdiff
path: root/src/blog.node5.net/static/folder.css
diff options
context:
space:
mode:
authoruser@node5.net <user@node5.net>2026-06-15 21:24:56 +0200
committeruser@node5.net <user@node5.net>2026-06-15 21:24:56 +0200
commit38b8178cce160b3d2e6c8b3256c7655f4d0a27cd (patch)
treeee232c74e786890a4d2bad8b1d89e2b5a5e2c6e6 /src/blog.node5.net/static/folder.css
parent693525e6444a74980ddfffb32ffe561c53dfcc24 (diff)
internalize needed files for starting the program
Diffstat (limited to 'src/blog.node5.net/static/folder.css')
-rw-r--r--src/blog.node5.net/static/folder.css54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/blog.node5.net/static/folder.css b/src/blog.node5.net/static/folder.css
new file mode 100644
index 0000000..e72f886
--- /dev/null
+++ b/src/blog.node5.net/static/folder.css
@@ -0,0 +1,54 @@
+.entry {
+ display: flex;
+ flex-wrap: wrap; /* Allow title to flow to next line, in case of space constraints */
+}
+
+.entry > a {
+ text-decoration: none;
+ width: fix-content;
+}
+
+.entry-text {
+ display: flex;
+ margin-left: 1em;
+ max-width: 70%;
+}
+
+.description {
+ color: white;
+}
+
+ol {
+ padding: 0;
+}
+
+.entry img {
+ font-size: 4em;
+ width: 200px;
+ float: left;
+ text-align: center;
+ color: #fff7; /* Alt text document for no image less bright */
+}
+
+.entries > hr {
+ margin: 2em 0;
+ opacity: 0.06;
+}
+
+/* Leave margin to HR for consistent spacing */
+h4 {
+ margin: 0;
+}
+h4 > p {
+ margin-bottom: 0;
+}
+
+@media screen and (max-width: 50rem) {
+ .entry > * {
+ width: 100%;
+ }
+ .entry > a > img {
+ width: 100%;
+ margin-bottom: 0.5em;
+ }
+}