summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Boerner <ich@felix-boerner.de>2024-11-08 10:05:25 +0100
committerFelix Börner <escalate@gmx.de>2024-11-11 14:26:11 +0100
commit585eb1713d0ba45666e9ff0ce945802e1501f437 (patch)
tree3a869428e955de84e68edc3a9eac32373ca3b71e
parenta97c4a0d751faeccb2447d63c5d7002a4454e225 (diff)
feat: style headlines
-rw-r--r--assets/scss/_content.scss6
-rw-r--r--layouts/partials/links.html2
2 files changed, 6 insertions, 2 deletions
diff --git a/assets/scss/_content.scss b/assets/scss/_content.scss
index 229c334..24cdd83 100644
--- a/assets/scss/_content.scss
+++ b/assets/scss/_content.scss
@@ -40,9 +40,11 @@ a {
}
.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 @@ a {
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;
diff --git a/layouts/partials/links.html b/layouts/partials/links.html
index fc662c3..61d1d29 100644
--- a/layouts/partials/links.html
+++ b/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>