You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.4 KiB
65 lines
1.4 KiB
/* Основные стили страницы */
|
|
.woocommerce-order {
|
|
max-width: 800px;
|
|
margin: 2rem auto;
|
|
padding: 2rem;
|
|
background: #fff;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
/* Заголовок */
|
|
.woocommerce-order h2.woocommerce-order-details__title,
|
|
.woocommerce-order h2.woocommerce-column__title {
|
|
color: #333;
|
|
border-bottom: 2px solid #eee;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
/* Детали заказа */
|
|
.woocommerce-order-overview {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.woocommerce-order-overview li {
|
|
flex: 1;
|
|
min-width: 200px;
|
|
background: #f9f9f9;
|
|
padding: 1rem;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* Кнопка "Вернуться в магазин" */
|
|
.woocommerce-button.button.wc-backward {
|
|
background: #4CAF50;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
border-radius: 4px;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.woocommerce-button.button.wc-backward:hover {
|
|
background: #3e8e41;
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
.woocommerce-order {
|
|
padding: 1rem;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.woocommerce-order-overview li {
|
|
min-width: 100%;
|
|
}
|
|
|
|
.woocommerce-order-details,
|
|
.woocommerce-customer-details {
|
|
margin-top: 1rem;
|
|
}
|
|
} |