mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Commit realizando cambios en los roles de los usuarios
This commit is contained in:
245
httpdocs/themes/focus2/scss/layout/header/_header-global.scss
Normal file
245
httpdocs/themes/focus2/scss/layout/header/_header-global.scss
Normal file
@ -0,0 +1,245 @@
|
||||
/////////////////
|
||||
// Header
|
||||
/////////////////
|
||||
.header {
|
||||
// width: 100%;
|
||||
height: 5rem;
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
padding: 0rem;
|
||||
background-color: $white;
|
||||
z-index: 3;
|
||||
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
|
||||
padding-left: 17.1875rem;
|
||||
transition: all .2s ease;
|
||||
// &::before {
|
||||
// content: "";
|
||||
// height: 168px;
|
||||
// top: 0;
|
||||
// left: 0;
|
||||
// width: 100%;
|
||||
// position: absolute;
|
||||
// z-index: 997;
|
||||
// background: rgba(116, 104, 240,0.85)
|
||||
// }
|
||||
.header-content {
|
||||
height: 100%;
|
||||
padding-left: 5.3125rem;
|
||||
padding-right: 1.875rem;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
// box-shadow: $shadow;
|
||||
// @include respond('desktop') {
|
||||
// padding-left: 15px;
|
||||
// padding-right:15px;
|
||||
// max-width: 1140px;
|
||||
// margin: 0 auto;
|
||||
// }
|
||||
// @include respond('tab-land') {
|
||||
// padding-left: 15px;
|
||||
// padding-right:15px;
|
||||
// max-width: 960px;
|
||||
// margin: 0 auto;
|
||||
// }
|
||||
// @include respond('tab-port') {
|
||||
// padding-left: 15px;
|
||||
// padding-right:15px;
|
||||
// max-width: 720px;
|
||||
// margin: 0 auto;
|
||||
// }
|
||||
// @include respond('phone-land') {
|
||||
// padding-left: 60px;
|
||||
// padding-right:15px;
|
||||
// }
|
||||
@include custommq($max: 575px) {
|
||||
padding-left: 2.375rem;
|
||||
}
|
||||
}
|
||||
.navbar {
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
.navbar-collapse {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////
|
||||
// CSS Pulse Effect
|
||||
////////////////////////
|
||||
@mixin circle($circleSize) {
|
||||
width: $circleSize;
|
||||
height: $circleSize;
|
||||
border-radius: $circleSize/2;
|
||||
}
|
||||
|
||||
|
||||
/* pulse in SVG */
|
||||
|
||||
svg.pulse-svg {
|
||||
overflow: visible;
|
||||
.first-circle {
|
||||
-webkit-transform: scale(0.3);
|
||||
transform: scale(0.3);
|
||||
-webkit-transform-origin: center center;
|
||||
transform-origin: center center;
|
||||
-webkit-animation: pulse-me 3s linear infinite;
|
||||
animation: pulse-me 3s linear infinite;
|
||||
fill: $primary;
|
||||
}
|
||||
.second-circle {
|
||||
@extend .first-circle;
|
||||
-webkit-animation-delay: 1s;
|
||||
animation-delay: 1s;
|
||||
}
|
||||
.third-circle {
|
||||
@extend .first-circle;
|
||||
-webkit-animation-delay: 2s;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* pulse in CSS */
|
||||
|
||||
.pulse-css {
|
||||
@include circle(1rem);
|
||||
border-radius: 3.5rem;
|
||||
height: .4rem;
|
||||
position: absolute;
|
||||
background: $primary;
|
||||
right: 5px;
|
||||
top: .6rem;
|
||||
width: .4rem;
|
||||
&:after,
|
||||
&:before {
|
||||
content: '';
|
||||
@include circle(1rem);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: -.2rem;
|
||||
background-color: $primary;
|
||||
margin: auto;
|
||||
-webkit-transform: scale(0.3);
|
||||
transform: scale(0.3);
|
||||
-webkit-transform-origin: center center;
|
||||
transform-origin: center center;
|
||||
-webkit-animation: pulse-me 3s linear infinite;
|
||||
animation: pulse-me 3s linear infinite;
|
||||
@at-root [direction="rtl"] & {
|
||||
left: auto;
|
||||
right: -.2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes pulse-me {
|
||||
0% {
|
||||
-webkit-transform: scale(0.3);
|
||||
transform: scale(0.3);
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.1;
|
||||
}
|
||||
70% {
|
||||
opacity: 0.09;
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: scale(3);
|
||||
transform: scale(3);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse-me {
|
||||
0% {
|
||||
-webkit-transform: scale(0.3);
|
||||
transform: scale(0.3);
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.1;
|
||||
}
|
||||
70% {
|
||||
opacity: 0.09;
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: scale(3);
|
||||
transform: scale(3);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="full"],
|
||||
[data-sidebar-style="overlay"] {
|
||||
.header {
|
||||
width: 100%;
|
||||
@include custommq($min: 1200px, $max: 1350px) {
|
||||
width: 100%;
|
||||
padding-left: 14.375rem;
|
||||
}
|
||||
@include respond('phone-land') {
|
||||
width: 100%;
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="mini"] {
|
||||
.header {
|
||||
width: 100%;
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="compact"] {
|
||||
.header {
|
||||
width: 100%;
|
||||
padding-left: 9.375rem;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="modern"] {
|
||||
.header {
|
||||
width: 100%;
|
||||
padding-left: 9.375rem;
|
||||
}
|
||||
}
|
||||
|
||||
[data-header-position="fixed"] {
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.content-body {
|
||||
padding-top: 7rem;
|
||||
}
|
||||
.quixnav {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="compact"][data-header-position="fixed"][data-container="boxed"][data-layout="vertical"] {
|
||||
.header {
|
||||
width: 1199px;
|
||||
}
|
||||
}
|
||||
|
||||
[data-sidebar-style="modern"] {
|
||||
.header {
|
||||
.header-content {
|
||||
padding-left: 15px;
|
||||
.navbar {
|
||||
max-width: 1140px;
|
||||
margin: 0 auto;
|
||||
padding: 0 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user