From 6ce886dfd50b097827347804a5421ba610d83218 Mon Sep 17 00:00:00 2001 From: Gibheer Date: Mon, 26 Oct 2015 08:54:02 +0100 Subject: [PATCH] add initial css style This is a basic prototype of the future layout. --- themes/zero/static/style.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 themes/zero/static/style.css diff --git a/themes/zero/static/style.css b/themes/zero/static/style.css new file mode 100644 index 0000000..ca70b1d --- /dev/null +++ b/themes/zero/static/style.css @@ -0,0 +1,16 @@ +* { + box-sizing: border-box; +} + +.entries { + list-style-type: none; + display: flex; + flex-flow: row wrap; + justify-content: center; +} + +.entries > li { + width: 33%; + min-width: 400px; + padding: 1em; +}