adding PHP Excel library

This commit is contained in:
2015-12-10 23:14:29 +01:00
parent f1076580ea
commit 9e9dc8a5fa
263 changed files with 110510 additions and 51 deletions

10
style/_functions.scss Executable file
View File

@@ -0,0 +1,10 @@
@mixin round($TopLeft, $TopRight, $BottomRight, $BottomLeft) {
-moz-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
-webkit-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
-khtml-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
}
@mixin roundall($radius) {
@include round($radius, $radius, $radius, $radius);
}