-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make a deploy #4502
base: master
Are you sure you want to change the base?
make a deploy #4502
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,23 +10,54 @@ | |
http-equiv="X-UA-Compatible" | ||
content="ie=edge" | ||
/> | ||
<title>Document</title> | ||
<title>Airbnb Search Bar</title> | ||
<link | ||
rel="stylesheet" | ||
href="style.css" | ||
/> | ||
</head> | ||
<body> | ||
<input | ||
type="text" | ||
data-qa="keypress" | ||
placeholder="Try “Los Angeles“" | ||
/> | ||
|
||
<input | ||
type="text" | ||
data-qa="hover" | ||
placeholder="Try “Los Angeles“" | ||
/> | ||
<div class="search__container"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The indentation is not consistent. Child elements should be indented by 2 spaces relative to their parent element. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add empty lines between multiline sibling blocks of HTML. There should be an empty line before this div to separate it from the previous form for better readability. |
||
|
||
<form | ||
action="/" | ||
method="get" | ||
class="search-bar" | ||
data-qa="big" | ||
Comment on lines
+23
to
+27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep your attributes correctly formatted. The attributes of the form tag should start on new lines with proper indentation to improve readability. |
||
> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The attributes of the |
||
|
||
<div class="icon-big"> | ||
|
||
<input | ||
type="text" | ||
data-qa="keypress" | ||
placeholder="Try “Los Angeles“" | ||
class="search__input big" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The attributes of the
Comment on lines
+32
to
+36
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep your attributes correctly formatted. The attributes of the input tag should start on new lines with proper indentation to improve readability. |
||
/> | ||
|
||
</div> | ||
|
||
</form> | ||
|
||
<form | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add empty lines between multiline sibling blocks of HTML. There should be an empty line before this form to separate it from the previous div for better readability. |
||
action="/" | ||
method="get" | ||
class="search-bar" | ||
data-qa="small" | ||
Comment on lines
+43
to
+47
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep your attributes correctly formatted. The attributes of the form tag should start on new lines with proper indentation to improve readability. |
||
> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The attributes of the |
||
|
||
<div class="icon-small"> | ||
|
||
<input | ||
type="text" | ||
data-qa="hover" | ||
placeholder="Try “Los Angeles“" | ||
class="search__input small" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The attributes of the
Comment on lines
+52
to
+56
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep your attributes correctly formatted. The attributes of the input tag should start on new lines with proper indentation to improve readability. |
||
/> | ||
|
||
</div> | ||
</form> | ||
</div> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,114 @@ | ||
/* add styles here */ | ||
@font-face { | ||
font-family: Avenir; | ||
font-weight: 300; | ||
src: url(./fonts/Avenir-Book.ttf) format('truetype'); | ||
} | ||
|
||
@font-face { | ||
font-family: Avenir; | ||
font-weight: 600; | ||
src: url(./fonts/Avenir-Heavy.ttf) format('truetype'); | ||
} | ||
|
||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
Comment on lines
+13
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't use
Comment on lines
+13
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Avoid using the universal selector '*' for setting box-sizing as it impacts performance. Apply box-sizing to specific elements as needed. |
||
body { | ||
margin-top: 0; | ||
font-family: Avenir, Arial, sans-serif; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Be consistent with your margins. Add only top or bottom, but not both, to avoid potential margin collapse. In this case, since you only have a top margin, it is fine. |
||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remember to use fallback fonts - alternative font-family in case the main one doesn't work. For example, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Include a fallback font-family in case the main one doesn't work, for example: 'font-family: Avenir, Arial, sans-serif;'. This is a good practice for ensuring text remains readable if the custom font fails to load.
Comment on lines
+17
to
+19
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Be consistent with your margins. You've added only a top margin here, which is good, but ensure that this approach is consistent across your CSS to avoid potential margin collapse issues. |
||
|
||
.search__container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: stretch; | ||
width: 100%; | ||
} | ||
|
||
.search__input { | ||
color: #3d4e61; | ||
width: 100%; | ||
border: 1px solid #e1e7ed; | ||
border-radius: 4px; | ||
font-weight: 300; | ||
transition: border-color 0.3s; | ||
box-shadow: 0 0 7px rgb(232, 230, 230); | ||
font-family: inherit; | ||
position: relative; | ||
} | ||
|
||
.search__input::placeholder { | ||
color: #3d4e61; | ||
} | ||
|
||
.big { | ||
height: 70px; | ||
font-size: 16px; | ||
padding-left: 62px; | ||
} | ||
|
||
.small { | ||
height: 42px; | ||
font-size: 14px; | ||
box-shadow: 0 0 7px rgb(229, 228, 228); | ||
padding-left: 33px; | ||
} | ||
|
||
.search__input:hover { | ||
border-color: #e1e7ed; | ||
box-shadow: 0 3px 5px rgb(153, 153, 153); | ||
} | ||
|
||
.search__input:focus { | ||
background: | ||
linear-gradient(#ffff, #f6f6f7), | ||
url(./images/Search.svg) no-repeat 30px; | ||
color: #3d4e61; | ||
font-weight: 600; | ||
font-family: inherit; | ||
outline: none; | ||
} | ||
|
||
form { | ||
position: relative; | ||
margin-top: 20px; | ||
} | ||
|
||
.icon-big::before { | ||
content: url(./images/Search.svg); | ||
position: absolute; | ||
top: 35px; | ||
z-index: 10; | ||
transform: translateY(-50%); | ||
left: 25px; | ||
height: 19px; | ||
width: 19px; | ||
} | ||
|
||
.icon-small::before { | ||
content: ''; | ||
z-index: 10; | ||
background-size: 11px; | ||
width: 11px; | ||
height: 11px; | ||
position: absolute; | ||
top: 20px; | ||
left: 13px; | ||
transform: translateY(-50%); | ||
background-image: url(./images/Search.svg); | ||
} | ||
|
||
.big:focus { | ||
text-shadow: 0 3px 3px #bbbec2; | ||
} | ||
|
||
.small:hover { | ||
box-shadow: 0 3px 5px rgb(206, 206, 206); | ||
text-shadow: none; | ||
} | ||
|
||
.small:focus { | ||
box-shadow: none; | ||
text-shadow: none; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep your attributes correctly formatted. The attributes of the link tag should start on new lines with proper indentation to improve readability.