Style join and settings forms
This commit is contained in:
parent
d819308639
commit
f6947271a1
|
@ -114,6 +114,12 @@ textarea.fullwidth {
|
||||||
input.smallnumber {
|
input.smallnumber {
|
||||||
width: 4em;
|
width: 4em;
|
||||||
}
|
}
|
||||||
|
form#session-settings p {
|
||||||
|
line-height: 1.8em;
|
||||||
|
}
|
||||||
|
form#lexicon-join {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
div.dashboard-lexicon-item {
|
div.dashboard-lexicon-item {
|
||||||
margin: 0 10px;
|
margin: 0 10px;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
||||||
<form action="" method="post" novalidate>
|
<form id="lexicon-join" action="" method="post" novalidate>
|
||||||
{{ form.hidden_tag() }}
|
{{ form.hidden_tag() }}
|
||||||
{% if g.lexicon.join.password %}
|
{% if g.lexicon.join.password %}
|
||||||
<p>{{ form.password.label }}<br>{{ form.password(size=32) }}</p>
|
<p>{{ form.password.label }}<br>{{ form.password(size=32) }}</p>
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
{% block settings %}
|
{% block settings %}
|
||||||
<form action="" method="post" novalidate>
|
<form id="session-settings" action="" method="post" novalidate>
|
||||||
{{ form.hidden_tag() }}
|
{{ form.hidden_tag() }}
|
||||||
|
|
||||||
<h3>General</h3>
|
<h3>General</h3>
|
||||||
|
|
Loading…
Reference in New Issue