Skip to content

Commit

Permalink
Change a tag
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkoetzler committed Nov 23, 2024
1 parent 902cc8c commit 99cb48c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion index.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
/* Colors */
--primary-color: #181818;
--on-primary-color: #EDE6D6;
--unvisited-link: #03B1FC;
--visited-link: lightpink;

/* Font sizes */
--tiny-font-size: 14px;
Expand Down Expand Up @@ -175,8 +177,12 @@ h1 {
font-size: var(--large-font-size);
}

a:link {
color: var(--unvisited-link);
}

a:visited {
color: lightpink;
color: var(--visited-link);
}

#about-me>img {
Expand Down

0 comments on commit 99cb48c

Please sign in to comment.