diff options
author | Valentin Popov <info@valentineus.link> | 2018-05-15 14:28:17 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-05-15 14:28:17 +0300 |
commit | 3647ff37c565c77ebd1e68fce1552201c35b5cb3 (patch) | |
tree | af295c51a91eb8a491a951d00459138daaabfeda /_scss/utilities/_borderradius.scss | |
parent | bdbcbedc357627a583744b88ba35aeeddc6e69d0 (diff) | |
download | popov.link-3647ff37c565c77ebd1e68fce1552201c35b5cb3.tar.xz popov.link-3647ff37c565c77ebd1e68fce1552201c35b5cb3.zip |
Complete redesign of site styles
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/utilities/_borderradius.scss')
-rw-r--r-- | _scss/utilities/_borderradius.scss | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/_scss/utilities/_borderradius.scss b/_scss/utilities/_borderradius.scss deleted file mode 100644 index 5164302..0000000 --- a/_scss/utilities/_borderradius.scss +++ /dev/null @@ -1,13 +0,0 @@ -// Border Radius -// -// The border-radius CSS property lets you round the corners of an element's outer border edge. You can specify a single radius to make circular corners, or two radii to make elliptical corners. -// -// Values: <length-percentage> | <length-percentage> -// Default: 0 -// -// https://www.w3.org/TR/css-backgrounds-3/#propdef-border-radius -@mixin border-radius($value: 0) { - -webkit-border-radius: $value; - -moz-border-radius: $value; - border-radius: $value; -} |