File: layout.html

package info (click to toggle)
metrics-clojure 2.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 404 kB
  • sloc: makefile: 135; xml: 99; python: 22
file content (74 lines) | stat: -rw-r--r-- 2,123 bytes parent folder | download | duplicates (3)
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
67
68
69
70
71
72
73
74
{% extends "basic/layout.html" %}

{% block htmltitle %}
    {{ super() }}

    {% if using_theme %}
        <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
    {% endif %}
{% endblock %}

{% block sidebarlogo %}
    {{ super() }}
{% endblock %}

{% block footer %}
    {{ super() }}

    <style type="text/css">
      .badge {
        position: fixed;
        display: block;
        bottom: 5px;
        height: 40px;
        text-indent: -9999em;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
        -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
        -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
      }
      #version_menu {
        position: fixed;
        display: none;
        bottom: 11px;
        right: 166px;
        list-style-type: none;
        margin: 0;
      }
      .footer_popout:hover #version_menu {
        display: block;
      }
      #version_menu li {
        display: block;
        float: right;
      }
      #version_menu li a {
        display: block;
        padding: 6px 10px 4px 10px;
        margin: 7px 7px 0 0;
        font-weight: bold;
        font-size: 14px;
        height: 20px;
        line-height: 17px;
        text-decoration: none;
        color: #fff;
        background: #8ca1af url(../images/gradient-light.png) bottom left repeat-x;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        box-shadow: 0 1px 1px #465158;
        -moz-box-shadow: 0 1px 1px #465158;
        -webkit-box-shadow: 0 1px 1px #465158;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
      }
      #version_menu li a:hover {
        text-decoration: none;
        background-color: #697983;
        box-shadow: 0 1px 0px #465158;
        -moz-box-shadow: 0 1px 0px #465158;
        -webkit-box-shadow: 0 1px 0px #465158;
      }
    </style>
{% endblock %}