This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
bc1608c
commit a5e9be1
Showing
2 changed files
with
86 additions
and
20 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,75 @@ | ||
.searchBarContainer { | ||
display: flex; | ||
flex-direction: column; | ||
width: 34em; | ||
height: 3.8em; | ||
background-color: #ccc; | ||
border-radius: 6px; | ||
box-shadow: 0px 2px 12px 3px rgba(0, 0, 0, 0.14) | ||
} | ||
|
||
.searchInputContainer { | ||
width: 100%; | ||
min-height: 4em; | ||
display: flex; | ||
align-items: center; | ||
position: relative; | ||
padding: 2px 15px; | ||
} | ||
|
||
.inputClass { | ||
width: 100%; | ||
height: 100%; | ||
outline: none; | ||
border: none; | ||
font-size: 21px; | ||
color: #12112e; | ||
font-weight: 500; | ||
border-radius: 6px; | ||
background-color: transparent; | ||
|
||
&:focus { | ||
outline: none; | ||
&::placeholder { | ||
opacity: 0; | ||
} | ||
} | ||
|
||
&::placeholder { | ||
color: #bebebe; | ||
transition: all 250ms ease-in-out; | ||
} | ||
} | ||
|
||
.searchIcon { | ||
color: #bebebe; | ||
font-size: 27px; | ||
margin-right: 10px; | ||
margin-top: 6px; | ||
vertical-align: middle; | ||
} | ||
|
||
.searchContent { | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
padding: 1em; | ||
overflow-y: auto; | ||
} | ||
|
||
.loadingWrapper { | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.warningMessage { | ||
color: #a1a1a1; | ||
font-size: 14px; | ||
display: flex; | ||
align-self: center; | ||
justify-self: center; | ||
} |
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