kloeckner.com.ar

a backup of my entire webpage
Index Commits Files Refs README LICENSE
commit 658123ae558e68f74e995461829758fdc03e150c
parent bbc1b71afa6ae4a1a82562a183d95ab69cb1e3ff
Author: mjkloeckner <martin.cachari@gmail.com>
Date:   Sat,  4 Feb 2023 20:18:25 -0300

updated git section style

Diffstat:
Mgit/style.css | 8+++++++-
Mscripts/build.sh | 2+-
Mscripts/deploy_local.sh | 2+-
3 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/git/style.css b/git/style.css
@@ -57,6 +57,7 @@ a.d, a.h, a.i, a.line {
 
 #last-commit {
     white-space: nowrap;
+    text-align: right;
 }
 
 #index,
@@ -106,6 +107,10 @@ a.d, a.h, a.i, a.line {
     border-radius: .5em;
 }
 
+#readme p {
+    line-height: 1.5
+}
+
 #readme-hr, #owner {
     display: none;
 }
@@ -337,7 +342,7 @@ pre a.h:hover, pre a.i:hover, pre a.d:hover {
 
 #readme code {
     font-family: "Ubuntu Mono", monospace;
-    background-color: rgba(110,118,129,0.4);
+    background-color: rgba(110,118,129,0.2);
     padding: .1em .4em;
     margin: 0;
     border-radius: 6px;
@@ -496,6 +501,7 @@ pre a.h:hover, pre a.i:hover, pre a.d:hover {
         padding-left: 0px;
         font-size: .85em;
         color: gray;
+        text-align: left;
     }
     #last-commit a {
         color: gray;
diff --git a/scripts/build.sh b/scripts/build.sh
@@ -4,7 +4,7 @@
 # Copies entire folder to blog folder, generates an html file
 # converting the markdown file *named the same as the subfolder*
 
-root_folder="$HOME/prg/kloeckner.com.ar"
+root_folder="$1"
 
 for i in $(ls $root_folder/md); do
     cp -ur "$root_folder"/md/$i "$root_folder"/blog/ >/dev/null 2>&1
diff --git a/scripts/deploy_local.sh b/scripts/deploy_local.sh
@@ -15,4 +15,4 @@ cp -rf "$root_folder" /var/www/html
 
 rm /var/www/html/README.md &>/dev/null 2>&1 ||:
 
-sv restart nginx
+systemctl restart nginx