Skip to content

Commit

Permalink
add font
Browse files Browse the repository at this point in the history
  • Loading branch information
Loan Maeght committed Sep 9, 2024
1 parent b96c2f5 commit 1f91053
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
<meta property="og:url" content="https://cpe-cal.for-loop.fr">
<meta property="og:type" content="website">
<link rel="icon" href="/static/favicon.svg" type="image/svg+xml">
<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=Bricolage+Grotesque:opsz,[email protected],200..800&display=swap" rel="stylesheet">

<link rel="stylesheet" href="/static/style.css">
</head>
Expand Down
8 changes: 7 additions & 1 deletion static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,20 @@
body {
margin: 0;
padding: 0;
font-family: var(--font-family);
background-color: var(--background-color);
color: var(--text-color);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-sizing: border-box;

font-family: "Bricolage Grotesque", sans-serif;
font-optical-sizing: auto;
font-weight: 800;
font-style: normal;
font-variation-settings:
"wdth" 75;
}

.core {
Expand Down

0 comments on commit 1f91053

Please sign in to comment.