mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
up to sf 7
This commit is contained in:
parent
a39b6239b0
commit
501795a8fa
16586 changed files with 19384005 additions and 0 deletions
122
v1/public/assets/css/pages/_dashboard.scss
Executable file
122
v1/public/assets/css/pages/_dashboard.scss
Executable file
|
@ -0,0 +1,122 @@
|
|||
#caisse-now {
|
||||
.product-box {
|
||||
display: inline-block;
|
||||
margin-right: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
width: 100%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.product-button {
|
||||
width: 80%;
|
||||
text-overflow-ellipsis: "...";
|
||||
}
|
||||
|
||||
.listing-products {
|
||||
|
||||
button.active {
|
||||
background: yellowgreen;
|
||||
}
|
||||
|
||||
.btn, button {
|
||||
font-size: 1.6rem;
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
.input-comment {
|
||||
width: calc(100% - 40px);
|
||||
}
|
||||
}
|
||||
|
||||
// container of categories
|
||||
.horizontal-land {
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
//width: 100%;
|
||||
height: 75vh;
|
||||
background: #ccc;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
// list of one category
|
||||
.one-category {
|
||||
background: #dedede;
|
||||
width: 350px;
|
||||
margin: 0 4px;
|
||||
height: calc(74vh - 1rem);
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
//vertical-align: top;
|
||||
white-space: nowrap;
|
||||
//float: left;
|
||||
h2 {
|
||||
font-weight: bold;
|
||||
|
||||
&:first-letter {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.category-listing {
|
||||
border: solid 1px $grey;
|
||||
padding: 1rem;
|
||||
margin: 0.5rem;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
|
||||
.validate_selling {
|
||||
margin: 0.25rem;
|
||||
}
|
||||
|
||||
.product-listing {
|
||||
height: 70vh;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.sellings {
|
||||
.remove-item {
|
||||
margin-left: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
#not_loaded {
|
||||
width: 100%;
|
||||
height: 75vh;
|
||||
}
|
||||
|
||||
.selling-ok {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 2em;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.block {
|
||||
display: block;
|
||||
width: calc(100% - 2em);
|
||||
text-align: center;
|
||||
}
|
4
v1/public/assets/css/pages/_history.scss
Executable file
4
v1/public/assets/css/pages/_history.scss
Executable file
|
@ -0,0 +1,4 @@
|
|||
.key-figure{
|
||||
font-size: 2em;
|
||||
font-weight: light;
|
||||
}
|
136
v1/public/assets/css/pages/demo.scss
Executable file
136
v1/public/assets/css/pages/demo.scss
Executable file
|
@ -0,0 +1,136 @@
|
|||
|
||||
body {
|
||||
background: #F5F5F5;
|
||||
font: 18px/1.5 sans-serif;
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
line-height: 1.2;
|
||||
margin: 0 0 .5em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 36px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 21px;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 1em 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $primary;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
code {
|
||||
background: #F5F5F5;
|
||||
max-width: 100px;
|
||||
padding: 2px 6px;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
background: #FFF;
|
||||
margin: 1em auto;
|
||||
//max-width: 800px;
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
#container {
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
#homepage{
|
||||
@extend .bigger-text;
|
||||
h1 span {
|
||||
display: block;
|
||||
font-size: 75%;
|
||||
}
|
||||
}
|
||||
.hint,
|
||||
.product-values-block{
|
||||
@extend .bigger-text;
|
||||
h2{
|
||||
font-size: 5rem;
|
||||
}
|
||||
}
|
||||
.bigger-text{
|
||||
font-size: 2rem;
|
||||
line-height: 3.5rem;
|
||||
}
|
||||
#icon-status, #icon-book {
|
||||
float: left;
|
||||
height: 64px;
|
||||
margin-right: 1em;
|
||||
margin-top: -4px;
|
||||
width: 64px;
|
||||
}
|
||||
|
||||
#icon-book {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#wrapper {
|
||||
//width: 80%;
|
||||
margin: 2em auto;
|
||||
}
|
||||
|
||||
#icon-book {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#status a, #next a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@-webkit-keyframes fade-in {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes fade-in {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.sf-toolbar {
|
||||
opacity: 0;
|
||||
-webkit-animation: fade-in 1s .2s forwards;
|
||||
animation: fade-in 1s .2s forwards;
|
||||
}
|
||||
}
|
||||
|
||||
.header-block{
|
||||
background: $darkblue;
|
||||
.btn-default{
|
||||
color: $grey;
|
||||
}
|
||||
.btn{
|
||||
|
||||
span{
|
||||
position: absolute;
|
||||
right: 2.5em;
|
||||
top: 1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
#menu-dashboard .nav .logo-home.btn-default{
|
||||
background: $darkblue;
|
||||
height: 52px;
|
||||
font-size: 1em;
|
||||
}
|
314
v1/public/assets/css/pages/global.scss
Executable file
314
v1/public/assets/css/pages/global.scss
Executable file
|
@ -0,0 +1,314 @@
|
|||
@import '../split/custom_vars';
|
||||
|
||||
body {
|
||||
color: $all-text-color;
|
||||
font-family: "Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 1rem;
|
||||
line-height: 2rem;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.main-screen {
|
||||
min-height: 80vh;
|
||||
}
|
||||
|
||||
.bg-dark {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.bg-shader {
|
||||
@extend .bg-dark;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.bg-img {
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
overflow: hidden;
|
||||
background-position: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.bg-accessories {
|
||||
@extend .bg-img;
|
||||
background-image: url('../../img/accessories.jpg');
|
||||
}
|
||||
|
||||
.bg-girl {
|
||||
@extend .bg-img;
|
||||
background-image: url('../../img/girl_computer.jpg');
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background: $deepblue;
|
||||
color: $light;
|
||||
|
||||
a {
|
||||
color: $lightblue;
|
||||
}
|
||||
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.logo-main {
|
||||
color: $logo-color;
|
||||
}
|
||||
|
||||
.big-footer {
|
||||
background: $dark;
|
||||
color: $light;
|
||||
height: 4em;
|
||||
padding: 1em;
|
||||
box-sizing: border-box;
|
||||
position: static;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
display: block;
|
||||
float:left;
|
||||
}
|
||||
|
||||
thead {
|
||||
background: $darkblue;
|
||||
color: $light;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
min-width: 20em;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.try {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.padded {
|
||||
padding: 1rem;
|
||||
|
||||
&-v {
|
||||
padding: 0;
|
||||
padding-top: 1rem;
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.marged {
|
||||
margin: 1rem;
|
||||
|
||||
&-v {
|
||||
margin: 0;
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
&-h {
|
||||
margin: 0;
|
||||
margin-right: 1rem;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.bgwarning {
|
||||
background: orange;
|
||||
color: #ee5555;
|
||||
}
|
||||
|
||||
.bgdanger {
|
||||
background: indianred;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.bgsuccess {
|
||||
background: greenyellow;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.previsionnel {
|
||||
font-size: 1rem;
|
||||
|
||||
label {
|
||||
min-width: 220px;
|
||||
}
|
||||
|
||||
.big-number {
|
||||
font-size: 1.85rem;
|
||||
color: #2B2d42;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
html, h1, h2, h3, h4, h5, h6 {
|
||||
font-family: Source Sans, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
input {
|
||||
width: auto;
|
||||
min-width: 2em;
|
||||
}
|
||||
|
||||
#menu-dashboard {
|
||||
background: $dark;
|
||||
display: flex;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
min-height: 100vh;
|
||||
width: 13vw;
|
||||
min-width: 300px;
|
||||
overflow-x: auto;
|
||||
z-index: 10;
|
||||
|
||||
.nav {
|
||||
width: 100%;
|
||||
min-width: 300px;
|
||||
display: block;
|
||||
border-right: solid 2px mix($dark, $grey);
|
||||
|
||||
.btn {
|
||||
color: $light;
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
color: $light;
|
||||
|
||||
&:hover {
|
||||
background: mix($deepblue, $light);
|
||||
color: $dark;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
i.fa {
|
||||
float: left;
|
||||
margin-right: 1em;
|
||||
color: $light;
|
||||
}
|
||||
}
|
||||
|
||||
.nav > li > a:hover, .nav > li > a {
|
||||
&:focus {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: $lightblue;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: $lightblue;
|
||||
}
|
||||
}
|
||||
|
||||
.btn {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
background: transparent;
|
||||
|
||||
}
|
||||
|
||||
.btn-success {
|
||||
background-color: $deepblue;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
tr {
|
||||
&.bg-success {
|
||||
td {
|
||||
background: greenyellow;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.table {
|
||||
> div {
|
||||
&:hover {
|
||||
background: #ccc;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.table > thead > tr > td,
|
||||
table td {
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.login-fosub {
|
||||
.padded {
|
||||
padding: 3em;
|
||||
}
|
||||
|
||||
input[type=submit] {
|
||||
background: $primary;
|
||||
color: $light;
|
||||
display: block;
|
||||
margin-top: 1em;
|
||||
padding: 1em;
|
||||
border: 0;
|
||||
width: 100%;
|
||||
|
||||
&:hover {
|
||||
background: $lightblue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#fos_user_profile_form {
|
||||
div {
|
||||
margin: 0.5em auto;
|
||||
}
|
||||
}
|
||||
|
||||
#bodyland {
|
||||
min-height: 100vh;
|
||||
.container {
|
||||
min-height: 90vh;
|
||||
}
|
||||
|
||||
> .row {
|
||||
min-height: 90vh;
|
||||
// for crud forms
|
||||
table{
|
||||
thead{
|
||||
th{
|
||||
padding: 0.5rem;
|
||||
}
|
||||
}
|
||||
+ ul{
|
||||
a {
|
||||
margin-top: 1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
table {
|
||||
margin-top: 2em;
|
||||
}
|
||||
}
|
||||
|
||||
#menu_button {
|
||||
z-index: 10;
|
||||
position: absolute;
|
||||
right: 1em;
|
||||
top: -2px;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.heading-of-list {
|
||||
a {
|
||||
margin-top: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.hint {
|
||||
margin-top: 1em;
|
||||
}
|
31
v1/public/assets/css/pages/home.scss
Executable file
31
v1/public/assets/css/pages/home.scss
Executable file
|
@ -0,0 +1,31 @@
|
|||
|
||||
.main-section {
|
||||
padding: 1rem;
|
||||
display: flex;
|
||||
color: $light;
|
||||
justify-content: center;
|
||||
h1 {
|
||||
font-size: 4em;
|
||||
}
|
||||
h2 {
|
||||
color: $light !important;
|
||||
}
|
||||
> div {
|
||||
height: 80vh;
|
||||
padding-top: 25vh;
|
||||
max-widht: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.product-values {
|
||||
color: $light;
|
||||
padding: 4rem;
|
||||
padding-top: 25vh;
|
||||
}
|
||||
|
||||
#homepage {
|
||||
h2, h3, h4, h5, h6 {
|
||||
color: $light;
|
||||
}
|
||||
font-size: 1.5rem;
|
||||
}
|
4
v1/public/assets/css/pages/libs.scss
Executable file
4
v1/public/assets/css/pages/libs.scss
Executable file
|
@ -0,0 +1,4 @@
|
|||
@import '~font-awesome/css/font-awesome.css';
|
||||
@import '~bootstrap-sass/assets/stylesheets/bootstrap';
|
||||
@import '~intro.js/minified/introjs.min.css';
|
||||
@import '~intro.js/themes/introjs-dark.css';
|
188
v1/public/assets/css/pages/responsive.scss
Executable file
188
v1/public/assets/css/pages/responsive.scss
Executable file
|
@ -0,0 +1,188 @@
|
|||
@media all and(max-width: 1600px) {
|
||||
.big-footer{
|
||||
padding-left: 5em;
|
||||
}
|
||||
#caisse-now{
|
||||
margin-left: -1em;
|
||||
}
|
||||
}
|
||||
@media all and(max-width: 1200px) {
|
||||
#caisse-now{
|
||||
margin-left: 0;
|
||||
}
|
||||
.big-footer{
|
||||
padding-left: 0;
|
||||
}
|
||||
nav {
|
||||
min-width: auto;
|
||||
}
|
||||
html, body {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
.bg-shader {
|
||||
height: 100%;
|
||||
min-height: 100vh;
|
||||
}
|
||||
.product-values-block {
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
#homepage {
|
||||
.main-section {
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: 1.25em;
|
||||
}
|
||||
}
|
||||
#caisse-now {
|
||||
.product-box {
|
||||
width: 100%;
|
||||
&.active{
|
||||
.product-button{
|
||||
background: greenyellow;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product-button {
|
||||
min-width: calc(100% - 56px)
|
||||
}
|
||||
|
||||
.listing-products {
|
||||
|
||||
.btn, button {
|
||||
font-size: 1rem;
|
||||
padding: 0.2em;
|
||||
border-radius: 0.3em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media all and(max-width: 1200px) {
|
||||
|
||||
#bodyland {
|
||||
.container {
|
||||
min-height: 100vh;
|
||||
width: 80vw;
|
||||
}
|
||||
}
|
||||
#menu-dashboard {
|
||||
font-size: 1rem;
|
||||
width: 19vw;
|
||||
min-width: 200px;
|
||||
|
||||
.nav {
|
||||
min-width: 200px;
|
||||
}
|
||||
}
|
||||
|
||||
form {
|
||||
margin-top: 3em;
|
||||
|
||||
select {
|
||||
width: 100%;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
+ ul {
|
||||
margin-top: 1em;
|
||||
list-style-type: none;
|
||||
|
||||
a {
|
||||
display: block;
|
||||
|
||||
.fa {
|
||||
margin-right: 1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media all and(max-width: 600px) {
|
||||
|
||||
#menu_button{
|
||||
|
||||
}
|
||||
html, body {
|
||||
font-size: 1rem;
|
||||
}
|
||||
#menu-dashboard .nav .logo-home.btn-default {
|
||||
height: auto;
|
||||
font-size: 2em;
|
||||
}
|
||||
#menu-dashboard {
|
||||
width: 100vw;
|
||||
visibility: hidden;
|
||||
|
||||
&.shown {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav {
|
||||
|
||||
min-width: 200px;
|
||||
height: 100vh;
|
||||
overflow: auto;
|
||||
|
||||
a {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.main-section > div {
|
||||
padding-top: 0;
|
||||
}
|
||||
.product-values {
|
||||
padding: 0;
|
||||
}
|
||||
.bigger-text, #homepage, .hint, .product-values-block {
|
||||
font-size: 1.25rem;
|
||||
line-height: 2rem;
|
||||
}
|
||||
.category-listing {
|
||||
width: calc(100vw - 4rem);
|
||||
height: 25vh;
|
||||
min-height: auto;
|
||||
float: left;
|
||||
clear: both;
|
||||
overflow: auto;
|
||||
}
|
||||
.sellings {
|
||||
input {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.client-now {
|
||||
input {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
.sellings, .client-now {
|
||||
|
||||
input {
|
||||
font-size: 1.5rem;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
}
|
||||
.big-footer {
|
||||
font-size: 1rem;
|
||||
}
|
||||
#caisse-now .product-box {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
#caisse-now .listing-products button {
|
||||
padding: 0.5rem 1rem;
|
||||
|
||||
.express-button {
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
0
v1/public/assets/css/pages/special.scss
Executable file
0
v1/public/assets/css/pages/special.scss
Executable file
Loading…
Add table
Add a link
Reference in a new issue