-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
749 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
// fonts obtained from https://github.com/IBM/plex | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-Regular.woff2') format('woff2'); | ||
font-weight: 400; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-Italic.woff2') format('woff2'); | ||
font-weight: 400; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-Bold.woff2') format('woff2'); | ||
font-weight: 700; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-BoldItalic.woff2') format('woff2'); | ||
font-weight: 700; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-ExtraLightItalic.woff2') format('woff2'); | ||
font-weight: 200; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-Light.woff2') format('woff2'); | ||
font-weight: 300; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-LightItalic.woff2') format('woff2'); | ||
font-weight: 300; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-Medium.woff2') format('woff2'); | ||
font-weight: 500; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-MediumItalic.woff2') format('woff2'); | ||
font-weight: 500; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-SemiBold.woff2') format('woff2'); | ||
font-weight: 600; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-SemiBoldItalic.woff2') format('woff2'); | ||
font-weight: 600; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-Text.woff2') format('woff2'); | ||
font-weight: 800; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-TextItalic.woff2') format('woff2'); | ||
font-weight: 800; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-Thin.woff2') format('woff2'); | ||
font-weight: 100; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
src: url('fonts/IBMPlexSans-ThinItalic.woff2') format('woff2'); | ||
font-weight: 100; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Mono'; | ||
src: url('fonts/IBMPlexMono-Regular.woff2') format('woff2'); | ||
font-weight: 400; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Mono'; | ||
src: url('fonts/IBMPlexMono-Bold.woff2') format('woff2'); | ||
font-weight: 700; | ||
font-style: normal; | ||
} | ||
|
||
body { | ||
font-family: 'IBM Plex Sans', sans-serif; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
font-family: 'IBM Plex Sans'; | ||
font-weight: 600; | ||
} | ||
|
||
em { | ||
font-family: 'IBM Plex Sans'; | ||
font-style: italic; | ||
} | ||
|
||
.uk-nav>li>a { | ||
font-family: 'IBM Plex Sans', sans-serif; | ||
font-weight: 500; | ||
} | ||
|
||
.uk-navbar-nav>li>a { | ||
font-family: 'IBM Plex Sans', sans-serif; | ||
font-weight: 500; | ||
} | ||
|
||
pre code { | ||
font-family: 'IBM Plex Mono', monospace; | ||
} | ||
|
||
code { | ||
font-family: 'IBM Plex Mono', monospace; | ||
} | ||
|
||
/* set the base font size for the root element (rem) */ | ||
html { | ||
font-size: 16px; | ||
} | ||
|
||
body { | ||
font-size: 1.0rem; | ||
} | ||
|
||
.uk-article-title { | ||
font-size: 1.8rem; | ||
} | ||
|
||
h1 { | ||
font-size: 1.8rem; | ||
color: #700070; | ||
} | ||
|
||
h2 { | ||
font-size: 1.0rem; | ||
color: #700070; | ||
} | ||
|
||
h3 { | ||
font-size: 1.0rem; | ||
color: #700070; | ||
} | ||
|
||
p { | ||
font-size: 1.0rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.