51 lines
965 B
SCSS
Executable File
51 lines
965 B
SCSS
Executable File
#caisse-now {
|
|
.product-box {
|
|
display: inline-block;
|
|
margin-right: 1rem;
|
|
margin-bottom: 1rem;
|
|
width: 100%;
|
|
}
|
|
.product-button {
|
|
width: 80%;
|
|
text-overflow-ellipsis: "...";
|
|
}
|
|
.listing-products {
|
|
.btn, button {
|
|
font-size: 2rem;
|
|
background: white;
|
|
padding: 1.5rem;
|
|
-webkit-border-radius: 1rem;
|
|
-moz-border-radius: 1rem;
|
|
border-radius: 1rem;
|
|
border-color: $all-text-color;
|
|
box-shadow: 5px 3px 10px 2px #ddd;
|
|
border-width: 0;
|
|
&.btn-primary {
|
|
background-color: $deepblue;
|
|
}
|
|
&:hover {
|
|
background: $lightblue;
|
|
}
|
|
}
|
|
.badge-default {
|
|
background: $lightblue;
|
|
}
|
|
.badge-success {
|
|
background: mix(green, $lightblue);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.category-listing{
|
|
border: solid 1px $grey;
|
|
padding: 1rem;
|
|
margin: 0.5rem;
|
|
border-radius: 0.25rem;
|
|
width: calc(50% - 2rem);
|
|
float: left;
|
|
}
|
|
.validate_selling {
|
|
margin: 0.25rem;
|
|
}
|