diff --git a/_posts/2020-06-03-post.md b/_posts/2020-06-03-post.md index 969c0f1..140cc30 100644 --- a/_posts/2020-06-03-post.md +++ b/_posts/2020-06-03-post.md @@ -48,6 +48,7 @@ not a force of oppression, but a call to examine your perceptions. [Find your Representative](https://www.house.gov/representatives/find-your-representative) + [Find your Senators](https://www.senate.gov/senators/contact) # And now for something completely different... diff --git a/_posts/2020-06-14-setting-up-btrfs.md b/_posts/2020-06-14-setting-up-btrfs.md index 1231e49..498b582 100644 --- a/_posts/2020-06-14-setting-up-btrfs.md +++ b/_posts/2020-06-14-setting-up-btrfs.md @@ -222,7 +222,7 @@ Syncthing, which will be an upcoming topic of discussion. Some next steps: leveraging wake-on-lan, to allow for streaming media remotely whenever, without having to leave my desktop on -#### Sources +### Sources - [btrfs on the Arch Wiki](https://wiki.archlinux.org/index.php/Btrfs) - [Snapper on the Arch Wiki](https://wiki.archlinux.org/index.php/Snapper) diff --git a/src/styles/corrupt_layout.css b/src/styles/corrupt_layout.css index 407918a..eb61194 100644 --- a/src/styles/corrupt_layout.css +++ b/src/styles/corrupt_layout.css @@ -8,7 +8,6 @@ body { margin: 0; } - header { background-color: #202020; border-bottom: 1px solid var(--hilite); @@ -43,6 +42,7 @@ footer #social { } main { + max-width: 100%; } main #details { @@ -71,6 +71,22 @@ main #desc { color: white; } +main pre.highlight { + overflow-x: auto; + color: white; + background-color: #2B2B2B; + margin: 0em 4em; + padding: 1em; + border-top: 2px solid black; + border-left: 2px solid black; + border-bottom: 2px solid var(--hilite); + border-right: 2px solid var(--hilite); +} + +main ul { + padding: 0em 4em; +} + @supports (display: grid) { .cor_page { @@ -98,7 +114,7 @@ main #desc { @media only screen and (min-width: 1250px) and (min-height: 750px) { .cor_page { display: grid; - grid-template-columns: repeat(9, 1fr); + grid-template-columns: repeat(9, minmax(0,1fr)); grid-template-rows: 50px max-content; grid-template-areas: "head head head head head head head foot foot" diff --git a/src/styles/corrupt_typog.css b/src/styles/corrupt_typog.css index eb04de1..2f98308 100644 --- a/src/styles/corrupt_typog.css +++ b/src/styles/corrupt_typog.css @@ -97,3 +97,7 @@ h6 { article p { padding: 0em 2em; } + +article p code { + font: 1.0em monospace; +}