Commit realizando cambios en los roles de los usuarios

This commit is contained in:
Jaime Jimenez
2023-04-24 13:00:46 +02:00
parent 2d67588770
commit 8c4d77a598
6587 changed files with 365497 additions and 0 deletions

View File

@ -0,0 +1,6 @@
@import './fonts';
@import './helper';
@import './reset';
@import './colors';
@import './custom-grid';

View File

@ -0,0 +1,61 @@
.gradient_one {
@extend %gradient_one;
}
.gradient {
&-1 {
@extend %gradient-1;
}
&-2 {
@extend %gradient-2;
}
&-3 {
@extend %gradient-3;
}
&-4 {
@extend %gradient-4;
}
&-5 {
@extend %gradient-5;
}
&-6 {
@extend %gradient-6;
}
&-7 {
@extend %gradient-7;
}
&-8 {
@extend %gradient-8;
}
&-9 {
@extend %gradient-9;
}
&-10 {
@extend %gradient-10;
}
&-11 {
@extend %gradient-11;
}
&-12 {
@extend %gradient-12;
}
&-13 {
@extend %gradient-13;
}
&-14 {
@extend %gradient-14;
}
&-15 {
@extend %gradient-15;
}
&-16 {
@extend %gradient-16;
}
&-17 {
@extend %gradient-17;
}
&-18 {
@extend %gradient-18;
}
}

View File

@ -0,0 +1,24 @@
$grid-columns: 12;
@mixin make-col($size, $columns: $grid-columns) {
flex: 0 0 percentage($size / $columns);
// Add a `max-width` to ensure content within each column does not blow out
// the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
// do not appear to require this.
max-width: percentage($size / $columns);
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
@for $i from 1 through $grid-columns {
.col-xxl-#{$i} {
flex: 0 0 percentage($i / $grid-columns);
max-width: percentage($i / $grid-columns);
}
}
}

View File

@ -0,0 +1,24 @@
//Google font
// @import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800');
// @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');
// @import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');
// @import url('https://fonts.googleapis.com/css?family=Nunito:400,600,700');
// @import url('./../icons/helveticaNeue/css/helveticaNeue.css');
@import url('./../icons/simple-line-icons/css/simple-line-icons.css');
@import url('./../icons/font-awesome-old/css/font-awesome.min.css');
@import url('./../icons/material-design-iconic-font/css/materialdesignicons.min.css');
@import url('./../icons/themify-icons/css/themify-icons.css');
@import url('./../icons/line-awesome/css/line-awesome.min.css');
@import url('./../icons/avasta/css/style.css');

View File

@ -0,0 +1,86 @@
.c-pointer {
cursor: pointer;
}
/* Width percentage*/
.w-5 {
width: 5% !important;
}
.w-10 {
width: 10% !important;
}
.w-15 {
width: 15% !important;
}
.w-20 {
width: 20% !important;
}
.w-25 {
width: 25% !important;
}
.w-30 {
width: 30% !important;
}
.w-35 {
width: 35% !important;
}
.w-40 {
width: 40% !important;
}
.w-45 {
width: 45% !important;
}
.w-50 {
width: 50% !important;
}
.w-55 {
width: 55% !important;
}
.w-60 {
width: 60% !important;
}
.w-65 {
width: 65% !important;
}
.w-70 {
width: 70% !important;
}
.w-75 {
width: 75% !important;
}
.w-80 {
width: 80% !important;
}
.w-85 {
width: 85% !important;
}
.w-90 {
width: 90% !important;
}
.w-95 {
width: 95% !important;
}
.w-100 {
width: 100% !important;
}

View File

