Skip to content

Commit

Permalink
delete font_path, et un doublon
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed May 13, 2012
1 parent fc81744 commit 9d3bc1a
Showing 1 changed file with 6 additions and 17 deletions.
23 changes: 6 additions & 17 deletions css3-mixins.less
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
// Variables
@img_path : ~"/img/";
@font_path : ~"/font/";


// Box-sizing
.box-sizing(@model : border-box) {
Expand Down Expand Up @@ -90,12 +88,12 @@
}

// Transition
.transition(@range : all, @time : 0.1s, @ease : ease-in-out)
{
-webkit-transition : @arguments;
-moz-transition : @arguments;
-o-transition : @arguments;
transition : @arguments;
.transition(@properties : all, @duration : 1s, @delay : 1s, @easing : linear) {
-webkit-transition: @arguments;
-moz-transition: @arguments;
-ms-transition: @arguments;
-o-transition: @arguments;
transition: @arguments;
}

// Skew
Expand Down Expand Up @@ -227,15 +225,6 @@
tab-size: @size;
}

// Transition
.transition(@properties : all, @duration : 1s, @delay : 1s, @easing : linear) {
-webkit-transition: @arguments;
-moz-transition: @arguments;
-ms-transition: @arguments;
-o-transition: @arguments;
transition: @arguments;
}

// Flex Box

.box {
Expand Down

0 comments on commit 9d3bc1a

Please sign in to comment.