-
Notifications
You must be signed in to change notification settings - Fork 117
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
1 parent
e311da8
commit fc5b867
Showing
3 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
File renamed without changes.
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,5 +1,5 @@ | ||
$flixel-dark-blue: #3b43ff; | ||
$flixel-yello: #ffbf37; | ||
$flixel-yellow: #ffbf37; | ||
$flixel-red: #ff2346; | ||
$flixel-green: #00b92b; | ||
$flxiel-light-blue: #0bc8ff; | ||
$flixel-light-blue: #0bc8ff; |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
@import "./mixins/helpers.scss"; | ||
@import "./footer.scss"; | ||
@import url("https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"); | ||
@import "./darkmode-style.scss"; | ||
@import "./color-styles.scss"; | ||
@import "./flixel-colors.scss"; | ||
|
||
* { | ||
|
@@ -257,29 +257,29 @@ a.header-anchor::before { | |
.title:before { | ||
background-image: -webkit-linear-gradient( | ||
left, | ||
#ffbf37 0%, | ||
#ffbf37 20%, | ||
#ff2346 20%, | ||
#ff2346 40%, | ||
#00b92b 40%, | ||
#00b92b 60%, | ||
#3b43ff 60%, | ||
#3b43ff 80%, | ||
#0bc8ff 80%, | ||
#0bc8ff 100% | ||
$flixel-yellow 0%, | ||
$flixel-yellow 20%, | ||
$flixel-red 20%, | ||
$flixel-red 40%, | ||
$flixel-green 40%, | ||
$flixel-green 60%, | ||
$flixel-dark-blue 60%, | ||
$flixel-dark-blue 80%, | ||
$flixel-light-blue 80%, | ||
$flixel-light-blue 100% | ||
); | ||
background-image: -moz-linear-gradient( | ||
left center, | ||
#ffbf37 0%, | ||
#ffbf37 20%, | ||
#ff2346 20%, | ||
#ff2346 40%, | ||
#00b92b 40%, | ||
#00b92b 60%, | ||
#3b43ff 60%, | ||
#3b43ff 80%, | ||
#0bc8ff 80%, | ||
#0bc8ff 100% | ||
$flixel-yellow 0%, | ||
$flixel-yellow 20%, | ||
$flixel-red 20%, | ||
$flixel-red 40%, | ||
$flixel-green 40%, | ||
$flixel-green 60%, | ||
$flixel-dark-blue 60%, | ||
$flixel-dark-blue 80%, | ||
$flixel-light-blue 80%, | ||
$flixel-light-blue 100% | ||
); | ||
bottom: -6px; | ||
content: ""; | ||
|