I added some css to the default css file to put css in one of my view pages but its not loading
<ul id="timeline">
<% foreach (var update in Model.Updates)
{ %>
<li>
<div class="message"> .......
css I put in the default file is
#timeline {list-style: none; padding:0;}
#timeline li {border-top: dashed 1px #888; padding: 5px 0;}
#timeline li:hover {background: #eee;}
#timeline li div.message {font-size: 10pt;}
#timeline li div.message span{font-weight: bold;}
#timeline li div.time {font-size: 8pt; font-style:italic;}
I am using vs2010 on my home laptop...any ideas?