Skip to content

Commit

Permalink
Improve colours
Browse files Browse the repository at this point in the history
  • Loading branch information
Brottweiler committed Aug 9, 2024
1 parent 654fd9f commit 08f8799
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
body {
background-color: #222;
background-image: url("img/bg.png");
color: White;
background-image: url('img/bg.png');
color: #e0d0d0;
}
main {
max-width: 600px;
Expand All @@ -13,11 +13,17 @@ p, td, li {
h1,h2,h3,h4,h5,h6 {
font-family: serif;
}
a {
color: LightSkyBlue;
a:link {
color: #aaf;
}
a:hover {
color: White;
}
a:visited {
color: MediumPurple;
color: #aaa;
}
a:active {
color: #ff0;
}
span.online {
color: Lime;
Expand Down

0 comments on commit 08f8799

Please sign in to comment.