Skip to content

Commit

Permalink
finished search bar
Browse files Browse the repository at this point in the history
  • Loading branch information
mForkosh committed Sep 26, 2024
1 parent b64f3c5 commit 93baca3
Show file tree
Hide file tree
Showing 3 changed files with 138 additions and 13 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ ___

❗️ Replace `<your_account>` with your Github username and copy the links to `Pull Request` description:

- [DEMO LINK](https://<your_account>.github.io/layout_search-bar-airbnb/)
- [TEST REPORT LINK](https://<your_account>.github.io/layout_search-bar-airbnb/report/html_report/)
- [DEMO LINK](https://mForkosh.github.io/layout_search-bar-airbnb/)
- [TEST REPORT LINK](https://mForkosh.github.io/layout_search-bar-airbnb/report/html_report/)

❗️ Copy this `Checklist` to the `Pull Request` description after links, and put `- [x]` before each point after you checked it.

Expand Down
36 changes: 26 additions & 10 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,32 @@
/>
</head>
<body>
<input
type="text"
data-qa="keypress"
placeholder="Try “Los Angeles“"
/>
<form class="form">
<label
for="big-bar"
class="form__label-big"
></label>

<input
type="text"
data-qa="hover"
placeholder="Try “Los Angeles“"
/>
<input
type="text"
data-qa="big"
placeholder="Try “Los Angeles“"
class="form__bar form__bar--big"
id="big-bar"
/>

<label
for="small-bar"
class="form__label-small"
></label>

<input
type="text"
data-qa="small"
placeholder="Try “Los Angeles“"
class="form__bar form__bar--small"
id="small-bar"
/>
</form>
</body>
</html>
111 changes: 110 additions & 1 deletion src/style.css
Original file line number Diff line number Diff line change
@@ -1 +1,110 @@
/* add styles here */
@font-face {
font-family: Avenir;
src: url(fonts/Avenir-Book.ttf);
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: Avenir;
src: url(fonts/Avenir-Heavy.ttf);
font-weight: 900;
font-style: normal;
}

body {
margin-top: 20px;
}

/* #region form */

.form {
display: flex;
position: relative;
flex-direction: column;
gap: 20px;
}

.form__bar {
/* element settings */
box-sizing: border-box;
border: 1px solid #e1e7ed;
border-radius: 4px;
font-family: Avenir, Helvetica, sans-serif;

/* content ssetings */
color: #3d4e61;
font-weight: 400;
}

.form__bar--big {
height: 70px;
padding-left: 62px;
font-size: 16px;
box-shadow: 0 1px 8px 0 #3d4e611a;
}

.form__bar--small {
height: 42px;
padding-left: 33px;
font-size: 14px;
box-shadow: 0 1px 8px 0 #3d4e611a;
}

.form__bar--big::placeholder {
font-weight: 400;
color: #3d4e61;
}

.form__bar--small::placeholder {
font-weight: 400;
color: #3d4e61;
}

.form__bar--big:hover {
box-shadow: 0 3px 8px 0 #3d4e6133;
}

.form__bar--small:hover {
box-shadow: 0 3px 8px 0 #3d4e6133;
}

.form__bar--big:focus {
outline: none;
background: linear-gradient(180deg, #fff 0%, #f6f6f7 100%);
box-shadow: (0 4px 4px #3d4e6133);
font-weight: 900;
}

.form__bar--small:focus {
background: linear-gradient(180deg, #fff 0%, #f6f6f7 100%);
box-shadow: none;
outline: none;
font-weight: 900;
}

.form__label-big {
position: absolute;
top: 25px;
left: 26px;
height: 19px;
width: 19px;
z-index: 1;
background-image: url(images/Search.svg);
background-repeat: no-repeat;
background-size: contain;
}

.form__label-small {
position: absolute;
top: 105px;
left: 13px;
height: 11px;
width: 11px;
z-index: 1;
background-image: url(images/Search.svg);
background-repeat: no-repeat;
background-size: contain;
}

/* #endregion */

0 comments on commit 93baca3

Please sign in to comment.