Fr3deric
7 years ago
3 changed files with 71 additions and 11 deletions
@ -1,7 +1,43 @@
@@ -1,7 +1,43 @@
|
||||
<!doctype html> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||
<title>Journalmarks</title> |
||||
<link rel=stylesheet type=text/css href="{{ url_for('journalmarks.static', filename='style.css') }}"> |
||||
<link rel=stylesheet type=text/css href="{{ url_for('journalmarks.static', filename='pure-min.css') }}"> |
||||
<link rel=stylesheet type=text/css href="{{ url_for('journalmarks.static', filename='grids-responsive-min.css') }}"> |
||||
<script src="{{ url_for('journalmarks.static', filename='journalmarks.js') }}"></script> |
||||
<script src="{{ url_for('journalmarks.static', filename='base64js.min.js') }}"></script> |
||||
<style> |
||||
body { |
||||
font-weight: 100; |
||||
} |
||||
|
||||
h1 { |
||||
text-align: center; |
||||
font-weight: normal; |
||||
} |
||||
|
||||
a, a:visited { |
||||
text-decoration: none; |
||||
color: #0078e7; |
||||
} |
||||
a:hover { |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
#content { |
||||
padding: 0.3em; |
||||
} |
||||
|
||||
.errmsg { |
||||
display: none; |
||||
color: #ab0000; |
||||
} |
||||
</style> |
||||
{% block script %}{% endblock %} |
||||
|
||||
<div class="pure-g"> |
||||
<div class="pure-u-1 pure-u-lg-1-3"></div> |
||||
<div id="content" class="pure-u-1 pure-u-lg-1-3"> |
||||
{% block body %}{% endblock %} |
||||
</div> |
||||
</div> |
||||
|
Loading…
Reference in new issue