Add the base theme
This commit is contained in:
parent
3a0d5f6be1
commit
73d0952eeb
3 changed files with 19 additions and 0 deletions
13
khaganat/static/css/khaganat.css
Normal file
13
khaganat/static/css/khaganat.css
Normal file
|
@ -0,0 +1,13 @@
|
|||
html,body {
|
||||
background: url("/static/images/website_khaganat_bg_v7.jpg") no-repeat center fixed;
|
||||
font-family: "Verdana","Arial","Helvetica",sans-serif;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.content-bloc {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
background-color: #efeded;
|
||||
opacity: 0.7;
|
||||
border-radius: 1.4em;
|
||||
}
|
BIN
khaganat/static/images/website_khaganat_bg_v7.jpg
Normal file
BIN
khaganat/static/images/website_khaganat_bg_v7.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 162 KiB |
|
@ -7,6 +7,10 @@
|
|||
<link rel="stylesheet" href="{% static "bootstrap/4.0.0-beta.3/css/bootstrap.min.css" %}" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy">
|
||||
<!-- End bootstrap headers -->
|
||||
|
||||
<!-- Begin global headers -->
|
||||
<link rel="stylesheet" href="{% static "css/khaganat.css" %}">
|
||||
<!-- End global headers -->
|
||||
|
||||
<!-- Begin custom headers -->
|
||||
{% block headers %}{% endblock %}
|
||||
<!-- End custom headers -->
|
||||
|
@ -14,6 +18,8 @@
|
|||
<title>Khaganat - {% block title %}{% endblock %}</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="main-content">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue