Copy over fonts from nri-elm-css

This commit is contained in:
Tessa Kelly 2018-03-16 15:23:35 -07:00
parent d9067dee09
commit f87f3ae482

27
src/Nri/Ui/Fonts/V1.elm Normal file
View File

@ -0,0 +1,27 @@
module Nri.Ui.Fonts.V1
exposing
( baseFont
, quizFont
)
{-| Fonts for NoRedInk projects
@docs baseFont, quizFont
-}
import Css exposing (..)
{-| Font for instructions, headers, and pretty much everything else
-}
baseFont : Style
baseFont =
fontFamilies [ qt "Muli", "Helvetica", "Arial", "sans-serif" ]
{-| Font for question sentences, or most interactable or graded fields
-}
quizFont : Style
quizFont =
fontFamilies [ qt "Georgia", "serif" ]