diff --git a/_sass/_digital-garden.scss b/_sass/_digital-garden.scss index aa50cf3..6817230 100644 --- a/_sass/_digital-garden.scss +++ b/_sass/_digital-garden.scss @@ -7,6 +7,12 @@ text-decoration: none; } +// Fonts helper + +.anthony { + font-family: "Anthony", sans-serif; +} + // Notes Graph .links line { diff --git a/_sass/_fonts.scss b/_sass/_fonts.scss new file mode 100644 index 0000000..4fde74a --- /dev/null +++ b/_sass/_fonts.scss @@ -0,0 +1,8 @@ +// Anthony by Sun Young Oh +// https://gitlab.com/velvetyne/anthony + +@font-face { + font-family: Anthony; + src: url('./assets/fonts/Anthony.woff2') format('woff2'), + url('./assets/fonts/Anthony.woff') format('woff'); +} \ No newline at end of file diff --git a/_sass/_variables.scss b/_sass/_variables.scss index 548f807..b8fd296 100644 --- a/_sass/_variables.scss +++ b/_sass/_variables.scss @@ -1 +1,2 @@ +$hightlight-color: #F5A486; $accent-color: #137752; \ No newline at end of file diff --git a/assets/fonts/Anthony.eot b/assets/fonts/Anthony.eot new file mode 100644 index 0000000..ed8f41f Binary files /dev/null and b/assets/fonts/Anthony.eot differ diff --git a/assets/fonts/Anthony.woff b/assets/fonts/Anthony.woff new file mode 100644 index 0000000..638c4f8 Binary files /dev/null and b/assets/fonts/Anthony.woff differ diff --git a/assets/fonts/Anthony.woff2 b/assets/fonts/Anthony.woff2 new file mode 100644 index 0000000..20d51c0 Binary files /dev/null and b/assets/fonts/Anthony.woff2 differ