-
Notifications
You must be signed in to change notification settings - Fork 1
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 #105 from do-kevin/chore-custom-theme
FEATURE : Initial Bootstrap Theme Customization
- Loading branch information
Showing
16 changed files
with
15,290 additions
and
210 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,48 +0,0 @@ | ||
#root { | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
#discoverInput:focus { | ||
box-shadow: none; | ||
} | ||
|
||
.custom-search { | ||
transform: translateY(-1rem); | ||
} | ||
|
||
.custom-search::before { | ||
visibility: hidden; | ||
content: ""; | ||
opacity: 0; | ||
margin-right: auto; | ||
height: 1.5rem; | ||
transition: opacity 0.15s ease-in-out; | ||
} | ||
|
||
.custom-search:focus-within::before { | ||
content: "Search flashcard decks"; | ||
opacity: 100; | ||
visibility: visible; | ||
} | ||
|
||
.custom-search:focus-within { | ||
.input-group { | ||
border-radius: 2rem; | ||
box-shadow: 0 0 0 0.25rem rgb(253 216 13 / 25%); | ||
} | ||
|
||
#discoverInput { | ||
transition: border 0.15s ease-in-out; | ||
border-top-color: #fa963a !important; | ||
border-right-color: #fa963a !important; | ||
border-bottom-color: #fa963a !important; | ||
} | ||
|
||
#search-btn-container { | ||
transition: border 0.15s ease-in-out; | ||
border-top-color: #fa963a !important; | ||
border-left-color: #fa963a !important; | ||
border-bottom-color: #fa963a !important; | ||
} | ||
} | ||
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.