Section contribution
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
07b1aeea17
commit
97f1828669
5 changed files with 36 additions and 79 deletions
|
@ -5,3 +5,4 @@ README.md
|
|||
Dockerfile
|
||||
docker-compose.yaml
|
||||
.gitignore
|
||||
renovate.json
|
||||
|
|
11
sass/ui.scss
11
sass/ui.scss
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -6,11 +6,14 @@
|
|||
</header>
|
||||
|
||||
<main>
|
||||
<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>
|
||||
|
||||
<div id="projects">
|
||||
|
||||
<h2>$ ls Project</h2>
|
||||
|
||||
|
@ -26,6 +29,15 @@
|
|||
|
||||
<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
59
ui.css
|
@ -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;
|
||||
}
|
Loading…
Reference in a new issue