aboutsummaryrefslogtreecommitdiff
path: root/css/Project.hs
diff options
context:
space:
mode:
authorJoris2020-09-26 18:16:23 +0200
committerJoris2020-09-26 18:16:23 +0200
commitc9c0a6e8651da823b41e4186a736f2dbb48919db (patch)
treeb87f2758f429169bb0c2361c61b0a1b2bd517c47 /css/Project.hs
parent5ab13f60fcd7b054574bcccaf1065b19a42f4fae (diff)
Show project images
Diffstat (limited to 'css/Project.hs')
-rw-r--r--css/Project.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/css/Project.hs b/css/Project.hs
index 99ddbd4..4d17e42 100644
--- a/css/Project.hs
+++ b/css/Project.hs
@@ -4,6 +4,7 @@ module Project
( style
) where
+import qualified Color
import Clay hiding (style)
style :: Css
@@ -11,3 +12,8 @@ style = do
".Project__Body" ? do
marginTop (px 20)
+
+ ".Project__Body" ? img ? do
+ border solid (px 1) Color.gray
+ sym borderRadius (px 8)
+ width (pct 100)