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

73 lines
1.0 KiB
CSS
Raw Normal View History

2022-05-26 06:08:31 +00:00
2022-05-24 10:18:44 +00:00
.basket .head {
border-bottom: 1px solid #DDD;
}
2022-05-24 10:18:44 +00:00
.basket .head p {
font-weight: bold;
margin: 0;
padding: 0;
2022-11-11 15:17:20 +00:00
font-size: 1.4rem;
text-align: right;
}
2022-05-26 06:08:31 +00:00
.basket .form > p {
margin: 0;
2022-11-11 15:17:20 +00:00
font-size: 1.4rem;
2022-05-26 06:08:31 +00:00
color: white;
text-align: right;
}
2015-02-01 03:21:54 +00:00
/* Lines */
2022-05-24 10:18:44 +00:00
.basket .line {
display: flex;
gap: 12px;
2022-05-24 10:18:44 +00:00
margin: 24px 0;
height: 65px;
}
.basket .line:last-child {
margin-bottom: 0;
}
.basket .line > .delete {
align-self: center;
margin: 0 -8px;
2022-05-24 10:18:44 +00:00
}
.basket .line > .photo {
flex: none;
border-radius: 50%;
2022-05-24 10:18:44 +00:00
width: 65px;
gap: 0;
}
2022-05-24 10:18:44 +00:00
.basket .line > .info {
flex: 1;
overflow: hidden;
}
.basket .line > .info > * {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
2022-05-24 10:18:44 +00:00
.basket .line > .info > h2 {
2022-11-11 15:18:36 +00:00
font-size: .9rem;
2018-03-27 15:26:17 +00:00
font-weight: normal;
2022-11-11 15:17:20 +00:00
margin-bottom: 2px;
2018-03-27 15:26:17 +00:00
}
2022-05-24 10:18:44 +00:00
.basket .line > .info > p {
2018-03-27 15:26:17 +00:00
margin: 0;
}
2022-05-24 10:18:44 +00:00
.basket .line > .info > .tags {
2018-03-27 15:26:17 +00:00
color: #777;
}
2022-05-24 10:18:44 +00:00
.basket .line .subtotal {
float: right;
}
/* Fields */
2022-05-24 10:18:44 +00:00
.basket td.available-exceeded input {
background-color: #FCC;
}
2022-05-24 10:18:44 +00:00
.basket .icon > img {
border-radius: 50%;
}