rally/rally/ui/templates/base.html

59 lines
2.6 KiB
HTML

<!doctype html>
<html{% block html_attr %}{% endblock %}>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{%- if version %}
<meta name="generator" content="Rally version {{ version }}">
{%- endif %}
<title>Rally | {% block title_text %}{% endblock %}</title>
{% block libs %}{% endblock %}
<script type="text/javascript">{% block js_before %}{% endblock %}</script>
<style>
body { margin:0; padding:0 0 50px; font-size:14px; font-family:Helvetica,Arial,sans-serif }
a, a:active, a:focus, a:visited { text-decoration:none; outline:none }
p { margin:0; padding:5px 0 }
p.thesis { padding:10px 0 }
h1 { color:#666; margin:0 0 20px; font-size:30px; font-weight:normal }
h2, .h2 { color:#666; margin:24px 0 6px; font-size:25px; font-weight:normal }
h3, .h3 { color:#777; margin:12px 0 4px; font-size:18px; font-weight:normal }
table { border-collapse:collapse; border-spacing:0; width:100%; font-size:12px; margin:0 0 10px }
table th { text-align:left; padding:8px; color:#000; border:2px solid #ddd; border-width:0 0 2px 0 }
table th.sortable { cursor:pointer }
table td { text-align:left; border-top:1px solid #ddd; padding:8px; color:#333 }
table.compact td { padding:4px 8px }
table.striped tr:nth-child(odd) td { background:#f9f9f9 }
table.linked tbody tr:hover { background:#f9f9f9; cursor:pointer }
.rich, .rich td { font-weight:bold }
.code { padding:10px; font-size:13px; color:#333; background:#f6f6f6; border:1px solid #e5e5e5; border-radius:4px }
.header { text-align:left; background:#333; font-size:18px; padding:13px 0; margin-bottom:20px; color:#fff; background-image:linear-gradient(to bottom, #444 0px, #222 100%) }
.header a, .header a:visited, .header a:focus { color:#999 }
.notify-error { padding:5px 10px; background:#fee; color:red }
.status-skip, .status-skip td { color:grey }
.status-pass, .status-pass td { color:green }
.status-fail, .status-fail td { color:red }
.capitalize { text-transform:capitalize }
{% block css %}{% endblock %}
.content-wrap { {% block css_content_wrap %}{% endblock %} margin:0 auto; padding:0 5px </%block>}
{% block media_queries %}{% endblock %}
</style>
</head>
<body{% block body_attr %}{% endblock %}>
<div class="header">
<div class="content-wrap">
<a href="https://github.com/openstack/rally">Rally</a>&nbsp;
<span>{% block header_text %}{% endblock %}</span>
</div>
</div>
<div class="content-wrap">
{% block content %}{% endblock %}
</div>
<script type="text/javascript">{% block js_after %}{% endblock %}</script>
</body>
</html>