mirror of https://github.com/escalate/hugo-split-theme.git

Felix Boerner
08.05.2024 585eb1713d0ba45666e9ff0ce945802e1501f437
feat: style headlines
2 files modified
8 ■■■■ changed files
assets/scss/_content.scss 6 ●●●● patch | view | raw | blame | history
layouts/partials/links.html 2 ●●● patch | view | raw | blame | history
assets/scss/_content.scss
@@ -40,9 +40,11 @@
}
.name {
  margin-top: 0px;
  margin-bottom: 40px;
  color: #47bec7;
  font-size: 16px;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
@@ -72,10 +74,12 @@
  text-decoration: none;
}
.text-block-2 {
.text-block {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #485462;
  font-size: 12px;
  font-weight: normal;
  line-height: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
layouts/partials/links.html
@@ -5,7 +5,7 @@
    {{ if $list.link }}
      <div class="column w-col w-col-4">
        <h3 class="text-block-2">{{ $list.heading }}</h3>
        <h3 class="text-block">{{ $list.heading }}</h3>
        <ul class="list w-list-unstyled">
          {{ range $list.link }}
            <li><a href="{{ .url | safeURL }}" target="{{ cond (.new_tab | default false) "_blank" "_self" }}">{{ .text }}</a></li>