summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/css/style.css35
-rw-r--r--public/images/favicon-32.pngbin0 -> 1254 bytes
-rw-r--r--public/images/logo.svg5
-rw-r--r--public/index.php17
4 files changed, 57 insertions, 0 deletions
diff --git a/public/css/style.css b/public/css/style.css
new file mode 100644
index 0000000..edc12ff
--- /dev/null
+++ b/public/css/style.css
@@ -0,0 +1,35 @@
+html, body {
+ font-family: "Helvetica", "Arial", sans-serif;
+ font-weight: 200;
+}
+
+.full-height {
+ height: 80vh;
+}
+
+.flex-center {
+ align-items: center;
+ display: flex;
+ justify-content: center;
+}
+
+.position-ref {
+ position: relative;
+}
+
+.content {
+ text-align: center;
+}
+
+.links > a {
+ color: #35157f;
+ padding: 0 15px;
+ font-weight: bolder;
+ font-size: larger;
+ letter-spacing: .1rem;
+ text-decoration: none;
+}
+
+.logo {
+ margin-bottom: 60px;
+} \ No newline at end of file
diff --git a/public/images/favicon-32.png b/public/images/favicon-32.png
new file mode 100644
index 0000000..a24adc4
--- /dev/null
+++ b/public/images/favicon-32.png
Binary files differ
diff --git a/public/images/logo.svg b/public/images/logo.svg
new file mode 100644
index 0000000..25ba931
--- /dev/null
+++ b/public/images/logo.svg
@@ -0,0 +1,5 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200.3 167.7">
+ <path d="M6 66l95 96h36V93l-36-74H42L6 56v106h36l24-35" fill="none" stroke="#512da8" stroke-width="3"/>
+ <path d="M137 93l58-3-12-58-32-26h-34l-16 13-23 9-12 22 46 52z" fill="none" stroke="#512da8" stroke-width="3"/>
+ <path d="M195 90l-12 57h-13l-2-56m2 56l-13-11h12" fill="none" stroke="#512da8" stroke-width="3"/>
+</svg>
diff --git a/public/index.php b/public/index.php
new file mode 100644
index 0000000..92e0753
--- /dev/null
+++ b/public/index.php
@@ -0,0 +1,17 @@
+<?php
+
+declare(strict_types=1);
+
+use Phel\Phel;
+
+$projectRootDir = dirname(__DIR__);
+require $projectRootDir . '/vendor/autoload.php';
+
+$appFile = $projectRootDir . "/out/index.php";
+
+if (file_exists($appFile)) {
+ require_once $appFile;
+} else {
+ Phel::run($projectRootDir, 'web-skeleton\app');
+}
+