diff options
author | Noah Loomans <noahloomans@gmail.com> | 2016-09-07 11:37:07 +0200 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2016-09-07 11:37:07 +0200 |
commit | 93af695f08ba0cd76210a6f965c2424b1c0745f0 (patch) | |
tree | ccb7f5dba21b4bdd6cad688f302d3389913ddd10 /public/stylesheets/hello.css | |
parent | 57e142dc6f5dfc6c6394d04ff4e807bb8288a417 (diff) |
add made by field
Diffstat (limited to 'public/stylesheets/hello.css')
-rw-r--r-- | public/stylesheets/hello.css | 23 |
1 files changed, 23 insertions, 0 deletions
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; +} |