@ -0,0 +1,213 @@
@import "../abstracts/maps";
@import "./../vendor/animate/animate.min.css";
@import "./../vendor/aos/css/aos.min.css";
@import "./../vendor/perfect-scrollbar/css/perfect-scrollbar.css";
@import "./../vendor/metismenu/css/metisMenu.min.css";
* {
outline: none;
padding: 0;
&::after {
margin: 0;
padding: 0;
}
&::before {
margin: 0;
padding: 0;
}
}
body {
overflow-x: hidden;
height: 100%;
position: relative;
max-width: 100%;
// &::after {
// content: "";
// height: 500px;
// width: 100%;
// left: 0;
// top: 0;
// background-image: url('./../images/body/1.jpg');
// background-repeat: no-repeat;
// background-size: cover;
// background-position: 0;
// background-attachment: fixed;
// position: absolute;
// z-index: -10;
// }
// &::before {
// content: "";
// height: 300px;
// top: 0;
// left: 0;
// width: 100%;
// position: fixed;
// z-index: -9;
// background: $primary;
// // background-image: url('../images/body/12.jpg');
// }
}
p {
line-height: 1.8;
}
.box-shadow-none {
box-shadow: none!important;
}
#main-wrapper {
opacity: 0;
transition: all 0.25s ease-in;
overflow: hidden;
position: relative;
// background: $body-bg;
&.show {
opacity: 1;
}
}
ul {
padding: 0;
margin: 0;
}
li {
list-style: none;
}
a {
color: $body-color;
&:hover,
&:focus,
&.active {
color: $primary;
text-decoration: none;
}
}
// .content-body {
// .container-fluid {
// padding: 0 30px 0;
// @include media-breakpoint-down(sm) {
// padding: 0 1.5rem 0;
// padding: 0 0.9375rem 0;
// }
// }
// }
.content-body {
.container {
margin-top: 30px;
}
.container-fluid {
padding-right: 30px;
padding-left: 30px;
}
}
.content-heading {
font-size: 16px;
margin-bottom: 1.875rem;
margin-top: 3.125rem;
border-bottom: 1px solid $border;
padding-bottom: 10px;
@at-root [direction="rtl"] #{&} {
text-align: right;
}
}
//change bootstrap default button behaviour on :focus:active 😢
.btn {
&-primary {
&:not(:disabled):not(.disabled) {
&:active,
&.active {
&:focus {
box-shadow: none;
}
}
}
}
}
// Support ticket btn
.support-ticket {
position: fixed;
bottom: 30px;
right: 15px;
z-index: 999999;
}
.support-ticket-btn {
width: 100px;
background: #7CB442;
animation: 0.7s ease-in-out 0s infinite alternate none running crescendo;
border-radius: 50px;
color: #fff;
font-size: 8px;
font-size: 16px;
padding: 5px 10px 7px;
text-align: center;
display: inline-block;
box-shadow: rgba(124, 180, 66, 0.7) 0px 8px 35px 0px;
&:hover,
&:focus {
color: #fff;
}
}
// @keyframes crescendo {
// 0% {transform: scale(.8);}
// 50% {transform: scale(1);}
// }
@-webkit-keyframes crescendo {
from {
-webkit-transform: translateY(5px) scale(.8);
-ms-transform: translateY(5px) scale(.8);
transform: translateY(5px) scale(.8);
}
to {
-webkit-transform: translateY(0px) scale(1);
-ms-transform: translateY(0px) scale(1);
transform: translateY(0px) scale(1);
}
}
@keyframes gXGDoR {
from {
-webkit-transform: translateY(5px) scale(.8);
-ms-transform: translateY(5px) scale(.8);
transform: translateY(5px) scale(.8);
}
to {
-webkit-transform: translateY(0px) scale(1);
-ms-transform: translateY(0px) scale(1);
transform: translateY(0px) scale(1);
}
}
@keyframes crescendo {
from {
-webkit-transform: translateY(5px) scale(.8);
-ms-transform: translateY(5px) scale(.8);
transform: translateY(5px) scale(.8);
}
to {
-webkit-transform: translateY(0px) scale(1);
-ms-transform: translateY(0px) scale(1);
transform: translateY(0px) scale(1);
}
}
@keyframes gXGDoR {
from {
-webkit-transform: translateY(5px) scale(.8);
-ms-transform: translateY(5px) scale(.8);
transform: translateY(5px) scale(.8);
}
to {
-webkit-transform: translateY(0px) scale(1);
-ms-transform: translateY(0px) scale(1);
transform: translateY(0px) scale(1);
}
}