Skip to content

Commit

Permalink
chore: add dependencies to Git
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Dec 11, 2024
1 parent 26e3c35 commit 127ff34
Show file tree
Hide file tree
Showing 13 changed files with 24,080 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
# Ignore secrets
.env

# Ignore fonts
theme/web/*.eof
theme/web/*.ttf
theme/web/*.woff
theme/web/*.woff2

# Ignore vendor files
theme/web/font.css
theme/web/mendix-nl-design-system-rotterdam-theme.css
theme/web/theme.css

# Ignore temporary files
tmp/

Expand Down
Binary file added theme/web/Bolder-Bold.woff
Binary file not shown.
Binary file added theme/web/Bolder-Bold.woff2
Binary file not shown.
Binary file added theme/web/Bolder-Heading.woff2
Binary file not shown.
Binary file added theme/web/Bolder-Light.woff
Binary file not shown.
Binary file added theme/web/Bolder-Light.woff2
Binary file not shown.
Binary file added theme/web/Bolder-Regular.woff
Binary file not shown.
Binary file added theme/web/Bolder-Regular.woff2
Binary file not shown.
Binary file added theme/web/Bolder-RegularItalic.woff
Binary file not shown.
Binary file added theme/web/Bolder-RegularItalic.woff2
Binary file not shown.
60 changes: 60 additions & 0 deletions theme/web/font.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/*
You can install your own font files, or install font packages from npm.
FontSource <https://fontsource.org> contains many fonts that can installed via npm
so you don't have to use a CDN or hosted files from Google Fonts.
Here's "Open Sans", for example.
https://fontsource.org/fonts/open-sans
*/

/* @import "~@fontsource/open-sans/400.css"; */

/* @import "~@fontsource/open-sans/700.css"; */

@font-face {
font-display: swap;
font-family: "Bolder";
font-style: normal;
font-weight: 700;
src:
url("./Bolder-Bold.woff2") format("woff2"),
url("./Bolder-Bold.woff") format("woff");
}

@font-face {
font-display: swap;
font-family: "Bolder";
font-style: normal;
font-weight: 300;
src:
url("./Bolder-Light.woff2") format("woff2"),
url("./Bolder-Light.woff") format("woff");
}

@font-face {
font-display: swap;
font-family: "Bolder";
font-style: italic;
font-weight: 400;
src:
url("./Bolder-RegularItalic.woff2") format("woff2"),
url("./Bolder-RegularItalic.woff") format("woff");
}

@font-face {
font-display: swap;
font-family: "Bolder";
font-style: normal;
font-weight: 400;
src:
url("./Bolder-Regular.woff2") format("woff2"),
url("./Bolder-Regular.woff") format("woff");
}

@font-face {
font-display: swap;
font-family: "Bolder Heading";
font-style: normal;
font-weight: 700;
src: url("./Bolder-Heading.woff2") format("woff2");
}
Loading

0 comments on commit 127ff34

Please sign in to comment.