Add styles

This commit is contained in:
Tessa Kelly 2018-03-07 14:26:30 -08:00
parent c2e0afd10f
commit 5b6de0fb53

View File

@ -50,6 +50,7 @@ import Html exposing (..)
import Html.Styled import Html.Styled
import Html.Styled.Attributes exposing (css) import Html.Styled.Attributes exposing (css)
import Nri.Colors exposing (..) import Nri.Colors exposing (..)
import Nri.Fonts exposing (quizFont)
import Nri.Stylers exposing (makeFont) import Nri.Stylers exposing (makeFont)
import Nri.Ui.Styles.V1 import Nri.Ui.Styles.V1
@ -159,7 +160,12 @@ classString classes =
ugMediumBody : List (Html.Styled.Html msg) -> Html.Styled.Html msg ugMediumBody : List (Html.Styled.Html msg) -> Html.Styled.Html msg
ugMediumBody = ugMediumBody =
Html.Styled.p Html.Styled.p
[ css [] [ css
[ quizFont
, fontSize (px 18)
, lineHeight (px 30)
, color gray20
]
] ]
@ -168,7 +174,12 @@ ugMediumBody =
ugSmallBody : List (Html.Styled.Html msg) -> Html.Styled.Html msg ugSmallBody : List (Html.Styled.Html msg) -> Html.Styled.Html msg
ugSmallBody = ugSmallBody =
Html.Styled.p Html.Styled.p
[ css [] [ css
[ quizFont
, fontSize (px 16)
, lineHeight (px 25)
, color gray20
]
] ]