heissepreise/site/style.css

51 lines
621 B
CSS
Raw Normal View History

2023-05-15 13:53:34 +02:00
body {
margin: 0;
2023-05-17 18:33:43 +02:00
padding: 1em;
2023-05-15 13:53:34 +02:00
font-family: sans-serif;
}
.column {
2023-05-15 13:53:34 +02:00
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
2023-05-15 14:41:02 +02:00
margin: 0 auto;
2023-05-15 13:53:34 +02:00
}
.search {
margin: 20px 0;
width: 30em;
2023-05-17 16:55:46 +02:00
font-size: 1em;
2023-05-15 13:53:34 +02:00
}
.filters {
margin-bottom: 1em;
}
2023-05-15 22:35:36 +02:00
input[type="number"] {
max-width: 3em;
}
2023-05-15 13:53:34 +02:00
table {
2023-05-15 22:35:36 +02:00
border-collapse: collapse;
border: 1px solid;
}
th {
border: 1px solid;
padding: 0.2em;
2023-05-17 16:55:46 +02:00
background: #aaa;
2023-05-15 22:35:36 +02:00
}
tr {
border-collapse: collapse;
2023-05-17 16:55:46 +02:00
border: 1px solid #ddd;
2023-05-15 22:35:36 +02:00
}
td {
padding: 0.2em;
2023-05-15 14:41:02 +02:00
}
th {
text-align: left;
2023-05-15 13:53:34 +02:00
}