Last active
January 26, 2018 13:25
-
-
Save carolina-vallejo/0a0c0a8b859b4f7d6e28ead38603f3e9 to your computer and use it in GitHub Desktop.
customized dotted border css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin dotted($col,$w,$h) { | |
background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, $col), color-stop(0%, rgba(255, 255, 255, 0))), | |
-webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(0%, $col)), | |
-webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(0%, $col)), | |
-webkit-gradient(linear, left top, left bottom, color-stop(50%, $col), color-stop(0%, rgba(255, 255, 255, 0))); | |
background-image: -webkit-linear-gradient(left, $col 50%, rgba(255, 255, 255, 0) 0%), | |
-webkit-linear-gradient(top, rgba(255, 255, 255, 0) 50%, $col 0%), | |
-webkit-linear-gradient(left, rgba(255, 255, 255, 0) 50%, $col 0%), | |
-webkit-linear-gradient(top, $col 50%, rgba(255, 255, 255, 0) 0%); | |
background-image: -o-linear-gradient(left, $col 50%, rgba(255, 255, 255, 0) 0%), | |
-o-linear-gradient(top, rgba(255, 255, 255, 0) 50%, $col 0%), | |
-o-linear-gradient(left, rgba(255, 255, 255, 0) 50%, $col 0%), | |
-o-linear-gradient(top, $col 50%, rgba(255, 255, 255, 0) 0%); | |
background-image: linear-gradient(to right, $col 50%, rgba(255, 255, 255, 0) 0%), | |
linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, $col 0%), | |
linear-gradient(to right, rgba(255, 255, 255, 0) 50%, $col 0%), | |
linear-gradient(to bottom, $col 50%, rgba(255, 255, 255, 0) 0%); | |
background-position: top, left, bottom, right; | |
background-size: $w $h, $h $w,$w $h, $h $w; | |
background-repeat: repeat-x, repeat-y, repeat-x, repeat-y; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment