1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-28 08:19:55 +02:00

👍 youtubeアイコンを追加

This commit is contained in:
BcRikko
2018-09-29 11:37:31 +09:00
parent 0fa9c77b7b
commit 74e41f7035
6 changed files with 47 additions and 5 deletions

View File

@@ -1,9 +1,10 @@
@import "pixelize.scss";
@import "twitter.scss";
@import "facebook.scss";
@import "github.scss";
@import "youtube.scss";
@import "heart.scss";
@import "star.scss";
@import "github.scss";
@mixin setup($pixel) {
$size: $pixel * 16;
@@ -30,6 +31,10 @@
@include pixelize($github, $pixel, #333333);
}
&.-youtube::before {
@include pixelize($youtube, $pixel, #ff0100);
}
&.-heart::before {
@include pixelize($heart, $pixel, #f11416);
}

19
scss/icons/youtube.scss Normal file
View File

@@ -0,0 +1,19 @@
// prettier-ignore
$youtube: (
( 0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ),
( 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ),
( 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ),
( 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ),
( 1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1 ),
( 1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1 ),
( 1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1 ),
( 1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1 ),
( 1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1 ),
( 1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1 ),
( 1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1 ),
( 1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1 ),
( 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ),
( 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ),
( 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ),
( 0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 )
);