heissepreise/site/style.css

413 lines
6.1 KiB
CSS
Raw Normal View History

* {
box-sizing: border-box;
}
html,
2023-05-15 13:53:34 +02:00
body {
margin: 0;
height: 100%;
}
body {
font-family: Helvetica;
background: #f5f5f5;
color: #393939;
height: 100%;
}
a {
color: #c9543a;
2023-05-15 13:53:34 +02:00
}
2023-05-30 22:44:45 +02:00
label {
cursor: pointer;
}
h2 {
margin-top: 0;
margin-bottom: 0;
}
.hide {
display: none !important;
}
.container {
2023-05-15 13:53:34 +02:00
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100%;
padding: 1em;
2023-05-15 13:53:34 +02:00
}
.header {
border-radius: 5px;
background-color: #c9543a;
color: white;
width: 100%;
text-transform: uppercase;
text-align: center;
padding: 0.5em;
margin: 0 0 1rem 0;
2023-05-15 13:53:34 +02:00
}
.menu {
display: flex;
justify-content: center;
width: 100%;
gap: 0.5em;
2023-05-15 13:53:34 +02:00
margin-bottom: 1em;
2023-05-30 22:44:45 +02:00
}
.menu a {
font-size: large;
font-weight: 900;
}
.content {
flex: 1;
width: 100%;
max-width: 1200px;
}
.footer {
2023-06-02 15:05:11 +02:00
display: flex;
align-items: center;
justify-content: center;
gap: 0.5em;
width: 100%;
margin-top: 1em;
2023-06-02 15:05:11 +02:00
}
.column {
2023-05-30 22:44:45 +02:00
display: flex;
flex-direction: column;
2023-05-30 22:44:45 +02:00
justify-content: center;
align-items: center;
width: 100%;
gap: 1em;
}
.row {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 1em;
2023-05-30 22:44:45 +02:00
}
.search {
width: 100%;
max-width: 900px;
font-size: 1em;
border-radius: 5px;
2023-05-30 22:44:45 +02:00
}
.filters-container {
display: flex;
2023-05-30 22:44:45 +02:00
flex-direction: column;
justify-content: center;
align-items: center;
2023-05-30 22:44:45 +02:00
padding: 1em;
border-radius: 5px;
background-color: rgb(228 227 227);
gap: 1em;
width: 100%;
max-width: 900px;
2023-05-30 22:44:45 +02:00
}
.filters {
}
.chart {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 1em;
border-radius: 5px;
background-color: rgb(228 227 227);
width: 100%;
max-width: 900px;
}
.chart canvas {
background: white;
}
.results {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1em;
2023-05-15 13:53:34 +02:00
}
input {
border: 2px solid;
padding: 0.4em;
border-color: #ee907b;
accent-color: #c9543a;
}
2023-05-15 22:35:36 +02:00
input[type="number"] {
max-width: 6em;
border: 2px solid;
padding: 0.4em;
border-color: #ee907b;
border-radius: 5px;
}
input[type="date"] {
border: 2px solid;
padding: 0.4em;
border-color: #ee907b;
border-radius: 5px;
2023-05-15 22:35:36 +02:00
}
input[type="button"] {
border: 2px solid;
padding: 0.4em;
border-color: #ee907b;
border-radius: 5px;
}
2023-05-15 13:53:34 +02:00
table {
2023-05-15 22:35:36 +02:00
border-collapse: collapse;
border: 0px;
flex-basis: auto;
min-width: 0;
2023-05-15 22:35:36 +02:00
}
th {
padding: 0.2em;
text-align: left;
background: #c9543a;
color: white;
border: 0px;
}
th:nth-child(1) {
text-align: center;
}
th:nth-child(3) {
text-align: right;
padding: 0.7em;
}
th:nth-child(4) {
text-align: center;
padding: 0.6em;
2023-05-15 22:35:36 +02:00
}
tr {
border-collapse: collapse;
2023-05-17 16:55:46 +02:00
border: 1px solid #ddd;
border-left: 0px;
border-right: 0px;
cursor: pointer;
2023-05-15 22:35:36 +02:00
}
td {
padding: 0.2em;
2023-05-15 14:41:02 +02:00
}
td a {
color: #393939;
text-decoration: none;
}
td:nth-child(1) {
text-align: center;
padding: 0.5em;
}
td:nth-child(2) {
background-color: white;
padding: 0.4em;
}
2023-06-05 21:52:02 +02:00
td:nth-child(2) a {
width: 100%;
display: block;
}
td:nth-child(3) {
background-color: white;
font-size: small;
text-align: right;
padding-right: 0.7em;
}
td:nth-child(4) {
padding-left: 0.5em;
}
2023-05-27 20:56:26 +02:00
.searchresults td:nth-child(4):before {
content: "€ ";
2023-05-24 16:59:43 +02:00
}
.searchresults td:nth-child(5) > input[type="button"] {
width: 2em;
height: 2em;
text-align: center;
}
.carts {
width: auto;
}
.carts td {
2023-05-27 20:56:26 +02:00
text-align: left;
background-color: white;
2023-05-27 20:56:26 +02:00
}
.carts td:nth-child(2) {
text-align: center;
}
.carts th {
text-align: center;
}
2023-05-27 20:56:26 +02:00
.carts td:nth-child(3):before {
content: "€ ";
2023-05-27 20:56:26 +02:00
}
.carts td:nth-child(3) {
text-align: center;
font-size: medium;
2023-05-27 20:56:26 +02:00
}
.carts td:nth-child(4) {
padding-right: 0.5em;
}
.carts td:nth-child(4) a {
color: #c9543a;
}
.cartactions {
display: flex;
flex-direction: row;
align-items: center;
justify-content: left;
gap: 1em;
}
.cartactions a {
font-weight: 900;
}
.itemname {
word-wrap: break-word;
word-break: break-all;
}
2023-05-24 16:59:43 +02:00
.priceinfo {
margin-top: 0;
}
.increase {
color: red;
}
.decrease {
color: green;
}
2023-05-26 16:13:15 +02:00
.cart {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0 auto;
margin-bottom: 1em;
2023-05-26 16:13:15 +02:00
}
#cartitems td:nth-child(4):before {
content: "€ ";
}
#cartitems input[type="button"] {
width: 2em;
height: 2em;
}
2023-05-26 14:09:15 +02:00
@media screen and (max-width: 600px) {
.menu a {
font-size: medium;
}
.cartactions {
justify-content: center;
}
2023-05-26 14:09:15 +02:00
table {
border: 0;
2023-05-26 14:09:15 +02:00
}
2023-05-26 16:13:15 +02:00
2023-05-26 14:09:15 +02:00
table thead {
border: none;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
2023-05-26 14:09:15 +02:00
}
2023-05-26 16:13:15 +02:00
2023-05-26 14:09:15 +02:00
table tr {
display: block;
margin-bottom: 0.625em;
2023-05-26 14:09:15 +02:00
}
2023-05-26 16:13:15 +02:00
2023-05-26 14:09:15 +02:00
table td {
border-bottom: 1px solid #ddd;
padding: 0 0 0 0 !important;
padding-left: calc(65px + 1.2em) !important;
position: relative;
display: block;
2023-05-26 14:09:15 +02:00
}
2023-05-26 16:13:15 +02:00
2023-05-26 14:09:15 +02:00
table td::before {
/*
* aria-label has no advantage, it won't be read inside a table
content: attr(aria-label);
*/
content: attr(data-label);
background-color: #c9543a;
color: white;
border: 0px;
position: absolute;
padding: 0.1em 0.4em;
width: 65px;
height: calc(100%);
left: -1px;
top: -1px;
text-align: right;
font-weight: bold;
font-size: medium;
}
td:nth-child(1) {
text-align: center;
font-size: medium;
padding: 0.5em;
}
td:nth-child(3) {
background-color: white;
font-size: medium;
text-align: left;
padding-right: 0.7em;
2023-05-26 14:09:15 +02:00
}
2023-05-26 16:13:15 +02:00
2023-05-26 14:09:15 +02:00
table td:last-child {
border-bottom: 0;
2023-05-26 14:09:15 +02:00
}
}