summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcyfraeviolae <cyfraeviolae>2021-01-01 01:32:44 -0500
committercyfraeviolae <cyfraeviolae>2021-01-01 01:32:44 -0500
commitb1eec95b6d578b890b5a957b6e61378d5eedab14 (patch)
tree4a5e78214fe422e703f68ce2f845d6ed5bce7b53 /src
parente8f536fdea54484d294ff80b53272e989be737bd (diff)
css
Diffstat (limited to 'src')
-rw-r--r--src/Lib.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Lib.hs b/src/Lib.hs
index 48f30a9..32cbb3f 100644
--- a/src/Lib.hs
+++ b/src/Lib.hs
@@ -397,7 +397,7 @@ instance ToHtml PlayView where
p_ . toHtmlRaw $ feedback level misses
p_ $ em_ $ do
a_ [href_ (playURI mediumTags periods level Nothing)] "Retry"
- span_ ", or "
+ span_ " or "
a_ [href_ homeURI] "choose different folios and periods"
span_ "."
div_ [class_ "row"] $ table_ $ do
@@ -439,14 +439,14 @@ pageTemplate crumbs body = doctypehtml_ $ do
div_ [class_ "row navbar"] $
sequence_ $
L.intersperse
- (span_ [] (toHtmlRaw (T.pack " / ")))
+ (span_ [class_ "sep"] (toHtmlRaw (T.pack " | ")))
(crumb : crumbs)
body
where
- crumb = do
+ crumb = span_ [class_ "ico"] $ do
a_ [href_ homeURI, class_ "title"] (strong_ "Antiquitysort")
span_ "@"
- a_ [href_ "https://cyfraeviolae.org", class_ "title"] "cyfraeviolae"
+ a_ [href_ "https://cyfraeviolae.org"] "cyfraeviolae.org"
tshow :: Show a => a -> T.Text
tshow = T.pack . show