placeholder in front matter, social media links, open source from github

This commit is contained in:
Franz Klotsche
2025-11-16 18:50:41 +01:00
parent 610f30eadf
commit 1c9e04e308
42 changed files with 1105 additions and 67 deletions

45
public/css/style.css Normal file
View File

@@ -0,0 +1,45 @@
.container {
margin: 0 auto;
width: 80%;
}
nav, footer {
background-color: #333;
color: #fff;
text-align: center;
}
nav {
display: flex;
flex-direction: column;
}
nav > a {
flex: 1;
text-align: center;
text-decoration: none;
color: #fff;
}
@media only screen and (min-width: 768px) {
nav { flex-direction: row; }
}
.project-container { display: flex; }
.project-container .project-list { width: 20%; }
.project-container .project { flex: 1; }
/* might do the same with present(ation) */
.oss {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.oss article {
border: 1px solid #ddd;
box-shadow: 3px 3px 3px #ddd;
margin: 0.5%;
padding: 0.5%;
width: 30%;
}