nicely render project links on section page

This commit is contained in:
Jef Roosens 2024-06-06 10:24:56 +02:00
parent 323b9e2e3c
commit 4374c7f280
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
8 changed files with 56 additions and 1 deletions

View file

@ -21,6 +21,15 @@ header#banner nav ul li a {
color: #cccccc;
}
header#links a {
color: #e0e0e0;
text-decoration: none;
}
header#links nav ul li a {
color: #00b1ed;
}
main#content a {
color: #00b1ed;
}

View file

@ -279,3 +279,29 @@ footer#footer {
color: #b3b3b3;
margin: 40px 0;
}
header#links {
display: inline-block;
}
header#links nav {
display: inline-block;
}
header#links nav ul {
list-style-type: none;
font-size: 1.05em;
text-transform: lowercase;
margin: 0;
padding: 0;
}
header#links nav ul li {
display: inline;
margin: 0 3px;
}
header#links nav ul li a {
color: #007dfa;
text-decoration: none;
}