diff options
author | Joris | 2017-08-01 00:38:56 +0200 |
---|---|---|
committer | Joris | 2017-08-01 00:38:56 +0200 |
commit | 191512493b0645f85b04b879ec070d4ea913f2de (patch) | |
tree | e78ddd026473ddd8f3d665bd6fdd086ecda031b6 /design | |
parent | ed5b3e04ba9d201efee55c9f47ca159e48cafb3d (diff) |
Add mousse au chocolat receipe
Diffstat (limited to 'design')
-rw-r--r-- | design/Main.hs | 13 |
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 ] |