Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 249 Bytes

literal.md

File metadata and controls

16 lines (11 loc) · 249 Bytes

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;
}