48 lines
648 B
CSS
48 lines
648 B
CSS
|
body {
|
||
|
font-family: 'Arial', sans-serif;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
background-color: #333;
|
||
|
color: #fff;
|
||
|
text-align: center;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
section.search-container {
|
||
|
text-align: center;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
form {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
input, button {
|
||
|
padding: 10px;
|
||
|
margin: 5px;
|
||
|
}
|
||
|
|
||
|
section.featured-listings {
|
||
|
text-align: center;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
.listing {
|
||
|
margin: 10px;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
background-color: #333;
|
||
|
color: #fff;
|
||
|
text-align: center;
|
||
|
padding: 10px;
|
||
|
position: fixed;
|
||
|
bottom: 0;
|
||
|
width: 100%;
|
||
|
}
|