diff --git a/static/index.html b/static/index.html index fbd0593..b093eed 100644 --- a/static/index.html +++ b/static/index.html @@ -2,16 +2,27 @@ Pulse — Server Status + + + + + + - - -

Pulse

-
+ + +
+

Pulse

+
+
+ \ No newline at end of file diff --git a/static/status.json b/static/status.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/static/status.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/static/style.css b/static/style.css index e69de29..ca42da6 100644 --- a/static/style.css +++ b/static/style.css @@ -0,0 +1,42 @@ +* { + box-sizing:border-box; + margin:0px; + padding:0px; +} +html { + min-height:100%; + overflow-x:hidden; +} +body { + display:flex; + flex-flow:column nowrap; + align-items: center; + background-color: #212429; + color:#e4e4e4; + gap:15px; + font-family: "Fira Sans Condensed", sans-serif; + padding:20px; + &>h1 { + + } +} + +a { + color:inherit; + text-decoration-style: dotted; + &:hover { + text-decoration-style:solid; + } +} + +header { + +} + +main { + +} + +footer { + +} \ No newline at end of file