Website-Ferienwohnung/app/css/main.css

62 lines
912 B
CSS
Raw Normal View History

2024-02-10 15:34:23 +00:00
body {
2024-02-19 19:40:06 +00:00
font-family: Arial, sans-serif;
2024-02-10 15:34:23 +00:00
margin: 0;
2024-02-19 19:40:06 +00:00
padding: 0;
background-color: #c2eafc;
color: #00171f;
}
header {
background-color: #003459;
outline: 5px solid black;
color: #ffffff;
padding: 1px;
text-align: center;
}
.flex-container {
width: 80%;
margin: auto;
padding: 20px;
display: flex;
flex-wrap: wrap;
}
.listing {
background-color: #ffffff;
outline: 2px solid black;
border: 1px solid #007ea7;
padding: 10px;
margin-bottom: 30px;
}
footer {
background-color: #007ea7;
outline: 5px solid black;
color: #ffffff;
padding: 10px;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
button {
background-color: #00a8e8;
color: #ffffff;
padding: 10px 20px;
border: none;
cursor: pointer;
}
button:hover {
background-color: #003459;
}
img {
border: 3px solid #000000;
margin: Auto;
position: relative;
right: 3px;
2024-02-10 15:34:23 +00:00
}