From 93af695f08ba0cd76210a6f965c2424b1c0745f0 Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Wed, 7 Sep 2016 11:37:07 +0200 Subject: add made by field --- public/stylesheets/hello.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 public/stylesheets/hello.css (limited to 'public') diff --git a/public/stylesheets/hello.css b/public/stylesheets/hello.css new file mode 100644 index 0000000..edcbc92 --- /dev/null +++ b/public/stylesheets/hello.css @@ -0,0 +1,23 @@ +* { + box-sizing: border-box; +} + +html, body { + margin: 0; + font-family: 'Roboto', sans-serif; + display: flex; + flex-direction: column; + justify-content: center; + text-align: center; + width: 100vw; + height: 100vh; + color: gray; +} + +.ideas { + font-size: 0.8em; +} + +a { + color: #3f51b5; +} -- cgit v1.1