0
1
Fork 0
hedera-web-mindshore/forms/ecomerce/basket/style.scss

77 lines
1.1 KiB
SCSS
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;
2022-11-15 21:26:48 +00:00
align-items: center;
gap: 12px;
2022-11-15 21:26:48 +00:00
margin: 10px 0;
height: 80px;
}
.basket .line:first-child {
margin-top: 0;
2022-05-24 10:18:44 +00:00
}
.basket .line:last-child {
margin-bottom: 0;
}
.basket .line > .delete {
margin: 0 -8px;
2022-05-24 10:18:44 +00:00
}
.basket .line > .photo {
flex: none;
border-radius: 50%;
2022-11-11 20:01:32 +00:00
width: 68px;
2022-11-15 21:26:48 +00:00
height: 68px;
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-19 13:00:13 +00:00
font-size: 1rem;
2018-03-27 15:26:17 +00:00
font-weight: normal;
2022-11-15 21:26:48 +00:00
margin: 0;
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%;
}