Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/negrel/hugo-theme-pico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Negrel <negrel.dev@protonmail.com>2021-01-26 23:27:40 +0300
committerAlexandre Negrel <negrel.dev@protonmail.com>2021-01-26 23:27:40 +0300
commit0aa73dac738327759191665699b20afe11ee4dc6 (patch)
tree8d0b4a0a02fb7f93141e10c36e4cd4c430c48b75
parent1d342dc29608c7d786b0fa5e27b5f2e6d8e4376d (diff)
adding dark mode support for timeline widget
-rw-r--r--layouts/partials/widgets/timeline.html15
1 files changed, 8 insertions, 7 deletions
diff --git a/layouts/partials/widgets/timeline.html b/layouts/partials/widgets/timeline.html
index c1b354c..73aa7b0 100644
--- a/layouts/partials/widgets/timeline.html
+++ b/layouts/partials/widgets/timeline.html
@@ -12,17 +12,17 @@
<div class="relative">
{{/* Timeline bar */}}
- <div class="h-full border-l border-black absolute left-0 md:absolute-center"></div>
+ <div class="h-full border-l border-primary-dark absolute left-0 md:absolute-center"></div>
<div>
{{ range $index, $period := .Params.period }}
{{ $even := modBool $index 2 }}
{{ $containerClass := "md:mr-auto pl-4 md:pl-0 md:pr-4"}}
- {{ $dateClass := "md:text-right font-thin text-grey-800 text-xl" }}
+ {{ $dateClass := "md:text-right font-light text-primary text-xl" }}
{{ if $even }}
{{ $containerClass = "md:ml-auto pl-4"}}
- {{ $dateClass = "font-thin text-grey-800 text-xl" }}
+ {{ $dateClass = "font-light text-primary text-xl" }}
{{ end }}
@@ -34,17 +34,18 @@
<div class="mb-4 {{ $dateClass }}">{{ $period.date_end | dateFormat $dateFormat }}
</div>
{{ end }}
- <div class="p-4 border border-black rounded-md transition ease-in-out duration-300 shadow-2 hover:shadow-8 ">
- <h2 class="inline-block my-0 text-grey-800">{{ .title | markdownify }}</h2>
+ <div
+ class="p-4 border-2 border-primary-light dark:border-secondary-light rounded-md transition ease-in-out duration-300 shadow-2 hover:shadow-8 ">
+ <h2 class="inline-block my-0 text-primary">{{ .title | markdownify }}</h2>
{{ with .location }}
<span class="mx-2">&middot; {{ . }}</span>
{{ end }}
- <h3 class="mt-1 mb-0 text-grey-700">{{ .subtitle | markdownify }}</h3>
+ <h3 class="mt-1 mb-0 text-primary-dark">{{ .subtitle | markdownify }}</h3>
{{ with .description }}
- <div class="mb-2 text-grey-800">
+ <div class="mb-2 text-primary">
<p>{{ . | markdownify }}</p>
</div>
{{ end }}