added rss template. General cleanup of the theme.
[theme-danix.xyz.git] / assets / sass / libs / _my-mixins.scss
index a901a45..9d0b0ce 100644 (file)
     }
   }
 }
+
+@mixin circle($size, $display) {
+  width: $size;
+  height: $size;
+  display: $display;
+  -webkit-border-radius: $size/2;
+  -moz-border-radius: $size/2;
+  border-radius: $size/2;
+}