Skip to content

Commit

Permalink
Merge pull request #59 from mikebelringer/master
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedalipoor authored Apr 28, 2020
2 parents 1f230ff + 475f6ca commit a6735c5
Show file tree
Hide file tree
Showing 9 changed files with 91 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
*.sql
*.sqlite
*.cfg
*.idea

.DS_Store
.DS_Store?
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ Also you can change color of icons as simple as set color for an element.
* `icono-pin`
* `icono-smile`
* `icono-eye`
* `icono-eye-close`
* `icono-sliders`
* `icono-share`
* `icono-sync`
Expand Down
2 changes: 1 addition & 1 deletion dist/icono.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
--><span><i class="icono-pin"></i></span><!--
--><span><i class="icono-smile"></i></span><!--
--><span><i class="icono-eye"></i></span><!--
--><span><i class="icono-eye-close"></i></span><!--
--><span><i class="icono-sliders"></i></span><!--
--><span><i class="icono-share"></i></span><!--
--><span><i class="icono-sync"></i></span><!--
Expand Down
2 changes: 2 additions & 0 deletions less/icons.less
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@

@import "icons/eye";

@import "icons/eyeClose";

@import "icons/sliders";

@import "icons/share";
Expand Down
28 changes: 28 additions & 0 deletions less/icons/eyeClose.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//*-- Eye close --*\\
.icono-eye-close{
border-radius: 80% 20%;
transform: rotate(45deg);
&:extend(.icono-stroke);
border-width: @2 @1 @1 @2;
height: @28;
width: @28;
margin: @3 @3;
&:before{
border-radius: 50%;
box-shadow: 0px -1*@3 0 @3 inset;
height: @11;
width: @11;
&:extend(.stickCenter);
}
&:after{
border-radius: 1px;
box-shadow: inset 0 0 0 32px;
height: 3px;
width: 40px;
top: 10px;
left: -7px;
position: absolute;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
}
28 changes: 28 additions & 0 deletions sass/icons/eyeClose.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//*-- Eye close --*\\
.icono-eye-close{
border-radius: 80% 20%;
transform: rotate(45deg);
@extend %icono-stroke;
border-width: $U2 $U1 $U1 $U2;
height: $U28;
width: $U28;
margin: $U3 $U3;
&:before{
border-radius: 50%;
box-shadow: 0 -1*$U3 0 $U3 inset;
height: $U11;
width: $U11;
@extend %stickCenter;
}
&:after{
border-radius: 1px;
box-shadow: inset 0 0 0 32px;
height: 3px;
width: 40px;
top: 10px;
left: -7px;
position: absolute;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
}
2 changes: 2 additions & 0 deletions stylus/icons.styl
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@

@import "icons/eye";

@import "icons/eyeClose";

@import "icons/sliders";

@import "icons/share";
Expand Down
27 changes: 27 additions & 0 deletions stylus/icons/eyeClose.styl
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.icono-eye-close{
border-radius: 80% 20%;
transform: rotate(45deg);
@extend $icono-stroke
border-width: $2 $1 $1 $2;
height: $28;
width: $28;
margin: $3 $3;
&:before{
border-radius: 50%;
box-shadow: 0px -1*$3 0 $3 inset;
height: $11;
width: $11;
@extend $stickCenter
}
&:after{
border-radius: 1px;
box-shadow: inset 0 0 0 32px;
height: 3px;
width: 40px;
top: 10px;
left: -7px;
position: absolute;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
}

0 comments on commit a6735c5

Please sign in to comment.