-
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.
Merge pull request #42 from julianpoy/finalEffects
Final effects
- Loading branch information
Showing
13 changed files
with
617 additions
and
372 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
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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
//Our colors throughpout the app! | ||
$dirTreeBg: #e6d5ac; | ||
$effectsBg: #5a9c4a; | ||
$trackPlaying: lightgrey; | ||
|
||
$light: #fafafa; | ||
$cardBg: whitesmoke; | ||
$shadeLight: lightgrey; | ||
$dark: #090909; | ||
$linkColor: #525294; | ||
$buttonColor: $cardBg; | ||
|
||
$dirTreeBg: #8bcd73; | ||
$effectsBg: #5a9c4a; | ||
$loopBg: $light; | ||
$trackPlaying: lightgrey; |
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,22 @@ | ||
|
||
.scrollbar | ||
{ | ||
overflow-y: scroll; | ||
|
||
&::-webkit-scrollbar-track | ||
{ | ||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); | ||
background-color: $trackPlaying; | ||
} | ||
|
||
&::-webkit-scrollbar | ||
{ | ||
width: 6px; | ||
background-color: $trackPlaying; | ||
} | ||
|
||
&::-webkit-scrollbar-thumb | ||
{ | ||
background-color: $light; | ||
} | ||
} |
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
Oops, something went wrong.