-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Iryna Shiriievska
committed
Feb 15, 2025
1 parent
b64f3c5
commit f621d44
Showing
3 changed files
with
109 additions
and
17 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,79 @@ | ||
/* add styles here */ | ||
@font-face { | ||
font-family: Avenir; | ||
src: url(/src/fonts/Avenir.ttc); | ||
} | ||
|
||
@font-face { | ||
font-family: Avenir; | ||
src: url(/src/fonts/Avenir-Book.ttf); | ||
} | ||
|
||
@font-face { | ||
font-family: Avenir; | ||
src: url(/src/fonts/Avenir-Heavy.ttf); | ||
} | ||
|
||
.wrapper { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 20px; | ||
} | ||
|
||
.input-wrapper__big input { | ||
width: 100vh; | ||
padding: 20px; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
padding-left: 50px; | ||
} | ||
|
||
.input-wrapper__small input { | ||
width: 427px; | ||
padding: 10px; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
padding-left: 30px; | ||
} | ||
|
||
.input-wrapper__big input:hover { | ||
box-shadow: 0 3px 8px 0 #E1E7ED; | ||
border-radius: 5px; | ||
} | ||
|
||
.input-wrapper__big input:focus { | ||
outline: none; | ||
box-shadow: 0 4px 4px 0 #E1E7ED; | ||
font-size: 16px; | ||
font-weight: 900; | ||
line-height: 22px; | ||
color: #3d4e61; | ||
} | ||
|
||
.input-with-icon-1 { | ||
background-image: url(/src/images/Search.svg); | ||
background-position: left 20px center; | ||
background-repeat: no-repeat; | ||
background-size: 15px; | ||
} | ||
|
||
.input-wrapper__small input:hover { | ||
box-shadow: 0 3px 8px 0 #E1E7ED; | ||
border-radius: 5px; | ||
} | ||
|
||
.input-wrapper__small input:focus { | ||
outline: none; | ||
box-shadow: 0 4px 4px 0 #E1E7ED; | ||
font-size: 14px; | ||
font-weight: 900; | ||
line-height: 19px; | ||
color: #3d4e61; | ||
} | ||
|
||
.input-with-icon-2 { | ||
background-image: url(/src/images/Search.svg); | ||
background-position: left 10px center; | ||
background-repeat: no-repeat; | ||
background-size: 12px; | ||
} |