Project upload

This commit is contained in:
2022-04-24 03:02:39 -05:00
parent 92c64c30fe
commit c2ce33c3fb
71 changed files with 20006 additions and 0 deletions

60
sass/plugins/_back-to-top.scss Executable file
View File

@@ -0,0 +1,60 @@
/*--------------------------------------------------
[Back To Top Theme Button]
----------------------------------------------------*/
.back-to-top {
@include position(fixed, $bottom: 10px, $right: 10px);
display: inline-block;
z-index: 9;
@include size(40px);
@include font($size: 11px, $weight: 400);
color: $color-white;
text-align: center;
line-height: 3;
letter-spacing: 1px;
text-transform: uppercase;
background: $color-heading;
@include border-radius(3px);
visibility: hidden;
opacity: 0;
padding: 5px;
@include translate3d(0,50px,0);
@include cubic-transition($delay: 0, $duration: 300ms, $property: (all));
&:hover {
color: $color-white;
@include cubic-transition($delay: 0, $duration: 300ms, $property: (all));
}
&:focus,
&:hover {
text-decoration: none;
}
}
/* The Button Becomes Visible */
.back-to-top {
&.back-to-top-is-visible {
visibility: visible;
opacity: .6;
@include translate3d(0,0,0);
@include cubic-transition($delay: 0, $duration: 300ms, $property: (all));
&:hover {
opacity: 1;
@include cubic-transition($delay: 0, $duration: 300ms, $property: (all));
}
}
}
/* If the user keeps scrolling down, the button is out of focus and becomes less visible */
.back-to-top {
&.back-to-top-fade-out {
opacity: .4;
&:hover {
opacity: 1;
@include cubic-transition($delay: 0, $duration: 300ms, $property: (all));
}
}
}

View File

@@ -0,0 +1,21 @@
/*------------------------------------------------------------------
[Form Control]
------------------------------------------------------------------*/
.form-control {
height: 50px;
@include font($size: 14px, $weight: 400);
color: $color-subtitle;
@include placeholder($color-subtitle);
background: $color-sky-light;
border: none;
box-shadow: none;
@include border-radius(0);
padding-left: 15px;
&:focus {
color: $color-heading;
@include placeholder($color-heading);
box-shadow: none;
}
}