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

75 lines
1.0 KiB
CSS
Raw Normal View History

2022-05-24 10:18:44 +00:00
.basket {
2015-02-08 15:38:38 +00:00
padding: 1em;
2015-02-01 03:21:54 +00:00
}
2022-05-24 10:18:44 +00:00
.basket .box {
2022-05-25 18:04:16 +00:00
max-width: 420px;
2015-02-01 03:21:54 +00:00
margin: 0 auto;
2022-05-24 10:18:44 +00:00
padding: 30px;
}
2022-05-24 10:18:44 +00:00
.basket .form > p {
2015-07-07 15:27:47 +00:00
margin: 0;
font-size: 1.4em;
color: white;
text-align: right;
2015-02-01 03:21:54 +00:00
}
2022-05-24 10:18:44 +00:00
.basket .head {
padding-bottom: 30px;
margin: 0;
border-bottom: 1px solid #DDD;
}
2022-05-24 10:18:44 +00:00
.basket .head p {
font-weight: bold;
margin: 0;
padding: 0;
font-size: 1.4em;
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: 20px;
margin: 24px 0;
height: 65px;
}
.basket .line:last-child {
margin-bottom: 0;
}
.basket .line > .delete {
align-self: center;
}
.basket .line > .photo {
flex: none;
border-radius: 50%;
2022-05-24 10:18:44 +00:00
width: 65px;
}
2022-05-24 10:18:44 +00:00
.basket .line > .info {
flex: 1;
}
2022-05-24 10:18:44 +00:00
.basket .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
.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%;
}