diff options
author | Daniel Schadt <kingdread@gmx.de> | 2025-01-29 19:42:41 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2025-01-29 19:42:41 +0100 |
commit | a10404bd821840f71fd464bb3721bbdfadbb6ec4 (patch) | |
tree | af34eb93d6a43cf0c6de4ddca439765971d70056 /asset-sources/theme.scss | |
parent | ed9a0b1926a472c827c01ad13810f605332f41d4 (diff) | |
parent | cc04250be9f80b977677dfbb8fb9002838909975 (diff) | |
download | fietsboek-a10404bd821840f71fd464bb3721bbdfadbb6ec4.tar.gz fietsboek-a10404bd821840f71fd464bb3721bbdfadbb6ec4.tar.bz2 fietsboek-a10404bd821840f71fd464bb3721bbdfadbb6ec4.zip |
Merge branch 'new-font'
Diffstat (limited to 'asset-sources/theme.scss')
-rw-r--r-- | asset-sources/theme.scss | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index 35a3df1..bdc18f9 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: "Inter", sans-serif; font-weight: 300; color: #101010; background: #efefef; @@ -18,6 +18,7 @@ strong { #mainContent { flex: 1; + margin-top: 1em; } #siteFooter { @@ -34,10 +35,28 @@ strong { } } +.navbar { + font-family: "Inter", sans-serif; + font-weight: 400; +} + +.alert { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.ui-element { + font-family: "Inter", sans-serif; +} + .brand-link { text-decoration: none; } +#homeOverview { + margin-bottom: 1em; +} + .badge-container { width: 50px; height: 50px; @@ -111,6 +130,11 @@ strong { max-width: 100%; } +.track-badges { + justify-content: center; + margin-bottom: 1em; +} + .summary-toggler { cursor: pointer; } @@ -156,6 +180,7 @@ strong { width: 50px; display: inline-block; text-align: right; + font-variant: lining-nums; } .calendar-title { @@ -234,6 +259,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%; |