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 Dockerfile
docker-compose.yaml docker-compose.yaml
.gitignore .gitignore
renovate.json

View file

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

View file

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

View file

@ -6,11 +6,14 @@
</header> </header>
<main> <main>
<div id="woami">
<h2>$ whoami</h2> <h2>$ whoami</h2>
<p> <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). 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> </p>
</div>
<div id="projects">
<h2>$ ls Project</h2> <h2>$ ls Project</h2>
@ -26,6 +29,15 @@
<h3><a href="https://ilearned.eu">I Learned</a></h3> <h3><a href="https://ilearned.eu">I Learned</a></h3>
<p>A dead collaborative blog</p> <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> </main>
<footer> <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;
}