aboutsummaryrefslogtreecommitdiff
path: root/css/Skills.hs
blob: 96ef74e614658c89c4b0afae435807ff699268a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{-# LANGUAGE OverloadedStrings #-}

module Skills
  ( style
  ) where

import           Clay         hiding (style)
import qualified Clay.Flexbox as CF

style :: Css
style = do

  ".Skills__List" ? do
    display flex
    flexWrap CF.wrap
    sym2 margin (px 5) (px 0)
    paddingLeft (px 0)

  ".Skills__Item" ? do
    lineHeight normal
    borderBottom solid (px 2) lightgray
    margin (px 10) (px 15) (px 5) (px 0)