From 9f0f99b4eab4e8c8d938b1cfd0b19602541e63de Mon Sep 17 00:00:00 2001 From: ztimson Date: Tue, 16 Apr 2019 10:27:27 -0400 Subject: [PATCH] Added some fonts --- src/app/typewriter/typewriter.component.scss | 3 +++ src/styles.scss | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/typewriter/typewriter.component.scss b/src/app/typewriter/typewriter.component.scss index e89a634..02f5aa2 100644 --- a/src/app/typewriter/typewriter.component.scss +++ b/src/app/typewriter/typewriter.component.scss @@ -1,3 +1,5 @@ +@import url("https://fonts.googleapis.com/css?family=Arvo"); + .typewriter h1 { color: white; overflow: hidden; @@ -7,6 +9,7 @@ letter-spacing: .15em; animation: blink-caret 1s step-end infinite; display: inline; + font-family: 'Arvo', serif; @keyframes typing { from { width: 0 } diff --git a/src/styles.scss b/src/styles.scss index ad605e2..345ebea 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -7,6 +7,6 @@ html, body { body { margin: 0; - font-family: Roboto, "Helvetica Neue", sans-serif; + font-family: Roboto, sans-serif; background: #ffffff url("/assets/background.jpg") no-repeat fixed center; }