From 93fd90fd60852727c4328e50abe681960a34fc8a Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Thu, 28 Nov 2024 22:44:54 +0100 Subject: style adjustment: open sans -> junction/inter --- asset-sources/theme.scss | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (limited to 'asset-sources') diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index 35a3df1..12eff78 100644 --- a/asset-sources/theme.scss +++ b/asset-sources/theme.scss @@ -3,7 +3,7 @@ html { } body { - font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; + font-family: "Junction", sans-serif; font-weight: 300; color: #101010; background: #efefef; @@ -34,10 +34,24 @@ strong { } } +.navbar { + font-family: "Inter", sans-serif; + font-weight: 400; + margin-bottom: 1em; +} + +.ui-element { + font-family: "Inter", sans-serif; +} + .brand-link { text-decoration: none; } +#homeOverview { + margin-bottom: 1em; +} + .badge-container { width: 50px; height: 50px; @@ -111,6 +125,11 @@ strong { max-width: 100%; } +.track-badges { + justify-content: center; + margin-bottom: 1em; +} + .summary-toggler { cursor: pointer; } @@ -156,6 +175,7 @@ strong { width: 50px; display: inline-block; text-align: right; + font-variant: lining-nums; } .calendar-title { @@ -234,6 +254,10 @@ strong { } } +.browse-summary { + font-variant: lining-nums; +} + /* Ensure a consistent width of the cells in the browse view. */ .browse-summary th, .browse-summary td { width: 25%; -- cgit v1.2.3 From ff272ada6d2404c515a918dee1f7ad90f69307c7 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Sat, 30 Nov 2024 18:40:47 +0100 Subject: move margin from navbar to main-content This ensures that alerts are still shown right below the navbar, and instead the space is moved below the alert and the main content. --- asset-sources/theme.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asset-sources') diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index 12eff78..7127ffc 100644 --- a/asset-sources/theme.scss +++ b/asset-sources/theme.scss @@ -18,6 +18,7 @@ strong { #mainContent { flex: 1; + margin-top: 1em; } #siteFooter { @@ -37,7 +38,6 @@ strong { .navbar { font-family: "Inter", sans-serif; font-weight: 400; - margin-bottom: 1em; } .ui-element { -- cgit v1.2.3 From 1974b0fa91383a431a44699fe7ac617ced7c4555 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Sat, 30 Nov 2024 18:44:29 +0100 Subject: remove top border radius on alerts They are right below the navbar, so they shouldn't have the border there. --- asset-sources/theme.scss | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'asset-sources') diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index 7127ffc..6c381bc 100644 --- a/asset-sources/theme.scss +++ b/asset-sources/theme.scss @@ -40,6 +40,11 @@ strong { font-weight: 400; } +.alert { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + .ui-element { font-family: "Inter", sans-serif; } -- cgit v1.2.3 From cc04250be9f80b977677dfbb8fb9002838909975 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Wed, 29 Jan 2025 19:41:16 +0100 Subject: replace Junction with Inter --- asset-sources/theme.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asset-sources') diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index 6c381bc..bdc18f9 100644 --- a/asset-sources/theme.scss +++ b/asset-sources/theme.scss @@ -3,7 +3,7 @@ html { } body { - font-family: "Junction", sans-serif; + font-family: "Inter", sans-serif; font-weight: 300; color: #101010; background: #efefef; -- cgit v1.2.3