80 lines
1.1 KiB
SCSS
80 lines
1.1 KiB
SCSS
|
|
.hedera-ticket {
|
|
/* Header */
|
|
|
|
.head {
|
|
padding: 0;
|
|
padding-bottom: 3px;
|
|
border-bottom: 1px solid #DDD;
|
|
margin-bottom: 1px;
|
|
}
|
|
.head > div > div {
|
|
margin: 15px 0;
|
|
}
|
|
.head > div > div:first-child {
|
|
margin: 0;
|
|
}
|
|
.head p {
|
|
margin: 3px 0;
|
|
}
|
|
.head p.important {
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
}
|
|
.total {
|
|
text-align: right;
|
|
}
|
|
.packages {
|
|
margin-top: 14px;
|
|
padding-top: 14px;
|
|
border-top: 1px solid #DDD;
|
|
display: block;
|
|
}
|
|
|
|
/* Lines */
|
|
|
|
.line {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
margin: 10px 0;
|
|
height: 80px;
|
|
}
|
|
.line:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.line > .photo {
|
|
flex: none;
|
|
border-radius: 50%;
|
|
width: 68px;
|
|
height: 68px;
|
|
gap: 0;
|
|
}
|
|
.line > .info {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
.line > .info > * {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
.line > .info > h2 {
|
|
font-size: 1rem;
|
|
font-weight: normal;
|
|
margin-bottom: 2px;
|
|
}
|
|
.line > .info > p {
|
|
margin: 0;
|
|
}
|
|
.line > .info > .tags {
|
|
color: #777;
|
|
}
|
|
.line > .info .discount {
|
|
color: green;
|
|
}
|
|
.line > .info > .subtotal {
|
|
float: right;
|
|
}
|
|
}
|