More CSS tweaks
This commit is contained in:
parent
673c1de4a0
commit
2562055206
|
@ -16,14 +16,22 @@
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input input, .input textarea, .input select {
|
.input {
|
||||||
|
input.string, input.email, input.password, select.select, input.numeric {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
width: 20em;
|
width: 20em;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input textarea {
|
textarea {
|
||||||
height: 8em;
|
height: 15em;
|
||||||
|
width: 50em;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.input label.boolean {
|
||||||
|
margin-left: 12em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input .hint, .input .error {
|
.input .hint, .input .error {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
h2.entry-title Вход
|
h2.entry-title Вход
|
||||||
|
|
||||||
= simple_form_for(resource, as: resource_name, url: session_path(resource_name)) do |f|
|
= simple_form_for(resource, as: resource_name, url: session_path(resource_name), ) do |f|
|
||||||
.form-inputs
|
.form-inputs
|
||||||
= f.input :email, required: false, autofocus: true, hint: false
|
= f.input :email, required: false, autofocus: true, hint: false
|
||||||
= f.input :password, required: false, hint: false
|
= f.input :password, required: false, hint: false
|
||||||
|
|
Loading…
Reference in New Issue