From 59b3b077758942f4b45a07fa52e856df8edeea3a Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Fri, 14 Jun 2024 09:24:07 -0400 Subject: Further minimal improvements, reducing code base --- _includes/footer.html | 14 ++++ _includes/head.html | 1 + _includes/header.html | 3 +- _includes/sidebar.html | 24 ------- _layouts/default.html | 1 - _posts/2022-03-14-eero.md | 60 ++++++++--------- _posts/2022-04-18-safari-default-dark-mode.md | 22 +++---- ...02-23-Please_Make_Your_Table_Headings_Sticky.md | 2 +- stylesheets/main.css | 53 ++++----------- stylesheets/pygments.css | 76 ++++++++++++++++++++++ 10 files changed, 146 insertions(+), 110 deletions(-) delete mode 100644 _includes/sidebar.html diff --git a/_includes/footer.html b/_includes/footer.html index 9d0af9d..81960e2 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,3 +1,17 @@ diff --git a/_includes/head.html b/_includes/head.html index b7a9786..33002b3 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -2,6 +2,7 @@ + diff --git a/_includes/header.html b/_includes/header.html index 23e71d3..164fe0c 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,4 +1,3 @@
- Menu ↓ - + Home / Menu ↓
\ No newline at end of file diff --git a/_includes/sidebar.html b/_includes/sidebar.html deleted file mode 100644 index 8d3ce69..0000000 --- a/_includes/sidebar.html +++ /dev/null @@ -1,24 +0,0 @@ - diff --git a/_layouts/default.html b/_layouts/default.html index 8e7dae7..f969a9d 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -9,7 +9,6 @@
{{ content }}
- {%- include sidebar.html -%} {%- include footer.html -%} diff --git a/_posts/2022-03-14-eero.md b/_posts/2022-03-14-eero.md index 139022b..367bc07 100644 --- a/_posts/2022-03-14-eero.md +++ b/_posts/2022-03-14-eero.md @@ -26,18 +26,18 @@ Before we get into the step-by-step details, here are the required items you'll Before you place your microSD card into the Pi and boot it up, connect it to your local computer (via USB adapter) - we will need to add some files first. Once loaded into the `boot` folder, add an empty file simply called `ssh` (no extensions). Next open your preferred text editor and enter the following code, editing the content to match your own country code and home network settings: - - country=US - ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev - update_config=1 - - network={ - ssid="WIFI_SSID" - scan_ssid=1 - psk="WIFI_PASSWORD" - key_mgmt=WPA-PSK - } - +```sh +country=US +ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev +update_config=1 + +network={ + ssid="WIFI_SSID" + scan_ssid=1 + psk="WIFI_PASSWORD" + key_mgmt=WPA-PSK +} +``` Save this file as `wpa_supplicant.conf` and add it to the `boot` directory as well. @@ -47,9 +47,9 @@ You can now safely eject the microSD card and place it into your Raspberry Pi. Connect power to your Pi and give it a bit of time to boot up. Once you see a nice solid green LED, go back to your local computer's terminal and enter the following command: - - ssh pi@raspberrypi.local - +```sh +ssh pi@raspberrypi.local +``` If everything was set up properly you will be asked to trust this device. Next, you will be prompted to enter the device password. The default password will be: `raspberry` @@ -57,21 +57,21 @@ If everything was set up properly you will be asked to trust this device. Next, Once you are connected directly to the Pi, it's best to check for updates: - - sudo apt update - +```sh +sudo apt update +``` ...and if updates are in fact available, install them via: - - sudo apt upgrade - +```sh +sudo apt upgrade +``` This next step is optional but I highly recommend it for security purposes. You should change both the hostname and password of this soon-to-be Pi-hole server. To do this simply run: - - sudo raspi-config - +```sh +sudo raspi-config +``` 1. Edit Hostname: navigate to `System Settings` --> `Hostname` 2. Edit Password: navigate to `System Settings` --> `Password` @@ -82,9 +82,9 @@ Once complete, reboot the Pi. Just remember that when you try to reconnect to th This is the easy part: - - curl -sSL https://install.pi-hole.net | bash - +```sh +curl -sSL https://install.pi-hole.net | bash +``` Pi-hole runs a full install script that walks you through step-by-step on setting things up. It's best to use the suggested defaults during the install - everything is pretty simple. @@ -92,9 +92,9 @@ Near the end of the setup you'll be show the newly created static IP for this Pi Once it's finished, shutdown the Pi safely by running: - - sudo shutdown now - +```sh +sudo shutdown now +``` ## Hardware Setup diff --git a/_posts/2022-04-18-safari-default-dark-mode.md b/_posts/2022-04-18-safari-default-dark-mode.md index 91095b4..b5c2401 100644 --- a/_posts/2022-04-18-safari-default-dark-mode.md +++ b/_posts/2022-04-18-safari-default-dark-mode.md @@ -15,9 +15,9 @@ A common practice is to include a `@media` query via CSS to target styling chang Adding the following meta tag inside your document's `head` element, you can enable dark mode instantly with zero configuration: - - - +```html + +``` There are minor caveats: @@ -42,15 +42,15 @@ Even though by adding the color-scheme meta tag we get ourselves good dark mode Luckily for us there is a simple solution using minimal amounts of CSS[^1]: - - @supports (color-scheme: dark light) { - @media screen and (prefers-color-scheme: dark) { - a:link {color: #9e9eff;} - a:visited {color: #d0adf0;} - a:active {color: red;} - } +```scss +@supports (color-scheme: dark light) { + @media screen and (prefers-color-scheme: dark) { + a:link {color: #9e9eff;} + a:visited {color: #d0adf0;} + a:active {color: red;} } - +} +``` We are brute-forcing Safari to implement the same color HEX codes used by both Firefox and Chrome browsers. How a horrible accessibility oversight could happen within a company as large as Apple is astounding... diff --git a/_posts/2024-02-23-Please_Make_Your_Table_Headings_Sticky.md b/_posts/2024-02-23-Please_Make_Your_Table_Headings_Sticky.md index 6d71cb2..3a9e611 100644 --- a/_posts/2024-02-23-Please_Make_Your_Table_Headings_Sticky.md +++ b/_posts/2024-02-23-Please_Make_Your_Table_Headings_Sticky.md @@ -23,7 +23,7 @@ Your browser does not support the video tag. Pretty awesome, right? It might look like magic but it's actually very easy to implement. You only need to add 2 CSS properties on your `thead`: -```css +```scss position: sticky; top: 0; ``` diff --git a/stylesheets/main.css b/stylesheets/main.css index 8ee864b..75fb895 100644 --- a/stylesheets/main.css +++ b/stylesheets/main.css @@ -3,59 +3,30 @@ * { box-sizing: border-box; } body { - background-color: #3EECAC; - background-image: linear-gradient(135deg, #3EECAC 0%, #EE74E1 100%); - color: #111; font-family: system-ui, sans-serif; - font-size: 14px; - height: 100%; margin: 0; - min-height: 100vh; - padding: 0; + padding: 12px; } h1 { font-size: 2.4rem; margin-top: 0; padding: 0; } h2,h3,h4,h5,h6{ margin: 1.4rem 0 0; } img { height: auto; max-width: 100%; } pre.highlight { border: 1px solid; box-shadow: 0 10px 6px -6px rgba(0,0,0, 0.11); overflow: auto; padding: 8px; } -blockquote { background: rgba(0,0,0,0.05); border-left: 4px solid; margin: 10px; padding: 8px 8px 8px 16px; } +blockquote { background: rgba(0,0,0,0.05); border-left: 4px solid; margin: 2rem 0 2rem 1rem; padding: 8px 8px 8px 16px; } blockquote p { margin: 0; } +table { border-collapse: collapse; margin: 1rem 0; text-align: left; width: 100%; } +table tr { border-bottom: 1px solid; } +table td, table th { padding: 4px; } +figcaption { font-style: italic; } .post-date { display: block; margin-top: 5px; } - -.menu { display: none; } -.logo { - font-size: 68px; - font-weight: bold; - left: -80px; - line-height: 1; - position: absolute; - top: 10px; -} +.post-date, .footnotes { font-size: 85%; } +hr { border-bottom: 0; border-top: 1px solid; margin: 2rem 0; padding: 0; } +p { line-height: 1.4; } .wrapper { - display: flex; - flex-wrap: wrap; - justify-content: space-between; margin: 0 auto; - max-width: 980px; + max-width: 45rem; } -main, aside section { - background: #fff; - box-shadow: 0 10px 6px -6px rgba(0,0,0, 0.11); - padding: 12px; -} - -header, footer { position: relative; width: 100%; } -main, aside { margin-top: 20px; } -main { width: calc(100% - 300px); } -aside { width: 280px; } -aside section { margin-bottom: 20px; } - -@media(max-width: 1160px) { - .menu { display: block; } - .logo { display: none; } - .wrapper { max-width: 100%; padding: 10px; } - main, aside { margin-top: 10px; width: 100%; } - aside section { margin-bottom: 10px; } -} \ No newline at end of file +header { margin: 1rem 0 2rem; } +footer { margin: 2rem 0; } diff --git a/stylesheets/pygments.css b/stylesheets/pygments.css index 3d8218e..87eccda 100644 --- a/stylesheets/pygments.css +++ b/stylesheets/pygments.css @@ -65,3 +65,79 @@ .highlight .vi { color: teal; } .highlight .il { color: #009999; } .highlight .gc { color: #999; background-color: #EAF2F5; } + +@supports (color-scheme: dark light) { + @media screen and (prefers-color-scheme: dark) { + .highlight .hll { background-color: #49483e } + .highlight { background: #272822; color: #f8f8f2 } + .highlight .c { color: #75715e } /* Comment */ + .highlight .err { color: #960050; background-color: #1e0010 } /* Error */ + .highlight .k { color: #66d9ef } /* Keyword */ + .highlight .l { color: #ae81ff } /* Literal */ + .highlight .n { color: #f8f8f2 } /* Name */ + .highlight .o { color: #f92672 } /* Operator */ + .highlight .p { color: #f8f8f2 } /* Punctuation */ + .highlight .ch { color: #75715e } /* Comment.Hashbang */ + .highlight .cm { color: #75715e } /* Comment.Multiline */ + .highlight .cp { color: #75715e } /* Comment.Preproc */ + .highlight .cpf { color: #75715e } /* Comment.PreprocFile */ + .highlight .c1 { color: #75715e } /* Comment.Single */ + .highlight .cs { color: #75715e } /* Comment.Special */ + .highlight .gd { color: #f92672 } /* Generic.Deleted */ + .highlight .ge { font-style: italic } /* Generic.Emph */ + .highlight .gi { color: #a6e22e } /* Generic.Inserted */ + .highlight .gs { font-weight: bold } /* Generic.Strong */ + .highlight .gu { color: #75715e } /* Generic.Subheading */ + .highlight .kc { color: #66d9ef } /* Keyword.Constant */ + .highlight .kd { color: #66d9ef } /* Keyword.Declaration */ + .highlight .kn { color: #f92672 } /* Keyword.Namespace */ + .highlight .kp { color: #66d9ef } /* Keyword.Pseudo */ + .highlight .kr { color: #66d9ef } /* Keyword.Reserved */ + .highlight .kt { color: #66d9ef } /* Keyword.Type */ + .highlight .ld { color: #e6db74 } /* Literal.Date */ + .highlight .m { color: #ae81ff } /* Literal.Number */ + .highlight .s { color: #e6db74 } /* Literal.String */ + .highlight .na { color: #a6e22e } /* Name.Attribute */ + .highlight .nb { color: #f8f8f2 } /* Name.Builtin */ + .highlight .nc { color: #a6e22e } /* Name.Class */ + .highlight .no { color: #66d9ef } /* Name.Constant */ + .highlight .nd { color: #a6e22e } /* Name.Decorator */ + .highlight .ni { color: #f8f8f2 } /* Name.Entity */ + .highlight .ne { color: #a6e22e } /* Name.Exception */ + .highlight .nf { color: #a6e22e } /* Name.Function */ + .highlight .nl { color: #f8f8f2 } /* Name.Label */ + .highlight .nn { color: #f8f8f2 } /* Name.Namespace */ + .highlight .nx { color: #a6e22e } /* Name.Other */ + .highlight .py { color: #f8f8f2 } /* Name.Property */ + .highlight .nt { color: #f92672 } /* Name.Tag */ + .highlight .nv { color: #f8f8f2 } /* Name.Variable */ + .highlight .ow { color: #f92672 } /* Operator.Word */ + .highlight .w { color: #f8f8f2 } /* Text.Whitespace */ + .highlight .mb { color: #ae81ff } /* Literal.Number.Bin */ + .highlight .mf { color: #ae81ff } /* Literal.Number.Float */ + .highlight .mh { color: #ae81ff } /* Literal.Number.Hex */ + .highlight .mi { color: #ae81ff } /* Literal.Number.Integer */ + .highlight .mo { color: #ae81ff } /* Literal.Number.Oct */ + .highlight .sa { color: #e6db74 } /* Literal.String.Affix */ + .highlight .sb { color: #e6db74 } /* Literal.String.Backtick */ + .highlight .sc { color: #e6db74 } /* Literal.String.Char */ + .highlight .dl { color: #e6db74 } /* Literal.String.Delimiter */ + .highlight .sd { color: #e6db74 } /* Literal.String.Doc */ + .highlight .s2 { color: #e6db74 } /* Literal.String.Double */ + .highlight .se { color: #ae81ff } /* Literal.String.Escape */ + .highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */ + .highlight .si { color: #e6db74 } /* Literal.String.Interpol */ + .highlight .sx { color: #e6db74 } /* Literal.String.Other */ + .highlight .sr { color: #e6db74 } /* Literal.String.Regex */ + .highlight .s1 { color: #e6db74 } /* Literal.String.Single */ + .highlight .ss { color: #e6db74 } /* Literal.String.Symbol */ + .highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */ + .highlight .fm { color: #a6e22e } /* Name.Function.Magic */ + .highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */ + .highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */ + .highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */ + .highlight .vm { color: #f8f8f2 } /* Name.Variable.Magic */ + .highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */ + } +} + -- cgit v1.2.3-54-g00ecf