diff --git a/readme.md b/readme.md index b635aa290b..5dea11ac21 100644 --- a/readme.md +++ b/readme.md @@ -25,8 +25,8 @@ ___ ❗️ Replace `` with your Github username and copy the links to `Pull Request` description: -- [DEMO LINK](https://.github.io/layout_search-bar-airbnb/) -- [TEST REPORT LINK](https://.github.io/layout_search-bar-airbnb/report/html_report/) +- [DEMO LINK](https://GrzegorzLasota.github.io/layout_search-bar-airbnb/) +- [TEST REPORT LINK](https://GrzegorzLasota.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. diff --git a/src/index.html b/src/index.html index abe507e10c..8b30af4e82 100644 --- a/src/index.html +++ b/src/index.html @@ -17,16 +17,34 @@ /> - + + diff --git a/src/style.css b/src/style.css index a63fa10d43..14a87a9466 100644 --- a/src/style.css +++ b/src/style.css @@ -1 +1,73 @@ -/* add styles here */ +@font-face { + font-family: Avenir; + src: url(/src/fonts/Avenir-Book.ttf) format('opentype') tech(color-COLRv1); +} + +body { + margin: 0; + padding: 20px; + font-weight: 300; +} + +.lab-first img { + width: 19px; + height: 19px; + margin-left: 26px; + margin-right: 17px; +} + +.lab-second img { + width: 11px; + height: 11px; + margin-left: 13px; + margin-right: 9px; +} + +.lab-first { + width: 100%; + display: flex; + justify-content: center; + align-items: center; + border: 1px solid #4242426e; + height: 70px; +} + +.lab-first:hover { + box-shadow: 12px 2px 10px #a1244a; +} + +.lab-first input { + border: none; + width: 100%; + height: 98%; +} + +.lab-second { + width: 100%; + display: flex; + justify-content: center; + align-items: center; + border: 1px solid #4242426e; + height: 42px; + margin: 20px auto 0; +} + +.lab-second input { + border: none; + width: 100%; + height: 90%; +} + +.lab-second:hover { + box-shadow: 12px 2px 10px #138392; +} + +.lab-second input:focus { + box-shadow: 12px 2px 10px #138392; + outline: none; +} + +.lab-first input:focus { + box-shadow: 12px 2px 10px #a1244a; + outline: none; +}