aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-03-11 11:07:08 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-03-11 11:07:08 +0100
commita968c75aecc23d295aac36b3e55a19e7dc76d6df (patch)
tree2965f9b1afb76f21b9ffac332b7ef737a9bac634
parentb9a96b7c49177b2af2da09fb5893509a83299460 (diff)
downloadmitjafelicijan.com-a968c75aecc23d295aac36b3e55a19e7dc76d6df.tar.gz
Update to post
-rw-r--r--content/posts/2021-06-26-simple-world-clock.md5
-rwxr-xr-xtemplates/base.html10
2 files changed, 9 insertions, 6 deletions
diff --git a/content/posts/2021-06-26-simple-world-clock.md b/content/posts/2021-06-26-simple-world-clock.md
index 767d870..c750a43 100644
--- a/content/posts/2021-06-26-simple-world-clock.md
+++ b/content/posts/2021-06-26-simple-world-clock.md
@@ -96,11 +96,6 @@ So, we end up with a result like this.
96 96
97![World Clock](/assets/posts/world-clock/world-clock.jpg) 97![World Clock](/assets/posts/world-clock/world-clock.jpg)
98 98
99And for the enclosure that can be 3D printed, but I haven't yet something like
100this can be used.
101
102<iframe id="vs_iframe" src="https://www.viewstl.com/?embedded&url=https%3A%2F%2Fmitjafelicijan.com%2Fposts%2Fworld-clock%2Fenclosure.stl&color=gray&bgcolor=white&edges=no&orientation=front&noborder=no" style="border:0;margin:0;width:100%;height:400px;"></iframe>
103
104You can download my [STL file for the enclosure 99You can download my [STL file for the enclosure
105here](/assets/posts/world-clock/enclosure.stl), but make sure that dimensions make 100here](/assets/posts/world-clock/enclosure.stl), but make sure that dimensions make
106sense and also opening for USB port should be added or just use a drill and some 101sense and also opening for USB port should be added or just use a drill and some
diff --git a/templates/base.html b/templates/base.html
index 2b300a6..bb899f6 100755
--- a/templates/base.html
+++ b/templates/base.html
@@ -120,7 +120,15 @@
120 } 120 }
121 121
122 pre { margin-block-start: 1em; margin-block-end: 1em; } 122 pre { margin-block-start: 1em; margin-block-end: 1em; }
123 table { width: 100%; border: 1px solid gainsboro; border-collapse: separate; border-spacing: 0; } 123
124 table {
125 width: 100%;
126 border: 1px solid gainsboro;
127 border-collapse: separate;
128 border-spacing: 0;
129 word-break: break-all;
130 }
131
124 table th { border-bottom: 1px solid gainsboro; background: #efefef; } 132 table th { border-bottom: 1px solid gainsboro; background: #efefef; }
125 table td, table th { padding: 0.3em 0.8em; text-align: left; } 133 table td, table th { padding: 0.3em 0.8em; text-align: left; }
126 134