Skip to content

Commit

Permalink
chore: update font family
Browse files Browse the repository at this point in the history
  • Loading branch information
fbeavan-zengenti committed Nov 27, 2023
1 parent b030a95 commit d2fc677
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions RazorPageLeifExample/Pages/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>.NET Leif Example</title>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600&display=swap">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600&display=swap"></noscript>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="~/static/css/site.css" asp-append-version="true" />
<link rel="icon" type="image/x-icon" href="~/static/favicon.ico">
</head>
<body>
<header class="header">
<a href="/home" title="Go to homepage">
<a href="/home" title="Go to homepage">
<svg
focusable="false"
aria-hidden="true"
Expand Down
10 changes: 5 additions & 5 deletions RazorPageLeifExample/wwwroot/static/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
body {
color: #333333;
background-color: #ffffff;
font-family: 'Helvetica', Arial, sans-serif;
font-family: 'Inter', sans-serif;
overflow-x: hidden;
}
h1,
Expand All @@ -17,7 +17,7 @@ h3,
h4,
h5,
h6 {
font-family: 'Source Serif Pro', serif;
font-family: 'Source Serif 4', serif;
}
h1 {
font-size: 2.5rem;
Expand Down Expand Up @@ -123,7 +123,7 @@ header svg {
border-radius: 4px;
color: #2b2f51;
display: block;
font-family: 'Source Serif Pro', serif;
font-family: 'Source Serif 4', serif;
font-size: 20px;
font-weight: 600;
line-height: 32px;
Expand Down Expand Up @@ -307,7 +307,7 @@ header svg {
}
.profile__name {
display: block;
font-family: 'Source Serif Pro', serif;
font-family: 'Source Serif 4', serif;
font-size: 16px;
font-weight: 600;
line-height: 24px;
Expand All @@ -318,7 +318,7 @@ header svg {
padding: 0 16px;
}
.lead {
font-family: 'Source Serif Pro', serif;
font-family: 'Source Serif 4', serif;
font-size: 22px;
font-weight: 600;
line-height: 32px;
Expand Down

0 comments on commit d2fc677

Please sign in to comment.