summaryrefslogtreecommitdiff
path: root/greenbox/templates/base_generic.html
blob: 29e05b23a4963340ee9bb5f2acc9bed6735bb478 (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
62
63
64
65
66
<html>
    <head>
        <title>{% block page_title %}Home{% endblock %} :: the Green Box</title>
        <style type="text/css" media="screen">

            /* LAYOUT ELEMENTS */

            body {
                margin: 0px;
                padding: 0px;
                font: 12px Verdana, sans-serif;
            }

            #contents {
                margin: 20px;
            }

            /* HEADLINES */

            h1, h2, h3, h4, h5 {
                font-weight: lighter;
                font-family: Georgia, Times, 'Times New Roman', serif;
            }

            h1 { font-size: 4em; }
            h2 { font-size: 3em; }
            h3 { font-size: 2em; }

            h1 {
                padding: 20px;
                background-color: darkgreen;
                color: white;
            }

            h1 .trivial {
                color: green;
            }

            /* LINKS */

            a {
                color: green;
                text-decoration: none;
                border-bottom: 1px dashed lightgreen;
            }

            a:hover {
                border-bottom: 1px solid green;
            }

            /* TEXT STYLES */

            #recipe_description {
                font-style: italic;
            }
        </style>
    </head>

    <body>
        <h1><span class="trivial">the</span> Green Box</h1>
        <div id="contents">
            <h2>{% block title %}{% endblock %}</h2>
            {% block contents %}{% endblock %}
        </div>
    </body>
</html>