Harmony/orders/static/invoice.css

43 lines
1.1 KiB
CSS
Raw Normal View History

2024-02-19 05:43:38 +00:00
/* Основные стили контейнера */
.invoice-container {
font-family: 'Georgia', serif;
max-width: 800px;
margin: auto;
border: 1px solid #00ffc2;
box-shadow: 0 2px 4px rgba(0,0,0,.1);
overflow: hidden;
font-size: 16px;
color: #333;
background-size: cover;
}
/* Заголовок чека */
.invoice-header {
background-color: rgba(255, 255, 255, 0.8); /* Слегка прозрачный для эффекта эзотерики */
color: #444;
padding: 20px;
text-align: center;
border-bottom: 1px dashed #bbb;
}
/* Тело чека */
.invoice-body {
padding: 20px;
background-color: rgba(255, 255, 255, 0.9); /* Слегка прозрачный фон */
}
/* Стили списка товаров */
.invoice-body ul li {
padding: 10px 0;
border-bottom: 1px dashed #bbb;
}
/* Подвал чека */
.invoice-footer {
text-align: center;
padding: 20px;
background-color: rgba(0, 255, 248, 0.8); /* Слегка прозрачный для добавления эффекта */
border-top: 1px dashed #74fff9;
}