Skip to content

Commit b32203c

Browse files
committed
Add link styles and focus styles to anchor tags
1 parent e5bff8f commit b32203c

1 file changed

Lines changed: 21 additions & 2 deletions

File tree

index.html

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,23 @@
1414
box-sizing: border-box;
1515
}
1616

17+
a {
18+
text-decoration: none;
19+
}
20+
21+
a:hover {
22+
text-decoration: underline;
23+
}
24+
25+
a:focus {
26+
outline: 1px dotted;
27+
outline: 5px auto -webkit-focus-ring-color;
28+
}
29+
30+
a:focus-visible {
31+
outline: 5px auto -webkit-focus-ring-color;
32+
}
33+
1734
@media (min-width: 1000px) {
1835
.project {
1936
width: calc(30%);
@@ -106,7 +123,9 @@
106123
margin-bottom: 20px;
107124
}
108125

109-
h1, h2, h3 {
126+
h1,
127+
h2,
128+
h3 {
110129
font-weight: 500;
111130
}
112131

@@ -355,7 +374,7 @@ <h3>http-cache-middleware</h3>
355374
<footer class="footer">
356375
21no.de © 2022 - 2024 | <a href="mailto:contact@21no.de">Contact Us</a>
357376
</footer>
358-
377+
359378
<script type="text/javascript" charset="UTF-8"
360379
src="//cdn.cookie-script.com/s/28dc51cd1b79414f499d222fffd2095d.js"></script>
361380
<!-- Google tag (gtag.js) -->

0 commit comments

Comments
 (0)