blob: 49fc7ce13880f672df26822ab7f185b168970011 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>
{% block title %}
{% endblock %}
</title>
{% block meta %}
<meta charset="utf-8">
<meta name="description" content="">
<meta name="author" content="">
{% endblock %}
<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/base.css" type="text/css" />
{% block css %}
<style type="text/css">
html, body
{
background-color: #eee;
}
body
{
padding-top: 9px;
}
.container > footer p
{
text-align: center;
}
.container
{
width: 820px;
}
.container > .content
{
background-color: #fff;
padding: 20px;
margin: 0 -20px;
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.page-header
{
background-color: #f5f5f5;
padding: 20px 20px 10px;
margin: -20px -20px 20px;
}
.content .span10,
.content .span14
{
min-height: 500px;
}
.content .span4
{
margin-left: 0;
padding-left: 19px;
border-left: 1px solid #eee;
}
.topbar .btn
{
border: 0;
}
</style>
{% endblock %}
{% block script %}
{% endblock %}
</head>
<body {% block onload %}{% endblock %}>
<div class=box>
{% block content %}
{% endblock %}
</div>
</body>
</html>
|