caisse-bliss/assets/css/pages/_dashboard.scss
2018-05-08 11:27:06 +02:00

55 lines
979 B
SCSS
Executable File

#caisse-now {
.product-box {
display: inline-block;
margin-right: 1rem;
margin-bottom: 1rem;
width: 50%;
}
.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 26px 2px #ddd;
border-width: 0;
&.btn-primary {
background-color: $deepblue;
}
&:hover {
background: $lightblue;
}
}
.badge-default {
background: $lightblue;
}
.badge-success {
background: mix(green, $lightblue);
}
}
}
.validate_selling {
margin: 0.25rem;
}
@media all and(max-width: 1200px) {
#caisse-now {
.product-box {
width: 50%;
}
.product-button {
min-width: calc(100% - 56px)
}
}
}