hedera-web/forms/ecomerce/ticket/style.css

74 lines
1.1 KiB
CSS
Raw Normal View History

/* Header */
2022-05-24 10:18:44 +00:00
.ticket .head {
padding: 0;
padding-bottom: .2em;
border-bottom: 1px solid #DDD;
margin-bottom: 1em;
}
2022-05-24 10:18:44 +00:00
.ticket .head > div > div {
margin: 15px 0;
2018-02-06 08:57:05 +00:00
}
2022-05-24 10:18:44 +00:00
.ticket .head > div > div:first-child {
margin: 0;
}
2022-05-24 10:18:44 +00:00
.ticket .head p {
margin: .2em 0;
}
2022-05-24 10:18:44 +00:00
.ticket .head p.important {
font-size: 1.2rem;
font-weight: bold;
}
2022-05-24 10:18:44 +00:00
.ticket .total {
text-align: right;
}
2022-05-24 10:18:44 +00:00
.ticket .packages {
2018-01-05 12:57:35 +00:00
margin-top: 1em;
padding-top: 1em;
border-top: 1px solid #DDD;
display: block;
}
/* Lines */
2022-05-24 10:18:44 +00:00
.ticket .line {
display: flex;
gap: 20px;
margin: 24px 0;
height: 65px;
2018-03-27 15:26:17 +00:00
}
2022-05-24 10:18:44 +00:00
.ticket .line:last-child {
margin-bottom: 0;
}
.ticket .line > .photo {
flex: none;
2018-01-05 12:57:35 +00:00
border-radius: 50%;
2022-05-24 10:18:44 +00:00
width: 65px;
2018-01-05 12:57:35 +00:00
}
2022-05-24 10:18:44 +00:00
.ticket .line > .info {
flex: 1;
2018-03-27 15:26:17 +00:00
}
2022-05-24 10:18:44 +00:00
.ticket .line > .info > h2 {
2018-03-27 15:26:17 +00:00
font-size: 1em;
font-weight: normal;
padding: 0;
padding-bottom: .1em;
}
2022-05-24 10:18:44 +00:00
.ticket .line > .info > p {
2018-03-27 15:26:17 +00:00
margin: 0;
}
2022-05-24 10:18:44 +00:00
.ticket .line > .info > .tags {
2018-03-27 15:26:17 +00:00
color: #777;
}
2022-05-24 10:18:44 +00:00
.ticket .line > .info .discount {
2018-08-30 13:26:05 +00:00
color: green;
}
2022-05-24 10:18:44 +00:00
.ticket .line > .info > .amount {
float: left;
}
2022-05-24 10:18:44 +00:00
.ticket .line > .info > .subtotal {
float: right;
}