Files
eepp/bin/unit_tests/assets/html/anchor_margins.html
2026-04-27 23:58:13 -03:00

66 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #1e2a38;
font:
13px Verdana,
Sans-Serif;
color: #d0d8e0;
line-height: 1.5;
}
a {
color: #60c0e0;
text-decoration: underline;
}
a:hover {
background-color: #2a3a4a;
color: #80d8f0;
}
nav {
background-color: #162028;
text-align: center;
padding: 8px;
position: sticky;
top: 0;
z-index: 10;
border-bottom: 1px solid #2a3a4a;
}
nav a {
margin: 0 10px;
font:
bold 11px Verdana,
Sans-Serif;
text-decoration: none;
color: #80b8d0;
}
nav a:hover {
background-color: #2a3a4a;
color: #a0d8f0;
}
</style>
</head>
<body>
<nav>
<a href="#home">Home</a>
<a href="#features">Features</a>
<a href="#super-enhancement">Super Enhancement</a>
<a href="#downloads">Downloads</a>
<a href="#coming">Coming Soon</a>
<a href="#legal">Legal</a>
</nav>
</body>
</html>