send page start
This commit is contained in:
10
app/assets/javascripts/main.js
Normal file
10
app/assets/javascripts/main.js
Normal file
@ -0,0 +1,10 @@
|
||||
function getPersonPhone(id, collection){
|
||||
for(var i = 0; i < collection.length; i++){
|
||||
if(collection[i].id == id){
|
||||
return collection[i].phone;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$( document ).ready(function() {
|
||||
});
|
@ -64,3 +64,40 @@ body {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
form {
|
||||
width: 100%;
|
||||
* {
|
||||
font-size: 14px;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
margin: 0.6em 0 0;
|
||||
width: 100%;
|
||||
|
||||
&:after {
|
||||
content: ": ";
|
||||
}
|
||||
}
|
||||
|
||||
input {
|
||||
display: block;
|
||||
margin: 0 0 0.6em;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
[type=submit]{
|
||||
margin: 0.6em 0;
|
||||
}
|
||||
|
||||
textarea{
|
||||
height: 5em;
|
||||
max-width: 300px;
|
||||
padding: 15px;
|
||||
width: calc(100% - 30px);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user