mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2025-01-01 19:09:01 +03:00
Copy over fonts from nri-elm-css
This commit is contained in:
parent
d9067dee09
commit
f87f3ae482
27
src/Nri/Ui/Fonts/V1.elm
Normal file
27
src/Nri/Ui/Fonts/V1.elm
Normal 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" ]
|
Loading…
Reference in New Issue
Block a user