Compare commits
No commits in common. "01710a9476ced5f357cc242ee2cff51e4de531b0" and "47b9d6a3fb7ce09126a3ef09d647ee047a033e92" have entirely different histories.
01710a9476
...
47b9d6a3fb
3 changed files with 6 additions and 7 deletions
|
@ -30,6 +30,9 @@ nav > form {
|
|||
nav > a.cur {
|
||||
font-weight: 750;
|
||||
}
|
||||
nav > a.home {
|
||||
font-variant: small-caps;
|
||||
}
|
||||
nav > a.logout {
|
||||
float: right;
|
||||
}
|
||||
|
@ -38,11 +41,6 @@ nav > a img {
|
|||
vertical-align: top;
|
||||
margin-right: .5rem;
|
||||
}
|
||||
nav > a h1 {
|
||||
display: inline;
|
||||
font: inherit;
|
||||
font-variant: small-caps;
|
||||
}
|
||||
|
||||
nav > form input {
|
||||
font: inherit;
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
border-radius: var(--radius);
|
||||
overflow: hidden;
|
||||
border-bottom: var(--border) solid var(--theme);
|
||||
border-top: var(--border) solid var(--theme);
|
||||
}
|
||||
.table.col2 {grid-template-columns: repeat(2, auto)}
|
||||
.table.col3 {grid-template-columns: repeat(3, auto)}
|
||||
|
@ -27,7 +28,7 @@
|
|||
.table > div.w> * {background: var(--bg)}
|
||||
|
||||
.table > div.header > * {
|
||||
background: var(--theme);
|
||||
background: var(--bg-inv);
|
||||
}
|
||||
|
||||
.table > div > .center {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
class="home{% if request.resolver_match.url_name == 'index' %} cur{% endif %}"
|
||||
accesskey="h">
|
||||
<img src="{% static 'main/svg/logo.svg' %}" alt="" />
|
||||
<h1>Nummi</h1>
|
||||
Nummi
|
||||
</a>
|
||||
<a href="{% url 'transaction' %}"
|
||||
class="{% if request.resolver_match.url_name == 'transaction' %}cur{% endif %}"
|
||||
|
|
Loading…
Reference in a new issue