Skip to content

Commit

Permalink
Merge pull request #73 from Netcentric/kaw-8191-add-fonts
Browse files Browse the repository at this point in the history
KAW-8191 Add Boxed font
  • Loading branch information
lakshmishriaswathnarayana authored Oct 24, 2024
2 parents bb8694b + e0804ea commit ca265ea
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 4 deletions.
Binary file added fonts/Boxed-DemiBold.otf
Binary file not shown.
Binary file added fonts/Boxed-Medium.otf
Binary file not shown.
Binary file added fonts/Boxed-Regular.otf
Binary file not shown.
Binary file removed fonts/oxygen.woff2
Binary file not shown.
Binary file removed fonts/roboto-bold.woff2
Binary file not shown.
Binary file removed fonts/roboto-regular.woff2
Binary file not shown.
23 changes: 19 additions & 4 deletions styles/fonts.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
/* stylelint-disable max-line-length */
@font-face {
font-family: Oxygen;
font-family: Boxed;
font-style: normal;
font-weight: 400;
font-weight: 500;
font-display: swap;
src: url("/fonts/oxygen.woff2") format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
src: url("/fonts/Boxed-Regular.otf") format('opentype');
}

@font-face {
font-family: Boxed;
font-style: normal;
font-weight: 600;
font-display: swap;
src: url("/fonts/Boxed-DemiBold.otf") format('opentype');
}

@font-face {
font-family: Boxed;
font-style: normal;
font-weight: 700;
font-display: swap;
src: url("/fonts/Boxed-Medium.otf") format('opentype');
}

0 comments on commit ca265ea

Please sign in to comment.