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

theme-color.html « partials « layouts - github.com/alexandrevicenzi/soho.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f624af5a47693869821ebe6637ea7b76c1e0256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ with $.Site.Params.themeColor }}
<style type="text/css">
  .sidebar {
    background-color: {{ . }};
  }

  .read-more-link a {
    border-color: {{ . }};
  }

  footer a,
  .content a,
  .related-posts li a:hover {
    color: {{ . }};
  }
</style>
{{ end }}