aboutsummaryrefslogtreecommitdiff
path: root/public/static
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2020-02-22 17:36:13 -0500
committerKevin J Hoerr <kjhoerr@protonmail.com>2020-02-22 17:36:13 -0500
commit5fa41a15f8f41c7f04d05a487ddb01930639f393 (patch)
tree0bb71b2d5c65cb2737713ebf651c7ace499b221d /public/static
parentcbcbeb40afa10272003657eb06376a7e8663856c (diff)
downloadao-coverage-5fa41a15f8f41c7f04d05a487ddb01930639f393.tar.gz
ao-coverage-5fa41a15f8f41c7f04d05a487ddb01930639f393.tar.bz2
ao-coverage-5fa41a15f8f41c7f04d05a487ddb01930639f393.zip
#2 Add CSS, favicon for landing page
Diffstat (limited to 'public/static')
-rw-r--r--public/static/favicon.icobin0 -> 14225 bytes
-rw-r--r--public/static/index.css59
2 files changed, 59 insertions, 0 deletions
diff --git a/public/static/favicon.ico b/public/static/favicon.ico
new file mode 100644
index 0000000..24bebc8
--- /dev/null
+++ b/public/static/favicon.ico
Binary files differ
diff --git a/public/static/index.css b/public/static/index.css
new file mode 100644
index 0000000..df05342
--- /dev/null
+++ b/public/static/index.css
@@ -0,0 +1,59 @@
+body {
+ margin: 0;
+}
+
+div#top-half {
+ background-color: #c6e3a4;
+ padding: 8px;
+}
+div#bottom-half {
+ padding: 12px;
+}
+
+div#container {
+ margin: 0 auto;
+ width: 600px;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
+}
+
+div#logo {
+ width: 256px;
+ height: 256px;
+ margin: 0 auto;
+ pointer-events: none;
+ user-select: none;
+}
+
+div#content {
+ padding-bottom: 8px;
+}
+
+div#container h1 {
+ text-align: center;
+ font-weight: 500;
+ margin: 12px 0 0;
+}
+
+div#content p {
+ text-align: justify;
+ padding: 0 10px;
+}
+
+.code-container {
+ text-align: center;
+ margin: 24px 0;
+}
+.code {
+ background-color: #e8ebf4;
+ color: #000;
+ font-family: 'Courier New', Courier, monospace;
+ font-size: inherit;
+ padding: 6px 14px;
+ border: 0px solid #e8ebf4;
+ border-radius: 4px;
+ left: auto;
+ right: auto;
+}
+.code.shell:before {
+ content: "$ ";
+} \ No newline at end of file