A fork of hyde, the static site generation. Some patches will be pushed upstream.
 
 
 

7 lines
142 B

  1. @mixin rounded ($radius: 5px){
  2. -webkit-border-radius: $radius;
  3. -moz-border-radius: $radius;
  4. border-radius: $radius;
  5. }