-
Notifications
You must be signed in to change notification settings - Fork 4k
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
afacaf6
commit 240e41f
Showing
3 changed files
with
94 additions
and
12 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 +1,71 @@ | ||
/* add styles here */ | ||
@font-face { | ||
font-family: Avenir; | ||
font-weight: 300; | ||
font-style: normal; | ||
src: url('fonts/Avenir-Book.ttf') format('truetype'); | ||
} | ||
|
||
@font-face { | ||
font-family: Avenir; | ||
font-weight: 600; | ||
font-style: normal; | ||
src: url('fonts/Avenir-Heavy.ttf') format('truetype'); | ||
} | ||
|
||
body { | ||
font-family: Avenir, sans-serif; | ||
padding: 0; | ||
} | ||
|
||
.search { | ||
margin-top: 20px; | ||
} | ||
|
||
.search__bar { | ||
display: flex; | ||
width: 100%; | ||
height: 70px; | ||
padding-left: 62px; | ||
font-size: 16px; | ||
|
||
border-radius: 4px; | ||
border: 1px solid #e1e7ed; | ||
box-sizing: border-box; | ||
box-shadow: 0 1px 8px 0 rgba(61, 78, 97, 0.1); | ||
|
||
background-image: url(/src/images/Search.svg); | ||
background-repeat: no-repeat; | ||
background-position: 23px 24px; | ||
line-height: 21.86px; | ||
} | ||
|
||
.search__bar::placeholder { | ||
font-family: Avenir, sans-serif; | ||
color: #3d4e61; | ||
font-weight: 300; | ||
opacity: 0.9; | ||
} | ||
|
||
.small-search__bar { | ||
height: 42px; | ||
font-size: 14px; | ||
padding-left: 33px; | ||
padding-bottom: 3px; | ||
line-height: 19.12px; | ||
|
||
background-size: 11px; | ||
background-position: 12px 14px; | ||
} | ||
|
||
.search__bar:hover { | ||
box-shadow: 0 4px 4px 0 #00000040; | ||
} | ||
|
||
.search__bar:focus { | ||
box-shadow: 0 4px 4px 0 #00000040; | ||
background-color: linear-gradient(180deg, #fff 0%, #f6f6f7 100%); | ||
border-radius: 3px; | ||
font-weight: 600; | ||
outline: none; | ||
} |