heissepreise/site/style.css
2023-05-17 16:55:46 +02:00

59 lines
730 B
CSS

body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 800px;
margin: 0 auto;
}
.search {
margin: 20px 0;
width: 50%;
font-size: 1em;
}
.filters {
margin-bottom: 1em;
}
input[type="number"] {
max-width: 3em;
}
.results {
display: flex;
flex-direction: row;
width: 100%;
}
table {
width: 100%;
border-collapse: collapse;
border: 1px solid;
}
th {
border: 1px solid;
padding: 0.2em;
background: #aaa;
}
tr {
border-collapse: collapse;
border: 1px solid #ddd;
}
td {
padding: 0.2em;
}
th {
text-align: left;
}