diff options
Diffstat (limited to 'src/server/Design/Constants.hs')
-rw-r--r-- | src/server/Design/Constants.hs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/server/Design/Constants.hs b/src/server/Design/Constants.hs new file mode 100644 index 0000000..6c4ab90 --- /dev/null +++ b/src/server/Design/Constants.hs @@ -0,0 +1,27 @@ +module Design.Constants where + +import Clay + +iconFontSize :: Size Abs +iconFontSize = px 32 + +radius :: Size Abs +radius = px 3 + +blockPadding :: Size Abs +blockPadding = px 15 + +blockPercentWidth :: Double +blockPercentWidth = 90 + +blockPercentMargin :: Double +blockPercentMargin = (100 - blockPercentWidth) / 2 + +blockMarginBottom :: Size Abs +blockMarginBottom = px 50 + +rowHeight :: Size Abs +rowHeight = px 60 + +inputHeight :: Integer +inputHeight = 40 |