initial commit

This commit is contained in:
mrliptontea
2015-01-08 09:44:36 +01:00
commit dc545cb724
66 changed files with 75902 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// Text overflow
// Requires inline-block or block for proper styling
@mixin text-overflow() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}