This commit is contained in:
Ale 2023-07-05 00:00:47 +02:00
parent d1017f45cf
commit 01f671f2fb
15 changed files with 8866 additions and 125 deletions

84
App/src/Styles/index.css Normal file
View file

@ -0,0 +1,84 @@
@font-face {
font-family: 'victor mono';
src: url("/Assets/VictorMono-Regular.ttf");
}
body{
background-color: #282a36;
display: flex;
justify-content: center;
margin: 0;
padding: 0;
}
#content {
border-left: #44475a solid;
border-right: #44475a solid;
border-width: 1px;
max-width: 800px;
font-family: 'victor mono';
padding-left: 20px;
padding-right: 20px;
}
#content h1 {
color: #ff79c6
}
#content h1 strong{
color: #bd93f9
}
#content p {
color: #f8f8f2
}
#content p strong {
color: #bd93f9
}
#content p i {
color: #8be9fd
}
#content p a {
color: #ffb86c;
font-style: normal;
text-decoration:none
}
#content .paragraphwpic {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#content .paragraphwpic p {
width: 30%;
flex-grow: 1;
margin-left: 5px;
margin-right: 5px;
margin-top: 0;
}
#content .paragraphwpic img {
width: 500px;
height: 300px;
margin-top: 5px;
flex-shrink: 0;
border: #44475a solid;
border-width: 1px;
margin-left: 5px;
margin-right: 5px;
}
hr { display: block; height: 1px;
border: 0; border-top: 1px solid #44475a;
margin: 0 0; padding: 0;
}
.commandline{
background-color: #44475a;
}
.commandline >*{
color : #8be9fd!important
}

1
App/src/env.d.ts vendored Normal file
View file

@ -0,0 +1 @@
/// <reference types="astro/client" />

View file

48
App/src/pages/index.astro Normal file
View file

@ -0,0 +1,48 @@
---
import "../Styles/index.css"
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Cakey's home directory</title>
</head>
<body>
<div id="content">
<h1>/home/<strong>alecake</strong></h1>
<div id="intro">
<div class="commandline">
<p>cat ~/intro.md</p>
</div>
<p>
Howdy~ I'm <strong>Ale</strong>, lot's of people know me as cake though.
I'm somewhat of a software developer, though i enjoy doing basically
anything that is actually fun.
</p>
<hr>
<div class="commandline">
<p>cat ~/intropart2idk.md</p>
</div>
<span class="paragraphwpic">
<p>
If you are my friend you may already know, but I'm very much obsessed
with open source crap, that's why this website is hosted on my git istance,
and that's why i use linux, specifically, i'm using <a href="https://get.opensuse.org/tumbleweed/">opensuse tumbleweed</a>
in this screenshot and i'd say that it is quite the nice distro overall, though i did have some issues with gnome and
nautilus not working exactly <i>nicely</i> after an update.
</p>
<img src="/Assets/Homepage/desktop.png">
</span>
<p>
As you might have noticed, dear reader, i <i>like</i> evangelion
and with like, i mean that it's one of my favorite pieces of media ever.
</p>
</div>
</div>
</body>
</html>