Skip to content

Commit

Permalink
Add link styles and focus styles to anchor tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jkyberneees committed Mar 22, 2024
1 parent e5bff8f commit b32203c
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@
box-sizing: border-box;
}

a {
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

a:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
}

a:focus-visible {
outline: 5px auto -webkit-focus-ring-color;
}

@media (min-width: 1000px) {
.project {
width: calc(30%);
Expand Down Expand Up @@ -106,7 +123,9 @@
margin-bottom: 20px;
}

h1, h2, h3 {
h1,
h2,
h3 {
font-weight: 500;
}

Expand Down Expand Up @@ -355,7 +374,7 @@ <h3>http-cache-middleware</h3>
<footer class="footer">
21no.de © 2022 - 2024 | <a href="mailto:contact@21no.de">Contact Us</a>
</footer>

<script type="text/javascript" charset="UTF-8"
src="//cdn.cookie-script.com/s/28dc51cd1b79414f499d222fffd2095d.js"></script>
<!-- Google tag (gtag.js) -->
Expand Down

0 comments on commit b32203c

Please sign in to comment.