summary refs log tree commit diff stats
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html62
1 files changed, 62 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..7271675
--- /dev/null
+++ b/index.html
@@ -0,0 +1,62 @@
+<!doctype html>
+<html lang="en">
+    <head>
+        <meta charset="UTF-8"/>
+	<meta http-equiv="X-UA-Compatible" content="IE=edge">
+	<meta name="viewport" content="width=device-width, initial-scale=1.0">
+        <title>~/homepage</title>
+	<style>
+	 :root {
+	     --background: #FFFCFF;
+	     --foreground: #282629;
+	     --blue: #53A6E1;
+	     --purple: #BF65F0;
+	 }
+
+	 @media (prefers-color-scheme: dark) {
+	     :root {
+		 --background: #282629;
+		 --foreground: #FFFCFF;
+		 --blue: #66BFFF;
+		 --purple: #CC78FA;
+	     }
+	 }
+
+	 * {box-sizing: border-box;}
+	 body {
+	     margin: 0;
+	     font-family: monospace;
+	     font-size: 1rem;
+	     display: flex;
+	     flex-direction: column;
+	     align-items: center;
+	     justify-content: center;
+	     height: 100vh;
+	     width: 100%;
+	     background: var(--background);
+	     color: var(--foreground);
+	 }
+
+	 a {
+	     color: var(--blue);
+	     display: inline-block;
+	     text-decoration: none;
+	 }
+
+	 pre {font-size: 1rem; margin-top: 0;}
+	 ul {margin: 0; padding: 0}
+	 li {display: inline;list-style: none;}
+	</style>
+    </head>
+    <body>
+<pre>
+      _               _
+     (_)             (_)
+ ___  _   __ _  _ __  _   ___
+/ __|| | / _` || '__|| | / _ \
+\__ \| || (_| || |   | ||  __/
+|___/|_| \__,_||_|   |_| \___|
+==============================
+$ git commit -m "first commit"</pre>
+    </body>
+</html>