diff options
| author | anoduck <11767-anoduck@users.noreply.gitgud.io> | 2024-10-27 21:04:52 -0400 |
|---|---|---|
| committer | anoduck <11767-anoduck@users.noreply.gitgud.io> | 2024-10-27 21:04:52 -0400 |
| commit | 9003f2ec555aa8e16072966acb5a7c8ac341bdfb (patch) | |
| tree | 3e001bed9f55b33f7a55d537dfd4b414196ce7b0 | |
| parent | 5f240926152bc00f20e3c973aa2a02e8c0598eae (diff) | |
style(content): :art: NavBar configuration and markdown linting
Further configuration of Nabar, added more ignore statements for markdown linting, added horizontal scroll for navbar.
| -rw-r--r-- | .markdownlint-cli2.jsonc | 3 | ||||
| -rw-r--r-- | assets/scss/theme/theme.scss | 158 | ||||
| -rw-r--r-- | config/_default/params.toml | 11 | ||||
| -rw-r--r-- | content/fpnav/index.md | 5 | ||||
| -rw-r--r-- | content/posts/2024-10-27-the-religious-connection.md | 23 | ||||
| -rw-r--r-- | hugo_stats.json | 9 |
6 files changed, 132 insertions, 77 deletions
diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index f0a1f97..8552668 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -6,6 +6,9 @@ "MD012": false, "MD047": false, "MD050": false, + "MD022": false, + "MD032": false, + "MD058": false, "MD013": false, "MD024": false, "MD026": false, diff --git a/assets/scss/theme/theme.scss b/assets/scss/theme/theme.scss index 65f5a87..a57aa26 100644 --- a/assets/scss/theme/theme.scss +++ b/assets/scss/theme/theme.scss @@ -1,88 +1,126 @@ @media (prefers-color-scheme: dark) { - body { - background-color: #343a40; color: #f8f9fa; - } + body { + background-color: #343a40; + color: #f8f9fa; + } +} + +.horizontal-scrollable > .row { + overflow-x: auto; + white-space: nowrap; +} + +.horizontal-scrollable > .row > .col-xs-4 { + display: inline-block; + float: none; } .gradient-featured { - background: $white; - background: linear-gradient(135deg, $white 0%, tint-color($primary, 80%) 100%); + background: $white; + background: linear-gradient( + 135deg, + $white 0%, + tint-color($primary, 80%) 100% + ); } .card-feature { - background-color: var(--#{$prefix}light) if($enable-important-utilities, !important, null); + background-color: var(--#{$prefix}light) + if($enable-important-utilities, !important, null); } .card-feature div i { - background: linear-gradient(135deg, tint-color($primary, 80%) 0%, $primary 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; + background: linear-gradient( + 135deg, + tint-color($primary, 80%) 0%, + $primary 100% + ); + -webkit-background-clip: text; + background-clip: text; + -webkit-text-fill-color: transparent; } // scss-docs-start styling .card-shrink { - transition: 0.3s transform cubic-bezier(0.155, 1.105, 0.295, 1.12), 0.3s box-shadow, 0.3s -webkit-transform cubic-bezier(0.155, 1.105, 0.295, 1.12); - cursor: pointer; + transition: + 0.3s transform cubic-bezier(0.155, 1.105, 0.295, 1.12), + 0.3s box-shadow, + 0.3s -webkit-transform cubic-bezier(0.155, 1.105, 0.295, 1.12); + cursor: pointer; } .card-shrink:hover { - transform: scale(0.99); - box-shadow: none if($enable-important-utilities, !important, null); + transform: scale(0.99); + box-shadow: none if($enable-important-utilities, !important, null); } // scss-docs-end styling .footer { - background-color: $gray-800 if($enable-important-utilities, !important, null); - color: var(--#{$prefix}light) if($enable-important-utilities, !important, null); + background-color: $gray-800 if($enable-important-utilities, !important, null); + color: var(--#{$prefix}light) + if($enable-important-utilities, !important, null); } .footer-muted { - color: var(--#{$prefix}light) if($enable-important-utilities, !important, null); - opacity: .7 if($enable-important-utilities, !important, null); + color: var(--#{$prefix}light) + if($enable-important-utilities, !important, null); + opacity: 0.7 if($enable-important-utilities, !important, null); } .link-bg-footer { - color: var(--#{$prefix}light) if($enable-important-utilities, !important, null); - - &:hover, - &:focus { - color: $gray-400 if($enable-important-utilities, !important, null); - } + color: var(--#{$prefix}light) + if($enable-important-utilities, !important, null); + + &:hover, + &:focus { + color: $gray-400 if($enable-important-utilities, !important, null); + } } @if $enable-dark-mode { - @include color-mode(dark) { - .gradient-featured { - background: rgb(184,78,92); - background: linear-gradient(330deg, rgba(184,78,92,1) 0%, rgba(17,0,84,1) 80%); - } - - .card-feature { - background-color: var(--#{$prefix}tertiary-bg) if($enable-important-utilities, !important, null); - } - - .card-feature div i { - background: linear-gradient(135deg, $primary 0%, shade-color($primary, 60%) 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - } - - .footer { - background-color: var(--#{$prefix}tertiary-bg) if($enable-important-utilities, !important, null); - color: var(--#{$prefix}tertiary) if($enable-important-utilities, !important, null); - } - - .link-bg-footer { - color: var(--#{$prefix}tertiary) if($enable-important-utilities, !important, null); - - &:hover, - &:focus { - color: $gray-400 if($enable-important-utilities, !important, null); - } - } + @include color-mode(dark) { + .gradient-featured { + background: rgb(184, 78, 92); + background: linear-gradient( + 330deg, + rgba(184, 78, 92, 1) 0%, + rgba(17, 0, 84, 1) 80% + ); } + + .card-feature { + background-color: var(--#{$prefix}tertiary-bg) + if($enable-important-utilities, !important, null); + } + + .card-feature div i { + background: linear-gradient( + 135deg, + $primary 0%, + shade-color($primary, 60%) 100% + ); + -webkit-background-clip: text; + background-clip: text; + -webkit-text-fill-color: transparent; + } + + .footer { + background-color: var(--#{$prefix}tertiary-bg) + if($enable-important-utilities, !important, null); + color: var(--#{$prefix}tertiary) + if($enable-important-utilities, !important, null); + } + + .link-bg-footer { + color: var(--#{$prefix}tertiary) + if($enable-important-utilities, !important, null); + + &:hover, + &:focus { + color: $gray-400 if($enable-important-utilities, !important, null); + } + } + } } // .accordion-theme { @@ -103,12 +141,12 @@ // } .math { - overflow-x: auto; - font-size: 0.7rem !important; + overflow-x: auto; + font-size: 0.7rem !important; } @include media-breakpoint-up(md) { - .math { - font-size: 1rem !important; - } -}
\ No newline at end of file + .math { + font-size: 1rem !important; + } +} diff --git a/config/_default/params.toml b/config/_default/params.toml index 4cb7574..18a0310 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -158,22 +158,23 @@ separator = true [sections.fpnav] title = "Involving the usual suspects..." - reference = "More People involved" + reference = "More People" layout = "nav" sort = "weight" reverse = false nested = false # cols = 3 background = "body-tertiary" - color = "primary" + color = "" # padding = "0" # footer = "none" # orientation = "stacked" - style = "justify-content-center" + style = "justify-content-center horizontal-scrollable" pane = "persona" - type = "pills" - width = 50 + type = "tabs" + width = 100 vertical = false + class = "nav-fill" # homepage = 3 # separator = true [sections.legal] diff --git a/content/fpnav/index.md b/content/fpnav/index.md index ec4142e..cd2dbd8 100644 --- a/content/fpnav/index.md +++ b/content/fpnav/index.md @@ -6,8 +6,3 @@ draft: false {{< fas people-line fa-10x text-secondary >}} { .text-center .justify-content-center } - -### The exact same people, doing the exact same thing. -{ .fs-5 .muted .col-12 .col-md-6 .mx-auto .text-center} - -{{< button href="/persons/" wrapper="text-center mb-5">}}Profiles{{< /button >}}
\ No newline at end of file diff --git a/content/posts/2024-10-27-the-religious-connection.md b/content/posts/2024-10-27-the-religious-connection.md new file mode 100644 index 0000000..a8ce7e7 --- /dev/null +++ b/content/posts/2024-10-27-the-religious-connection.md @@ -0,0 +1,23 @@ +--- +title: The Religious Connection +description: Respectful discussion over a coincidence. +date: 2024-10-28T00:16:48.784Z +type: default +categories: Post +tags: [] +draft: true +thumbnail: + url: "" + author: "" + authorURL: "" + origin: "" + originURL: "" +fmContentType: post +--- + +## Could there be a religious connection to our experiences. + +> [!IMPORTANT] +> We respect an individuals right to possess their own personal religious views. Although religious practitioners ourselves, we do not represent the views or beliefs of any particular religious organization or communing body of believers or church. + +From our experience we have noticed that the main antagonists in our experience all attend the same church, and their behavior, along with the reaction observed from other individuals suggest there is the possibility of a correlation between the two.
\ No newline at end of file diff --git a/hugo_stats.json b/hugo_stats.json index 8c67e74..514a17e 100644 --- a/hugo_stats.json +++ b/hugo_stats.json @@ -80,6 +80,7 @@ "border", "border-0", "border-bottom", + "border-bottom-0", "border-end", "border-start", "border-top", @@ -120,7 +121,6 @@ "col-9", "col-lg-2", "col-lg-8", - "col-md-10", "col-md-2", "col-md-3", "col-md-4", @@ -129,7 +129,6 @@ "col-md-9", "col-sm-12", "col-sm-3", - "col-xl-6", "collapse", "collapsed", "container", @@ -222,6 +221,7 @@ "h6", "heading", "highlight", + "horizontal-scrollable", "hstack", "img-fluid", "img-wrap", @@ -270,7 +270,6 @@ "nav", "nav-item", "nav-link", - "nav-pills", "nav-tabs", "navbar", "navbar-brand", @@ -552,9 +551,6 @@ "the-analogy", "the-corruption-was-a-matter-of-fact", "the-curious-case-of-chief-matthews-private-road", - "the-exact-same-people-doing-the-exact-same-thing", - "the-exact-same-people-doing-the-exact-same-thing-have-targeted-our-home", - "the-exact-same-people-have-targeted-our-home", "the-reality", "this-is-the-countys-policy", "to-start-with", @@ -564,7 +560,6 @@ "toc-collapse", "tracking-technologies-and-cookies", "transfer-of-your-personal-data", - "twice-now-the-exact-same-people-have-targeted-our-home", "types-of-data-collected", "update", "usage-data", |
