]> git.dujemihanovic.xyz Git - dujemihanovic.xyz.git/commitdiff
Remove all use of CSS flexbox
authorDuje Mihanović <duje.mihanovic@skole.hr>
Thu, 17 Aug 2023 18:39:39 +0000 (20:39 +0200)
committerDuje Mihanović <duje.mihanovic@skole.hr>
Thu, 17 Aug 2023 18:39:39 +0000 (20:39 +0200)
The main motivation for this is to improve compatibility with older
browsers.

assets/css/style.css
layouts/_default/baseof.html
layouts/posts/single.html

index 93c57d68b224e67580c103d2a3a0de8c20241f8b..e2c5e0f03d30493bdcaa2857adca3976bd67ae7f 100644 (file)
@@ -28,7 +28,7 @@ nav li {
 }
 
 p {
-       margin: 8px 0;
+       margin: 12px 0;
 }
 
 ul {
@@ -39,18 +39,9 @@ ul {
 main {
        max-width: 1000px;
        margin: 0 auto;
-       display: flex;
-       flex-direction: column;
-       align-items: center;
        text-align: justify;
 }
 
 h1 {
        text-align: center;
 }
-
-footer {
-       display: flex;
-       flex-direction: column;
-       align-items: center;
-}
index a32c2f436445f52bd0ca16919a3ffb303fbb1977..4d53567ec71b94b5d4625d4d57d56b4a5c6743ae 100644 (file)
@@ -16,6 +16,7 @@
                </main>
                <br>
                <footer>
+                       <center>
                        <p>If you appreciate my work and would like to donate, you can donate XMR to this address or use the QR code below.</p>
                        <code>85qXBHh99bJ62p7s8upmoqYsvHrJvZWLTD7riHFo3E2jRvdQRoiNuXKRaDMAQiJ34Kfix3KHouNCW6bbD4zniWB5QxZR9Xx</code>
                        <p></p>
@@ -28,6 +29,7 @@
                        <!-- See comment above. -->
                        <a href="{{ $.Site.BaseURL }}posts/index.xml"><img src="{{ $image.RelPermalink }}" width="32px" height="32px" alt="Link to RSS feed"></a>
                        <p>This site is <a href="https://git.dujemihanovic.xyz/duje/dujemihanovic.xyz">free software</a>
+                       </center>
                </footer>
        </body>
 </html>
index 7cdb7f1718657a420cce936c66401668e81a4214..ccebea4b5f920880ace79fbf44adda33e9c16b58 100644 (file)
@@ -1,8 +1,10 @@
 {{ define "main" }}
  <h1>{{ .Title }}</h1>
- <i>{{ .WordCount }} words, estimated reading time: {{ .ReadingTime }} minute(s)</i>
- <i>Originally published on {{ .PublishDate.Format "January 2, 2006" }}</i>
- <i>Last modified on {{ .Lastmod.Format "January 2, 2006" }}</i>
+ <p><i>{{ .WordCount }} words, estimated reading time: {{ .ReadingTime }}
+        minute(s)</i></p>
+ <p><i>Originally published on {{ .PublishDate.Format "January 2, 2006"
+        }}</i></p>
+ <p><i>Last modified on {{ .Lastmod.Format "January 2, 2006" }}</i></p>
  <p></p>
  {{ .Content }}
 {{ end }}