diff options
Diffstat (limited to 'static')
| -rw-r--r-- | static/css/app.css | 18 | ||||
| -rw-r--r-- | static/index.html | 23 |
2 files changed, 41 insertions, 0 deletions
diff --git a/static/css/app.css b/static/css/app.css new file mode 100644 index 0000000..ce1f73f --- /dev/null +++ b/static/css/app.css @@ -0,0 +1,18 @@ +* { + margin: 0; + padding: 0 +} + +#lgtm { + height: 100vh; + display: flex; + align-items: center; + justify-content: center; +} + +#lgtm p { + color: #3B3B3B; + font-family: Yrsa, serif; + font-size: 48px; + line-height: 0.96em; +} diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..cc5b8a2 --- /dev/null +++ b/static/index.html @@ -0,0 +1,23 @@ +<!doctype html> +<html> + <head> + <title>LGTM! 👍</title> + + <link href="https://fonts.googleapis.com/css?family=Yrsa:400" rel="stylesheet"> + <link href="/css/app.css" rel="stylesheet"> + + </head> + <body> + <div id="lgtm"> + <p> + Looks <br> + Good <br> + To <br> + Me <br> + <br> + 👍 + </p> + </div> + </body> +</html> + |