This repository has been archived by the owner on May 14, 2020. It is now read-only.
-
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
Showing
24 changed files
with
579 additions
and
47 deletions.
There are no files selected for viewing
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,3 @@ | ||
{ | ||
"directory": "resources/public/vendor" | ||
} |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/resources/public/vendor | ||
/resources/public/css | ||
/resources/public/js/compiled/** | ||
.sass-cache | ||
|
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,18 @@ | ||
{ | ||
"name": "svg-thing", | ||
"version": "0.0.0", | ||
"authors": [ | ||
"Angus Thomsen <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"glyph-iconset": "[email protected]:frexy/glyph-iconset.git" | ||
} | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,14 @@ | ||
@include keyframes(fadeInBlur) { | ||
0% { | ||
@include filter(blur(5px)); | ||
} | ||
75% { | ||
@include filter(blur(1px)); | ||
} | ||
87% { | ||
@include filter(blur(1.5px)); | ||
} | ||
100% { | ||
@include filter(blur(0)); | ||
} | ||
} |
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 |
---|---|---|
@@ -1,11 +1,16 @@ | ||
.background-wrapper { | ||
//-webkit-filter: url('/svg/filters.svg#blur3'); | ||
} | ||
.background { | ||
transition: ease-in-out $animation-time background; | ||
right: 0; | ||
left: 0; | ||
bottom: 0; | ||
top: 0; | ||
height: 100vh; | ||
width: 100vw; | ||
right: -10vw; | ||
left: -10vw; | ||
bottom: -10vh; | ||
top: -10vh; | ||
height: 120vh; | ||
width: 120vw; | ||
position: fixed; | ||
z-index: -1; | ||
background-color: black; | ||
-webkit-mask: url('/svg/masks/dots.svg'); | ||
} |
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,19 @@ | ||
@function power ($x, $n) { | ||
$ret: 1; | ||
|
||
@if $n >= 0 { | ||
@for $i from 1 through $n { | ||
$ret: $ret * $x; | ||
} | ||
} @else { | ||
@for $i from $n to 0 { | ||
$ret: $ret / $x; | ||
} | ||
} | ||
|
||
@return $ret; | ||
} | ||
|
||
@function strip-units($number) { | ||
@return $number / ($number * 0 + 1); | ||
} |
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,46 @@ | ||
.light-page { | ||
$width: 600px; | ||
$height: 600px; | ||
@include center($width, $height); | ||
|
||
$title-size: $height / 12; | ||
|
||
.light-title { | ||
font-family: $font-family; | ||
font-size: $title-size; | ||
text-align: center; | ||
line-height: 1; | ||
margin: 0; | ||
} | ||
|
||
$svg-margin: $title-size / 3; | ||
$svg-dim: $height - ($title-size + $svg-margin); | ||
|
||
.light-svg-outer { | ||
margin-top: $svg-margin; | ||
margin-left: $svg-margin; | ||
margin-right: $svg-margin; | ||
height: $svg-dim; | ||
} | ||
|
||
.light-svg { | ||
margin: 0 auto; | ||
display: block; | ||
height: $svg-dim; | ||
width: $svg-dim; | ||
} | ||
|
||
.light-svg circle { | ||
mix-blend-mode: multiply; | ||
transition: ease-in-out $animation-time all; | ||
} | ||
|
||
#N-circle { fill: $color-orange; } | ||
#NE-circle { fill: $color-yellow; } | ||
#E-circle { fill: $color-green; } | ||
#SE-circle { fill: $color-aqua; } | ||
#S-circle { fill: $color-blue; } | ||
#SW-circle { fill: $color-violet; } | ||
#W-circle { fill: $color-pink; } | ||
#NW-circle { fill: $color-red; } | ||
} |
Oops, something went wrong.