aboutsummaryrefslogtreecommitdiff
path: root/design/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'design/Main.hs')
-rw-r--r--design/Main.hs13
1 files changed, 9 insertions, 4 deletions
diff --git a/design/Main.hs b/design/Main.hs
index 42c0815..cd0218e 100644
--- a/design/Main.hs
+++ b/design/Main.hs
@@ -79,8 +79,8 @@ main = putCss $ do
"counter-reset" -: "ol"
li ? do
- desktop $ paddingLeft (px 30)
- mobile $ paddingLeft (px 20)
+ desktop $ paddingLeft (px 40)
+ mobile $ paddingLeft (px 30)
position relative
textAlign justify
before & do
@@ -89,9 +89,14 @@ main = putCss $ do
top (px 0)
left (px 0)
"counter-increment" -: "ol"
- "content" -: "counter(ol)\".\""
+ "content" -: "counter(ol)"
marginRight (px 10)
- color color1
+ backgroundColor color1
+ color white
+ sym borderRadius (pct 50)
+ fontWeight bold
+ width (em 1.6)
+ textAlign (alignSide sideCenter)
mobile :: Css -> Css
mobile = query Media.screen [ Media.maxWidth responsiveLimit ]