header.html 559 B

12345678910111213141516171819202122232425262728293031
  1. <!doctype html>
  2. <meta charset="utf-8">
  3. <meta name="viewport" content="width=device-width, initial-scale=1">
  4. <title>instant.page test</title>
  5. <style>
  6. body {
  7. background: lightskyblue;
  8. overflow-y: scroll;
  9. font-family: system-ui, sans-serif;
  10. }
  11. a {
  12. display: block;
  13. background: hsla(0, 0%, 100%, .25);
  14. padding: .5em;
  15. margin: .5em 0;
  16. border: 3px solid hsla(0, 0%, 100%, .25);
  17. text-decoration: none;
  18. color: #008;
  19. font-size: 1.5em;
  20. }
  21. a:hover {
  22. border-color: hsla(0, 0%, 100%, 1);
  23. }
  24. a:active {
  25. background: hsla(0, 0%, 0%, .25);
  26. }
  27. </style>