From 2602134143b9b3891d564c682457308f6eb9d20e Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Mon, 1 Mar 2021 05:29:50 -0700 Subject: Fix blog and static images blog directory issue with rsync --- static/css/dark.css | 8 ++++++++ static/css/general_style.css | 8 +++++++- static/css/light.css | 8 ++++++++ static/images/b/notes/sql/erd_example.png | Bin 0 -> 193168 bytes static/images/b/notes/sql/erd_example_wikipedia.png | Bin 0 -> 320120 bytes static/images/b/notes/sql/img_fulljoin.gif | Bin 0 -> 8135 bytes static/images/b/notes/sql/img_innerjoin.gif | Bin 0 -> 6871 bytes static/images/b/notes/sql/img_leftjoin.gif | Bin 0 -> 7286 bytes static/images/b/notes/sql/img_rightjoin.gif | Bin 0 -> 7477 bytes static/images/blog/notes/sql/erd_example.png | Bin 193168 -> 0 bytes static/images/blog/notes/sql/erd_example_wikipedia.png | Bin 320120 -> 0 bytes static/images/blog/notes/sql/img_fulljoin.gif | Bin 8135 -> 0 bytes static/images/blog/notes/sql/img_innerjoin.gif | Bin 6871 -> 0 bytes static/images/blog/notes/sql/img_leftjoin.gif | Bin 7286 -> 0 bytes static/images/blog/notes/sql/img_rightjoin.gif | Bin 7477 -> 0 bytes 15 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 static/images/b/notes/sql/erd_example.png create mode 100644 static/images/b/notes/sql/erd_example_wikipedia.png create mode 100644 static/images/b/notes/sql/img_fulljoin.gif create mode 100644 static/images/b/notes/sql/img_innerjoin.gif create mode 100644 static/images/b/notes/sql/img_leftjoin.gif create mode 100644 static/images/b/notes/sql/img_rightjoin.gif delete mode 100644 static/images/blog/notes/sql/erd_example.png delete mode 100644 static/images/blog/notes/sql/erd_example_wikipedia.png delete mode 100644 static/images/blog/notes/sql/img_fulljoin.gif delete mode 100644 static/images/blog/notes/sql/img_innerjoin.gif delete mode 100644 static/images/blog/notes/sql/img_leftjoin.gif delete mode 100644 static/images/blog/notes/sql/img_rightjoin.gif (limited to 'static') diff --git a/static/css/dark.css b/static/css/dark.css index 13a3ea3..2f43bcc 100644 --- a/static/css/dark.css +++ b/static/css/dark.css @@ -58,6 +58,14 @@ h3 { color: var(--fg-acc3); } +h4 { + color: var(--fg-acc4); +} + +h5 { + color: var(--fg-acc5); +} + /* switch */ .slider { background-color: var(--switch-bg); diff --git a/static/css/general_style.css b/static/css/general_style.css index a4e032e..60a8f7e 100644 --- a/static/css/general_style.css +++ b/static/css/general_style.css @@ -10,7 +10,8 @@ body { margin-left: auto; margin-right: auto; padding: 0.5em; - text-align: center; + text-align: justify; + text-justify: inter-word; } a{ @@ -146,6 +147,11 @@ footer { text-align: center; } +/* images */ +img { + max-width: 35vw; +} + /* image gallery (not really being used rn) */ div.gallery { margin: 5px; diff --git a/static/css/light.css b/static/css/light.css index b295ccf..4f41d5f 100644 --- a/static/css/light.css +++ b/static/css/light.css @@ -58,6 +58,14 @@ h3 { color: var(--fg-acc3); } +h4 { + color: var(--fg-acc4); +} + +h5 { + color: var(--fg-acc5); +} + /* switch */ .slider { background-color: var(--switch-bg); diff --git a/static/images/b/notes/sql/erd_example.png b/static/images/b/notes/sql/erd_example.png new file mode 100644 index 0000000..2c73cbd Binary files /dev/null and b/static/images/b/notes/sql/erd_example.png differ diff --git a/static/images/b/notes/sql/erd_example_wikipedia.png b/static/images/b/notes/sql/erd_example_wikipedia.png new file mode 100644 index 0000000..4f40194 Binary files /dev/null and b/static/images/b/notes/sql/erd_example_wikipedia.png differ diff --git a/static/images/b/notes/sql/img_fulljoin.gif b/static/images/b/notes/sql/img_fulljoin.gif new file mode 100644 index 0000000..ace249e Binary files /dev/null and b/static/images/b/notes/sql/img_fulljoin.gif differ diff --git a/static/images/b/notes/sql/img_innerjoin.gif b/static/images/b/notes/sql/img_innerjoin.gif new file mode 100644 index 0000000..db00126 Binary files /dev/null and b/static/images/b/notes/sql/img_innerjoin.gif differ diff --git a/static/images/b/notes/sql/img_leftjoin.gif b/static/images/b/notes/sql/img_leftjoin.gif new file mode 100644 index 0000000..f205846 Binary files /dev/null and b/static/images/b/notes/sql/img_leftjoin.gif differ diff --git a/static/images/b/notes/sql/img_rightjoin.gif b/static/images/b/notes/sql/img_rightjoin.gif new file mode 100644 index 0000000..f34c021 Binary files /dev/null and b/static/images/b/notes/sql/img_rightjoin.gif differ diff --git a/static/images/blog/notes/sql/erd_example.png b/static/images/blog/notes/sql/erd_example.png deleted file mode 100644 index 2c73cbd..0000000 Binary files a/static/images/blog/notes/sql/erd_example.png and /dev/null differ diff --git a/static/images/blog/notes/sql/erd_example_wikipedia.png b/static/images/blog/notes/sql/erd_example_wikipedia.png deleted file mode 100644 index 4f40194..0000000 Binary files a/static/images/blog/notes/sql/erd_example_wikipedia.png and /dev/null differ diff --git a/static/images/blog/notes/sql/img_fulljoin.gif b/static/images/blog/notes/sql/img_fulljoin.gif deleted file mode 100644 index ace249e..0000000 Binary files a/static/images/blog/notes/sql/img_fulljoin.gif and /dev/null differ diff --git a/static/images/blog/notes/sql/img_innerjoin.gif b/static/images/blog/notes/sql/img_innerjoin.gif deleted file mode 100644 index db00126..0000000 Binary files a/static/images/blog/notes/sql/img_innerjoin.gif and /dev/null differ diff --git a/static/images/blog/notes/sql/img_leftjoin.gif b/static/images/blog/notes/sql/img_leftjoin.gif deleted file mode 100644 index f205846..0000000 Binary files a/static/images/blog/notes/sql/img_leftjoin.gif and /dev/null differ diff --git a/static/images/blog/notes/sql/img_rightjoin.gif b/static/images/blog/notes/sql/img_rightjoin.gif deleted file mode 100644 index f34c021..0000000 Binary files a/static/images/blog/notes/sql/img_rightjoin.gif and /dev/null differ -- cgit v1.2.3-54-g00ecf