ボタンは次のとおりです。
<%= render 'follow_form' if signed_in? %>
follow_formの場合:
<%= render 'follow' %>
follow.html.erb:
<%= form_for current_user.relationships.build(:followed_id => @user.id),
:remote => true do |f| %>
<div><%= f.hidden_field :followed_id %></div>
<div class="actions"><%= f.submit "Watch" %></div>
<% end %>
CSSでどのようにスタイルを設定しますか?