style: lay out css some more

This commit is contained in:
David Bailey 2023-06-01 22:16:55 +02:00
parent ef96bd935b
commit 366d63c479

View file

@ -1,14 +1,42 @@
body { body {
color: #ddd; color: #B0B0B0;
background: #151515; background: #302A3F;
}
:link {
color: cyan;
font-style: italic;
text-decoration: none;
transition: color 0.2s;
}
:link:hover {
color: lightblue;
}
ul {
display: flex;
flex-direction: row;
justify-content: center;
list-style-type: none;
margin-top: 1em;
padding: 0px;
}
ul li {
padding: 0em 0.3em 0em 0.3em;
} }
#big_title { #big_title {
text-align: center; text-align: center;
margin-bottom: 0.3em; font-size: 2.5em;
margin-bottom: 0.2em;
} }
#title_separator { #title_separator {
height: 2px; height: 1.5px;
background-color: #ddd; background-color: #ddd;
opacity: 0.5;
margin-left: 2em;
margin-right: 2em;
} }