secajs/src/public/css/offers.css

164 lines
2.3 KiB
CSS
Raw Normal View History

2025-02-24 16:04:22 +01:00
@media (max-width: 768px) {
#offers-root {
margin: 10px 10px;
}
#close-offer-controls-x {
width: 25px;
}
2025-02-24 16:46:26 +01:00
#premium-selector-area {
width: 60px;
}
2025-02-24 23:47:01 +01:00
#create-offer-controls > * {
width: 100%;
}
.checkbox-row {
width: 90%;
}
.checkbox-row > input[type='checkbox'] {
flex-shrink: 0;
margin-left: 5%;
}
2025-02-24 16:04:22 +01:00
}
@media (min-width: 769px) {
#offers-root {
width: 75%;
margin: 20px auto;
}
#close-offer-controls-x {
width: 50px;
}
2025-02-24 16:46:26 +01:00
#premium-selector-area {
width: 100px;
}
2025-02-24 23:47:01 +01:00
#create-offer-controls > * {
margin-left: 15%;
margin-right: 15%;
width: 70%;
}
.checkbox-row {
width: 60%;
}
.checkbox-row > input[type='checkbox'] {
flex-shrink: 0;
margin-left: 20%;
}
2025-02-24 16:46:26 +01:00
}
2025-02-24 16:04:22 +01:00
#create-offer-controls > * {
text-align: center;
}
#close-offer-controls-area {
display: flex;
justify-content: end;
}
2025-02-24 16:46:26 +01:00
#premium-area > * {
display: block;
}
#premium-content-area {
width: 80%;
margin-left: auto;
margin-right: auto;
2025-02-24 17:20:35 +01:00
display: flex;
2025-02-24 16:46:26 +01:00
}
#premium-selector-area {
2025-02-24 17:11:02 +01:00
width: 23%;
2025-02-24 16:46:26 +01:00
margin-left: 0;
margin-right: 5%;
2025-02-24 17:20:35 +01:00
display: flex;
2025-02-24 16:46:26 +01:00
}
#premium-value {
border: 1px solid gray;
2025-02-24 17:20:35 +01:00
width: 50%;
align-content: center;
}
#premium-buttons-container {
2025-02-24 17:39:09 +01:00
width: 50%;
2025-02-24 16:46:26 +01:00
}
.premium-button {
2025-02-24 17:20:35 +01:00
width: 100%;
height: 50%;
font-size: 1em;
2025-02-24 16:46:26 +01:00
}
#premium-price-display-area {
margin-left: 0;
margin-right: 0;
width: 70%;
}
2025-02-24 17:11:02 +01:00
#amount-area-content {
width: 30%;
margin-left: auto;
margin-right: auto;
}
2025-02-24 11:20:24 +01:00
.money-amount-input-area {
2025-02-24 00:31:17 +01:00
padding: 0;
2025-02-24 17:11:02 +01:00
width: 100%;
display: flex;
2025-02-24 00:31:17 +01:00
}
2025-02-24 11:20:24 +01:00
.money-amount-input-area > * {
2025-02-24 00:31:17 +01:00
display: inline-block;
font-size: 1em;
height: 2em;
vertical-align: middle;
}
2025-02-24 11:20:24 +01:00
.input-money-amount {
width: 75%;
2025-02-24 17:11:02 +01:00
margin: 0;
2025-02-24 00:31:17 +01:00
}
2025-02-24 11:20:24 +01:00
.money-amount-input-area .curr-symbol {
2025-02-24 00:31:17 +01:00
background-color: #d8d8d8;
2025-02-24 17:11:02 +01:00
width: 25%;
margin: 0;
border: 1px solid gray;
2025-02-24 00:31:17 +01:00
}
2025-02-24 11:20:24 +01:00
.money-amount-input-area .curr-symbol .curr-character {
2025-02-24 00:31:17 +01:00
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
2025-02-24 17:39:09 +01:00
.checkbox-row {
display: flex;
margin-left: auto;
margin-right: auto;
}
.checkbox-row > label {
text-align: start;
2025-02-24 23:47:01 +01:00
margin-right: auto;
2025-02-24 17:39:09 +01:00
margin-left: 0;
align-content: center;
}
.checkbox-row > input[type='checkbox'] {
2025-02-24 23:47:01 +01:00
flex-shrink: 0;
margin-right: 1em;
2025-02-24 17:39:09 +01:00
height: 2em;
width: 2em;
}
2025-02-24 23:47:01 +01:00