aboutsummaryrefslogtreecommitdiff
path: root/src/code.html
blob: 1e009d6f5b2d3e1972c4b15687dfdd3bfbb70cb9 (plain)
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
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <title>{title}</title>
        <style>
            html, body \{
                background-color: #002b36;
                height: 100%;
            }
            :hover \{
                color: white !important;
            }
            .code \{
                color: #93a1a1;
            }
            .linenumbers \{
                -ms-user-select: none;
                -moz-user-select: none;
                -webkit-user-select: none;
                -khtml-user-select: none;
                -o-user-select: none;
                user-select: none;
            }
            .linenumbers a \{
                color: #586e75;
                text-decoration: none;
            }
        </style>
    </head>
    <body>
        {code | raw}
    </body>
</html>