aboutsummaryrefslogtreecommitdiff
path: root/src/client/static/stylesheets/hello.css
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-09-13 16:28:53 +0200
committerNoah Loomans <noahloomans@gmail.com>2017-09-13 16:28:53 +0200
commit3fb86482404e11942cd83c3500a297a3991db0e4 (patch)
treec5e7261de72c2b7f871580784525d06d036a6219 /src/client/static/stylesheets/hello.css
parent5aac32f72eca8c66e879583ce653d07bb3c7370f (diff)
Restructure project
Diffstat (limited to 'src/client/static/stylesheets/hello.css')
-rw-r--r--src/client/static/stylesheets/hello.css23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/client/static/stylesheets/hello.css b/src/client/static/stylesheets/hello.css
new file mode 100644
index 0000000..edcbc92
--- /dev/null
+++ b/src/client/static/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;
+}