From 102c1756f6e26731d99bd245de33429bd599adcc Mon Sep 17 00:00:00 2001
From: 8cy <50817549+8cy@users.noreply.github.com>
Date: Wed, 29 Apr 2020 21:20:35 -0700
Subject: add npm copy scripts, v9.2.1
---
dist/ws/favicon.ico | Bin 0 -> 19125 bytes
dist/ws/layouts/layout.hbs | 19 ++++++++
dist/ws/public/css/main.css | 116 ++++++++++++++++++++++++++++++++++++++++++++
dist/ws/views/error.hbs | 1 +
dist/ws/views/index.hbs | 1 +
5 files changed, 137 insertions(+)
create mode 100644 dist/ws/favicon.ico
create mode 100644 dist/ws/layouts/layout.hbs
create mode 100644 dist/ws/public/css/main.css
create mode 100644 dist/ws/views/error.hbs
create mode 100644 dist/ws/views/index.hbs
(limited to 'dist/ws')
diff --git a/dist/ws/favicon.ico b/dist/ws/favicon.ico
new file mode 100644
index 0000000..7f426f3
Binary files /dev/null and b/dist/ws/favicon.ico differ
diff --git a/dist/ws/layouts/layout.hbs b/dist/ws/layouts/layout.hbs
new file mode 100644
index 0000000..844e9da
--- /dev/null
+++ b/dist/ws/layouts/layout.hbs
@@ -0,0 +1,19 @@
+
+
+
+
+
+ {{title}}
+
+
+
+
+
+ {{body}}
+
+
+
+
+
\ No newline at end of file
diff --git a/dist/ws/public/css/main.css b/dist/ws/public/css/main.css
new file mode 100644
index 0000000..993c46a
--- /dev/null
+++ b/dist/ws/public/css/main.css
@@ -0,0 +1,116 @@
+@import url('https://fonts.googleapis.com/css?family=Fira+Mono:400');
+
+body {
+ display: flex;
+ width: 100vw;
+ height: 100vh;
+ align-items: center;
+ justify-content: center;
+ margin: 0;
+ background: #131313;
+ color: #fff;
+ font-size: 96px;
+ font-family: 'Fira Mono', monospace;
+ letter-spacing: -7px;
+}
+
+div {
+ animation: glitch 1s linear infinite;
+}
+
+@keyframes glitch {
+
+ 2%,
+ 64% {
+ transform: translate(2px, 0) skew(0deg);
+ }
+
+ 4%,
+ 60% {
+ transform: translate(-2px, 0) skew(0deg);
+ }
+
+ 62% {
+ transform: translate(0, 0) skew(5deg);
+ }
+}
+
+div:before,
+div:after {
+ content: attr(title);
+ position: absolute;
+ left: 0;
+}
+
+div:before {
+ animation: glitchTop 1s linear infinite;
+ clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
+ -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
+}
+
+@keyframes glitchTop {
+
+ 2%,
+ 64% {
+ transform: translate(2px, -2px);
+ }
+
+ 4%,
+ 60% {
+ transform: translate(-2px, 2px);
+ }
+
+ 62% {
+ transform: translate(13px, -1px) skew(-13deg);
+ }
+}
+
+div:after {
+ animation: glitchBotom 1.5s linear infinite;
+ clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
+ -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
+}
+
+@keyframes glitchBotom {
+
+ 2%,
+ 64% {
+ transform: translate(-2px, 0);
+ }
+
+ 4%,
+ 60% {
+ transform: translate(-2px, 0);
+ }
+
+ 62% {
+ transform: translate(-22px, 5px) skew(21deg);
+ }
+}
+
+#green {
+ color: #05ffa1
+}
+
+a {
+ color: white;
+ text-decoration: none;
+ transition: 0.5s;
+}
+
+a:hover {
+ color: rgb(223, 222, 222);
+ text-decoration: none;
+ transition: 0.5s;
+}
+
+.footer {
+ position: fixed;
+ left: 0;
+ bottom: 0;
+ width: 100%;
+ color: white;
+ text-align: center;
+ font-size: 15px;
+ letter-spacing: -1px;
+}
\ No newline at end of file
diff --git a/dist/ws/views/error.hbs b/dist/ws/views/error.hbs
new file mode 100644
index 0000000..fe49573
--- /dev/null
+++ b/dist/ws/views/error.hbs
@@ -0,0 +1 @@
+Error: {{errtype}}
\ No newline at end of file
diff --git a/dist/ws/views/index.hbs b/dist/ws/views/index.hbs
new file mode 100644
index 0000000..5253033
--- /dev/null
+++ b/dist/ws/views/index.hbs
@@ -0,0 +1 @@
+Status: Online
\ No newline at end of file
--
cgit v1.2.3