From f69f14ddbd0a9e1255608fd07a27a4b826a4953e Mon Sep 17 00:00:00 2001 From: cronyakatsuki <64900606+cronyakatsuki@users.noreply.github.com> Date: Thu, 10 Nov 2022 20:44:15 +0100 Subject: [PATCH] Root commit. --- README.md | 1 + index.html | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 119 insertions(+) create mode 100644 README.md create mode 100644 index.html create mode 100644 style.css diff --git a/README.md b/README.md new file mode 100644 index 0000000..6792c0f --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# startpage diff --git a/index.html b/index.html new file mode 100644 index 0000000..676f6bc --- /dev/null +++ b/index.html @@ -0,0 +1,61 @@ + + + + + + + StartPage + + + +
+
+
+ +
+
+
+

Tools

+ Temp Mail + UFO Test + Syncthing +
+ +
+

Linux Gaming

+ Are we anticheat yet! + ProtonDB +
+ +
+

Fun

+ Piped + Odysee + Incremancer + MonkeType +
+ +
+

Privacy

+ Filen + SimpleLogin + Have I Been Pwned +
+ +
+

Generic

+ Yts Movies + 1377x.to + Library Genesis +
+ +
+

Weeb Shit

+ nyaa.si + anilist +
+
+
+
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..163cd74 --- /dev/null +++ b/style.css @@ -0,0 +1,57 @@ +body { + background-color: #181926; + color: #cad3f5; +} + +.outer { + display: table; + position: absolute; + top: 0; + bottom: 0; + height: 100%; + width: 99.49%; +} + +.middle { + display: table-cell; + vertical-align: middle; +} + +input[type=text] { + display: block; + margin: 0 auto; + width: 50%; + height: 40px; + padding: 20px 20px; + box-sizing: border-box; + border: none; + border-radius: 200px; + font-size: 10px; + background-color: #24273a; + margin-bottom: 2%; + margin-top: -10%; + color: #cad3f5; +} + +.main { + display: block; + margin: auto; + width: fit-content; + border: 4px solid #24273a; +} + +.category { + display: inline-block; + padding: 10px; + vertical-align: top; + text-align: center; +} + +.link { + display: block; + color: #939ab7; +} + +a { + text-decoration: none; +}