Commit db39e6e5 authored by royce-matthew's avatar royce-matthew

added design changes

parent 85bae03b
...@@ -158,7 +158,9 @@ p { ...@@ -158,7 +158,9 @@ p {
/* Links /* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */ –––––––––––––––––––––––––––––––––––––––––––––––––– */
a { a {
color: #1EAEDB; } color: rgba(0,30,50,0.8) ;
font-size:17px;
text-decoration: none; }
a:hover { a:hover {
color: #0FA0CE; } color: #0FA0CE; }
......
<%= simple_form_for([:admin, @candidate]) do |f| %> <%= simple_form_for([:admin, @candidate]) do |f| %>
I wanna vote for
<%= f.association :position, label_method: :name, value_method: :id %> <%= f.association :position, label_method: :name, value_method: :id %>
<%= f.input :first_name%> <%= f.input :first_name%>
<%= f.input :last_name%> <%= f.input :last_name%>
......
<h4>Positions from the Vote-a-Sutra </h4> <h4>Positions from the Vote-a-Sutra </h4>
<%=link_to "+ new Position", new_admin_position_path%> <%=link_to "+ New Position", new_admin_position_path%>
<div class="container"> <div class="container">
<% @positions.each do |p| %> <% @positions.each do |p| %>
<div style=""> <div style="">
......
<h1>New Candidate</h1> <h1>New Position</h1>
<%= render partial: "form" %> <%= render partial: "form" %>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment