Skip to content

Commit

Permalink
ajustes
Browse files Browse the repository at this point in the history
  • Loading branch information
Michelle Tani committed Oct 11, 2024
1 parent c862054 commit 2dd353e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
18 changes: 17 additions & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Document</title><link rel="stylesheet" href="index.565f11a0.css"></head><body> <input class="search-bars search-bars-1" type="text" data-qa="big" placeholder="Try “Los Angeles“"> <input class="search-bars search-bars-2" type="text" data-qa="small" placeholder="Try “Los Angeles“"> </body></html>
<!doctype html>

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="/index.2cdaf7bc.css">
</head>

<body>
<input class="search-bars search-bars-big" type="text" data-qa="big" placeholder="Try “Los Angeles“">

<input class="search-bars search-bars-small" type="text" data-qa="small" placeholder="Try “Los Angeles“">
<script src="/layout_search-bar-airbnb.59712999.js"></script></body>
</html>
4 changes: 2 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@

<body>
<input
class="search-bars search-bars-1"
class="search-bars search-bars-big"
type="text"
data-qa="big"
placeholder="Try “Los Angeles“"
/>

<input
class="search-bars search-bars-2"
class="search-bars search-bars-small"
type="text"
data-qa="small"
placeholder="Try “Los Angeles“"
Expand Down
13 changes: 8 additions & 5 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
font-family: Avenir;
src: url('fonts/Avenir-Book.ttf') format('truetype');
font-weight: 300;
color: #3d4e61;
}

.search-bars {
Expand All @@ -16,12 +15,16 @@
border: 1px solid #e1e7ed;
border-radius: 4px;
box-shadow: 0 1px 8px 0 #3d4e611a;
font-family: Avenir, sans-serif;

background-image: url(images/Search.svg);
background-repeat: no-repeat;
}

.search-bars::placeholder {
font-family: Avenir, sans-serif;
color: #3d4e61;
}

.search-bars:hover {
box-shadow: 0 3px 8px 0 #3d4e6133;
}
Expand All @@ -35,19 +38,19 @@
outline: none;
}

.search-bars-1 {
.search-bars-big {
height: 70px;
padding-left: 62px;
font-size: 16px;
background-position:
26px center,
25px 24px,
0 0;
background-size:
19px,
100% 100%;
}

.search-bars-2 {
.search-bars-small {
height: 42px;
padding-left: 33px;
font-size: 14px;
Expand Down

0 comments on commit 2dd353e

Please sign in to comment.