From 6d352c7e5b6342750abfe27e760d58b4d33654eb Mon Sep 17 00:00:00 2001 From: Rosia E Evans Date: Thu, 22 May 2025 23:38:37 +0100 Subject: [PATCH] initial commit --- index.html | 34 ++++++++++++++++++++++++++++++++++ style.css | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..7028a36 --- /dev/null +++ b/index.html @@ -0,0 +1,34 @@ + + + + + +

--earlydays.space--

+ +
its early days yet, things can change
+ +

+toki! +
+earlydays is a domain hosting a collection +of low-spec, libre tools used by various people. +
+
+if you want an account on anything or need +any help, contact rosia +at rosiaeevans@gmail.com +

+ +

-current tools-

+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..6f67b23 --- /dev/null +++ b/style.css @@ -0,0 +1,42 @@ +body{ + background: #2A7B9B; + background: linear-gradient(135deg, #bbbb9c 0%, #659f8d 50%, #2c7d77 100%); + background-size: 100vw 100vh; + border: solid white 2px; + + color:#defff6; + + padding: 20px; + margin: auto; + margin-top: 20%; + width: 40%; + + text-align: center; +} + +ul{ + text-align: left; +} + +blockquote{ + font-style: oblique; +} + +a{ + background-color: none; + color: #defff6; + transition: background-color 1s; +} + +a:hover{ + background-color: #2f6b5f; + color: #a6ceca; +} + +@media screen and (max-width:1000px){ + body{ + width: 80%; + font-size: 2rem; + } + +}