about summary refs log tree commit diff stats
path: root/html/sans/index.html
blob: 3598441c17d3841a7a7c80f09da5d94fbadeaa9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>small and nearly silent</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Shantell+Sans:wght@400&display=swap');
        :focus {
            outline: 4px solid #ffd000;
            outline-offset: 2px;
            border-radius: 7px;
        }
        body {
            font-family: 'Shantell Sans', sans-serif;
            font-size: 22px;
            background-color: #393939;
            color: #fff;
            padding: 1em 2em;
        }
        main {
            max-width: 42em;
            margin: 0 auto;
        }
        li {
            list-style-type: disclosure-closed;
        }
        a {
            color: #46acff;
            text-decoration: underline;
            transition: ease-in-out 0.2s;
        }
        a:hover {
            color: rgb(241, 118, 241);
            transition: ease-in-out 0.2s;
        }
    </style>
</head>
<body>
    <main>
        <h1>Small and nearly silent</h1>
        <h2>A collection of web toys</h2>
        <p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Soluta ut consectetur sequi qui commodi est quia doloremque inventore ab. At, deserunt optio! Autem at voluptates impedit magni aliquam atque aspernatur.</p>
        <h3>Games</h3>
        <ul>
            <li><a href="">Hill</a>, a demake of Alto's Adventure</li>
            <li><a href="">LAZER GATE ONE</a>, pew pew pew! Click the targets</li>
        </ul>
        <h3>Tools</h3>
        <ul>
            <li><a href="">Ink n switch</a>, a note taking application that lets you type text and draw notes</li>
        </ul>
    </main> 
</body>
</html>