12345678910111213141516171819202122232425262728293031 |
- <!doctype html>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>instant.page test</title>
- <style>
- body {
- background: lightskyblue;
- overflow-y: scroll;
- font-family: system-ui, sans-serif;
- }
- a {
- display: block;
- background: hsla(0, 0%, 100%, .25);
- padding: .5em;
- margin: .5em 0;
- border: 3px solid hsla(0, 0%, 100%, .25);
- text-decoration: none;
- color: #008;
- font-size: 1.5em;
- }
- a:hover {
- border-color: hsla(0, 0%, 100%, 1);
- }
- a:active {
- background: hsla(0, 0%, 0%, .25);
- }
- </style>
|