-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maxwell Cofie
authored and
Maxwell Cofie
committed
Jul 21, 2017
1 parent
0c2e886
commit 16ddb33
Showing
33 changed files
with
3,754 additions
and
657 deletions.
There are no files selected for viewing
Binary file modified
BIN
+1 Byte
(100%)
.sass-cache/08be99a60e97eb342b327489b4b3325d7ee13ce8/filters.scssc
Binary file not shown.
Binary file modified
BIN
+13 Bytes
(100%)
.sass-cache/1466d2f53696947839df3416e614fbc99c477955/translation.scssc
Binary file not shown.
Binary file modified
BIN
-299 Bytes
(89%)
.sass-cache/166002549fa73755c7e42ef062cf3957eb686a4d/krymoh.scssc
Binary file not shown.
Binary file modified
BIN
+96 Bytes
(100%)
.sass-cache/72974d542890d4849b2f61cfa2559f157be00cb1/colors.scssc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.88 KB
.sass-cache/7aa1508f962b4c1596a196cbacacf6631f62d79b/_blue-seal.scssc
Binary file not shown.
Binary file added
BIN
+1.84 KB
.sass-cache/7aa1508f962b4c1596a196cbacacf6631f62d79b/_blue_seal.scssc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.84 KB
.sass-cache/7aa1508f962b4c1596a196cbacacf6631f62d79b/_gold_coal.scssc
Binary file not shown.
Binary file added
BIN
+1.89 KB
.sass-cache/7aa1508f962b4c1596a196cbacacf6631f62d79b/_green_corel.scssc
Binary file not shown.
Binary file added
BIN
+1.84 KB
.sass-cache/7aa1508f962b4c1596a196cbacacf6631f62d79b/_saucy_red.scssc
Binary file not shown.
Binary file modified
BIN
-27.7 KB
(6.7%)
.sass-cache/7aa1508f962b4c1596a196cbacacf6631f62d79b/gradient.scssc
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
//Blackish | ||
.grad-blackish{ | ||
@include grad('linear-gradient', #424242,#000000 ); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
//Blue Seal | ||
.grad-blue-seal{ | ||
@include grad('linear-gradient', #3d97cc,#07203e ); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
$gradient-type:('radial-gradient','linear-gradient','repeating-linear-gradient','repeating-radial-gradient'); | ||
$grd-alias:('rgrd','lgrd','rlgrd','rrgrd'); | ||
$bl:'('; | ||
$br:')'; | ||
|
||
$turquiose:#ededed; | ||
|
||
@mixin grad($grad-type,$clr_1,$clr_2){ | ||
background: -webkit-#{$grad-type}#{$bl}$clr_1,$clr_2#{$br}; | ||
background: -o-#{$grad-type}#{$bl}$clr_1, $clr_2#{$br}; | ||
background: -moz-#{$grad-type}#{$bl}$clr_1,$clr_2#{$br}; | ||
background: #{$grad-type}#{$bl}$clr_1,$clr_2#{$br}; | ||
|
||
} | ||
|
||
|
||
@mixin grad-nth($grad-type,$dir,$clr_1,$clr_2){ | ||
background: -webkit-#{$grad-type}#{$bl}$dir,$clr_1, yellow#{$br}; | ||
background: -o-#{$grad-type}#{$bl}$dir,$clr_1, yellow#{$br}; | ||
background: -moz-#{$grad-type}#{$bl}$dir,$clr_1, yellow#{$br}; | ||
background: #{$grad-type}#{$bl}$dir,$clr_1, yellow#{$br}; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
//Gold Coal | ||
.grad-gold-coal{ | ||
@include grad('linear-gradient', #fff6b3, #ffbd04 ); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
//Green Corel | ||
.grad-green-corel{ | ||
@include grad('linear-gradient',#c6ffbc, #03482b); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
//Saucy Red | ||
.grad-saucy-red{ | ||
@include grad('linear-gradient', #ff6e6e, #6b3026 ); | ||
} |
This file contains 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
This file contains 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
Binary file added
BIN
+47.3 KB
docs/css/.sass-cache/153105deef7b2a743cfec7cb55c095403a1168b3/style.scssc
Binary file not shown.
Oops, something went wrong.