Section contribution
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Ada 2024-05-13 21:15:41 +02:00
parent 07b1aeea17
commit 97f1828669
Signed by: ada
GPG key ID: 6A7F898157C6DE6E
5 changed files with 36 additions and 79 deletions

View file

@ -5,3 +5,4 @@ README.md
Dockerfile
docker-compose.yaml
.gitignore
renovate.json

View file

@ -36,8 +36,8 @@ body {
}
h3 {
font-size: 24px;
font-weight: normal;
font-size: large;
font-weight: 600;
color: var(--title-color);
margin-bottom: 2px;
margin-top: 0px;
@ -71,18 +71,19 @@ h1, h2 {
}
h1 {
font-size: 40px;
font-size: xx-large;
font-weight: bolder;
line-height: 2;
}
h2 {
font-size: 32px;
font-size: x-large;
}
header {
text-align: center;
p {
font-size: 20px;
font-size: medium;
font-weight: 600px;
word-spacing: 3px;
}

View file

@ -3,8 +3,10 @@
<head>
<meta charset="utf-8">
<title>Ada blog</title>
<title>Ada website</title>
<link rel="stylesheet" href="/ui.css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Ada personal website">
</head>
<body>

View file

@ -6,26 +6,38 @@
</header>
<main>
<h2>$ whoami</h2>
<div id="woami">
<h2>$ whoami</h2>
<p>
I am currently a student in security. I spend my time to make a useless network and system infrastructure. I love free software (!=opensource).
</p>
</div>
<p>
I am currently a student in security. I spend my time to make a useless network and system infrastructure. I love free software (!=opensource).
</p>
<div id="projects">
<h2>$ ls Project</h2>
<h2>$ ls Project</h2>
<h3><a href="https://git.gnous.eu/ada/hac">Homelab</a></h3>
<p>A small lab to learn network and system. I use Proxmox in bare-metal and Ubuntu for my virtual machines. I
automate some task with Ansible.</p>
<h3><a href="https://git.gnous.eu/ada/hac">Homelab</a></h3>
<p>A small lab to learn network and system. I use Proxmox in bare-metal and Ubuntu for my virtual machines. I
automate some task with Ansible.</p>
<h3><a href="https://git.gnous.eu/gnouseu/plakken">Plakken</a></h3>
<p>A web paste (like hastebin) written in go</p>
<h3><a href="https://git.gnous.eu/gnouseu/plakken">Plakken</a></h3>
<p>A web paste (like hastebin) written in go</p>
<h3><a href="https://git.gnous.eu/ada/spiegel">Spiegel</a></h3>
<p>A tools written in Go for mirror a repository.</p>
<h3><a href="https://git.gnous.eu/ada/spiegel">Spiegel</a></h3>
<p>A tools written in Go for mirror a repository.</p>
<h3><a href="https://ilearned.eu">I Learned</a></h3>
<p>A dead collaborative blog</p>
<h3><a href="https://ilearned.eu">I Learned</a></h3>
<p>A dead collaborative blog</p>
</div>
<div id="contribution">
<h3>Contribution</h3>
<ul>
<li><a href="https://codeberg.org/forgejo/forgejo/">Forgejo</a> (Go)</li>
<li><a href="https://gnous.eu">Gnous</a> (Ansible, CI/CD, Docker)</li>
</ul>
</div>
</main>
<footer>

59
ui.css
View file

@ -1,59 +0,0 @@
:root {
--main-width: 85vw;
--title-color: #ff008C;
--bg-color: white;
--text-color: #212121;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #212121;
--text-color: white;
}
}
/* large screen */
@media only screen and (min-width: 868px) {
:root {
--main-width: 50vw;
}
}
html {
font-family: system-ui;
scroll-behavior: smooth;
color: var(--text-color);
}
body {
max-width: var(--main-width);
margin-left: auto;
margin-right: auto;
background-color: var(--bg-color);
line-height: 1.65
}
h3 {
font-weight: normal;
color: var(--title-color)
}
a {
color: dodgerblue;
text-decoration: none;
transition: ease 250ms
}
a:hover {
color: var(--title-color);
text-decoration: underline;
}
h1, h2 {
font-weight: 600;
color: var(--title-color)
}
h1 {
line-height: 2;
}