summaryrefslogtreecommitdiff
path: root/qutebrowser/html/styled.html
blob: 5d0adeff8ea6ba9d3f4239d869d47a043f402fd8 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{% extends "base.html" %}

{% block style %}
a {
    text-decoration: none;
    color: #2562dc
}

a:hover {
    text-decoration: underline;
}

body {
    background: #fefefe;
    font-family: sans-serif;
    margin: 0 auto;
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
}

h1 {
    color: #444;
    font-weight: normal;
}

h2 {
    font-weight: normal;
}

table {
    border-collapse: collapse;
    width: 100%;
}

tbody tr:nth-child(odd) {
    background-color: #f8f8f8;
}

td {
    max-width: 50%;
    padding: 2px 5px;
    text-align: left;
}

.hostname {
    color: #858585;
    font-size: 0.9em;
    margin-left: 10px;
    text-decoration: none;
}

.note {
    font-size: smaller;
    color: grey;
}

.mono {
    font-family: monospace;
}
{% endblock %}