diff --git a/build/app.css b/build/app.css index a293e71..c859653 100644 --- a/build/app.css +++ b/build/app.css @@ -1 +1 @@ -body{background:yellow} +html{margin:0}body{margin:0;background:#F2F2F2}body>header{padding:2rem;background:#282A36;color:white}body>header a{color:#87D2C8} diff --git a/build/index.html b/build/index.html index 1e1d436..280b35d 100644 --- a/build/index.html +++ b/build/index.html @@ -7,11 +7,17 @@
+- Home -
+ [ sharpshark28@joewroten.com ] (master) ~/portfolio +- Home -
+ [ sharpshark28@joewroten.com ] (master) ~/portfolio +{{ description }}
diff --git a/layouts/layout/index.html b/layouts/layout/index.html new file mode 100644 index 0000000..4966fbb --- /dev/null +++ b/layouts/layout/index.html @@ -0,0 +1,34 @@ + + + + +
+ [ sharpshark28@joewroten.com ] (master) ~/portfolio
+
+ npm start
+
+ Starting up server, serving ./ on port: 8080 ...
+
+ Resume accessible @ ./resume.pdf
+
{{ description }}
+ + {{{ contents }}} + + + + + + diff --git a/src/app.scss b/src/app.scss index 7936173..27cab5e 100644 --- a/src/app.scss +++ b/src/app.scss @@ -1,3 +1,16 @@ -body { - background: yellow; +html { + margin: 0; +} + +body { + margin: 0; + background: #F2F2F2; + > header { + padding: 2rem; + background: #282A36; + color: white; + a { + color: #87D2C8; + } + } }