delphi.market/public/market.css

47 lines
714 B
CSS
Raw Normal View History

2023-09-09 20:52:50 +00:00
.order-button {
border: none;
margin: auto;
border-radius: 4px;
font-size: 20px;
}
.order-form {
display: grid;
2023-09-09 20:52:50 +00:00
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
}
.sx-1 {
margin: 0 1rem;
padding: 0 1rem;
}
.yes {
background-color: rgba(20,158,97,.24);
color: #35df8d;
}
2023-09-09 20:52:50 +00:00
button.yes:hover {
2023-09-09 20:52:50 +00:00
background-color: #35df8d;
color: white;
}
2023-09-09 20:52:50 +00:00
button.yes.selected {
2023-09-09 20:52:50 +00:00
background-color: #35df8d;
color: white;
}
.no {
background-color: rgba(245,57,94,.24);
color: #ff7386;
}
2023-09-09 20:52:50 +00:00
button.no:hover {
2023-09-09 20:52:50 +00:00
background-color: #ff7386;
color: white;
}
2023-09-09 20:52:50 +00:00
button.no.selected {
2023-09-09 20:52:50 +00:00
background-color: #ff7386;
color: white;
}
2023-09-10 21:39:47 +00:00
th {
font-size: small;
}