initial commit

This commit is contained in:
Rosia E Evans 2025-05-22 23:38:37 +01:00
commit 6d352c7e5b
2 changed files with 76 additions and 0 deletions

34
index.html Normal file
View file

@ -0,0 +1,34 @@
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<h1>--earlydays.space--</h1>
<blockquote>its early days yet, things can change </blockquote>
<p>
toki!
<br>
earlydays is a domain hosting a collection
of low-spec, libre tools used by various people.
<br>
<br>
if you want an account on anything or need
any help, contact <a href="https://rosia.me">rosia</a>
at <a href="mailto:rosiaeevans@gmail.com">rosiaeevans@gmail.com</a>
</p>
<h2>-current tools-</h2>
<ul>
<li>
<a href="https://reader.earlydays.space">reader.earlydays.space</a>,
a miniflux rss reader
</li>
<li>
<a href="https://search.earlydays.space">search.earlydays.space</a>,
a libre search engine
</li>
</ul>
<html>

42
style.css Normal file
View file

@ -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;
}
}