Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 27th, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /* SASS */
  2. table.hl
  3.   margin: 2em 0
  4.   td.ln
  5.     text-align: right
  6. li
  7.   font:
  8.     family: serif
  9.     weight: bold
  10.     size: 1.2em
  11.  
  12. /* CSS COMPILAT */
  13. table.hl {
  14.   margin: 2em 0;
  15. }
  16. table.hl td.ln {
  17.   text-align: right;
  18. }
  19. li {
  20.   font-family: serif;
  21.   font-weight: bold;
  22.   font-size: 1.2em;
  23. }