Skip to content

Instantly share code, notes, and snippets.

@chewmanfoo
Created March 2, 2011 16:23
Show Gist options
  • Select an option

  • Save chewmanfoo/851193 to your computer and use it in GitHub Desktop.

Select an option

Save chewmanfoo/851193 to your computer and use it in GitHub Desktop.
css:
#whos-on-call {
border: 1px solid silver;
margin: 10px 0px 0px 0px;
width: 200px;
background-color: #99ccff;
font: 10px;
}
#whos-on-call h3 {
font: 12px bold times serif;
}
#whos-on-call ul li {
font: 10px;
}
==================================
html:
<div id="whos-on-call">
<h3>Who's On Call Today?</h3>
<ul>
<li><a href="http://url.com/all-employees/michael-jason/">Joel</a>
<ul><li><a href="http://url.com/all-employees/novak-stan/">Sendak</a></li></ul>
</li>
</ul>
</div> <!-- end of whos-on-call div -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment