This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/resources/static/css/articleDetail.css

30 lines
457 B
CSS
Raw Normal View History

2020-01-11 16:39:34 +01:00
.articledetail {
max-width: 100%;
padding: 2em;
2020-01-12 16:14:01 +01:00
background-color: var(--c-primary);
2020-01-11 16:39:34 +01:00
}
.availability {
2020-01-12 16:14:01 +01:00
color: var(--root-c-secondary);
2020-01-11 16:39:34 +01:00
}
.checkout {
border: 0px;
border-left: 2px;
border-color: var(--c-white);
border-style: solid;
}
.quantity {
display: flex;
}
.quantity label {
min-width: 5em;
margin-bottom: 0px;
padding-left: 15px;
2020-01-12 16:14:01 +01:00
}
.checkout button {
background-color: var(--root-c-secondary);
2020-01-11 16:39:34 +01:00
}