Created
March 2, 2011 16:23
-
-
Save chewmanfoo/851193 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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