I think this theme is really close to being good enough
modified: remarkbox_theme_meta/static/theme/meta/css/diff.css modified: remarkbox_theme_meta/templates/meta-base.j2
This commit is contained in:
parent
04f3e174b5
commit
b1481c1eff
2 changed files with 51 additions and 4 deletions
|
|
@ -68,3 +68,44 @@ input {
|
|||
padding-left: 60px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
|
||||
ol, ul {
|
||||
padding-left: 40px;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: outside;
|
||||
}
|
||||
|
||||
/* alerts */
|
||||
#alerts {
|
||||
width: 36%;
|
||||
margin: auto;
|
||||
right: 50%;
|
||||
margin-right: -18%;
|
||||
position: fixed;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.close {
|
||||
margin-left: 10px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.alert {
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
border-radius: 6px;
|
||||
margin-bottom: 6px;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.alert-warning, .alert-error {
|
||||
background-color: #CB0003;
|
||||
}
|
||||
|
||||
.alert-success, .alert-notice {
|
||||
background-color: #517DA4;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,8 +31,13 @@
|
|||
<a class="navlink" href="{{ main_domain }}#faq">FAQ</a>
|
||||
<a class="navlink" href="{{ main_domain }}#about">About</a>
|
||||
<a class="navlink" href="{{ main_domain }}#remarkbox-demo">Demo</a>
|
||||
<a class="button" href="{{ main_domain }}#beta">Log in</a>
|
||||
<a class="button red" href="{{ main_domain }}#beta">Join</a>
|
||||
{%- if request.user %}
|
||||
<a class="button" href="#">{{ request.user.name }}</a>
|
||||
<a class="button red" href="/log-out">Log out</a>
|
||||
{%- else %}
|
||||
<a class="button" href="/join-or-log-in">Log in</a>
|
||||
<a class="button red" href="/join-or-log-in">Join</a>
|
||||
{%- endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -45,9 +50,9 @@
|
|||
{%- block menu %}
|
||||
<a href="/">home</a> |
|
||||
<a href="/new">new thread</a> |
|
||||
|
||||
|
||||
{%- if request.user %}
|
||||
{{request.user.name}} <a href="/log-out">[log out]</a>
|
||||
{{ request.user.name }} <a href="/log-out">[log out]</a>
|
||||
{% else %}
|
||||
<a href="/join-or-log-in">join-or-log-in</a>
|
||||
{%- endif %}
|
||||
|
|
@ -62,6 +67,7 @@
|
|||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<noscript>
|
||||
<style>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue