brokenco.de/_layouts/default.html

68 lines
1.5 KiB
HTML
Raw Normal View History

{% if site.tags != "" %}
{% include collect-tags.html %}
{% endif %}
<!DOCTYPE html>
<html lang="en">
2014-07-07 05:43:22 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.name }}{% endif %}</title>
2018-08-05 22:27:38 +00:00
<style type="text/css">
body {
margin: 0px;
2019-05-26 18:23:08 +00:00
font-family: 'proxima-nova', 'Helvetica', 'Avenir', 'Arial', sans-serif;
color: #4D4D4D;
background-color: white;
font-size: 1.1rem;
}
a:link, a:visited {
color: black;
}
a:hover {
color: red;
text-decoration: none;
}
2018-08-05 22:27:38 +00:00
@media(min-width: 1024px) {
.content {
2019-05-26 18:23:08 +00:00
max-width: 65%;
2018-08-05 22:27:38 +00:00
}
main {
margin-left: auto;
margin-right: auto;
}
footer {
margin-left: auto;
margin-right: auto;
margin-top: 2rem;
padding-top: 1rem;
border-top: 2px solid #e9e9e9;
max-width: 55%;
}
2018-08-05 22:27:38 +00:00
}
header.masthead {
float: right;
2019-05-26 18:23:08 +00:00
margin-right: 1rem;
2018-08-05 22:27:38 +00:00
}
.notice {
background: #ffffe0;
text-align: center;
margin-left: auto;
margin-right: auto;
padding: 1rem;
}
2018-08-05 22:27:38 +00:00
img {
max-width: 100%;
}
li {
margin: 0.5rem;
}
</style>
2014-07-07 05:43:22 +00:00
</head>
<body>
<div class="container">
2014-07-07 05:43:22 +00:00
{{ content }}
</div>
2014-07-07 05:43:22 +00:00
</body>
</html>