Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > 5055b9dae856abb7fda2fced6675b9fd > files > 103

nodejs-stylus-0.35.1-1.fc18.noarch.rpm

## Literal CSS

 If for any reason Stylus cannot accommodate a specific need, you can always resort to literal CSS with `@css`:
 
     
     @css {
       body {
         font: 14px;
       }
     }

Compiling to:

    body {
      font: 14px;
    }