%PDF- %PDF-
| Direktori : /home/vacivi36/app.vittahelp.com.br/scss/ |
| Current File : /home/vacivi36/app.vittahelp.com.br/scss/style.scss |
@import 'bootstrap/bootstrap';
@import 'bootstrap/variables';
@import 'bootstrap/mixins';
$font-primary: 'Lato',Arial, sans-serif;
$primary: #f35588;
@mixin gradient-background(){
background: rgba(247,89,89,1);
background: -moz-linear-gradient(-45deg, rgba(247,89,89,1) 0%, rgba(243,85,135,1) 100%);
background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(247,89,89,1)), color-stop(100%, rgba(243,85,135,1)));
background: -webkit-linear-gradient(-45deg, rgba(247,89,89,1) 0%, rgba(243,85,135,1) 100%);
background: -o-linear-gradient(-45deg, rgba(247,89,89,1) 0%, rgba(243,85,135,1) 100%);
background: -ms-linear-gradient(-45deg, rgba(247,89,89,1) 0%, rgba(243,85,135,1) 100%);
background: linear-gradient(135deg, rgba(247,89,89,1) 0%, rgba(243,85,135,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f75959', endColorstr='#f35587', GradientType=1 );
}
body{
font-family: $font-primary;
font-size: 16px;
line-height: 1.8;
font-weight: normal;
background: #f8f9fd;
color: lighten($black,50%);
}
a {
transition: .3s all ease;
color: $primary;
&:hover, &:focus {
text-decoration: none !important;
outline: none !important;
box-shadow: none;
}
}
h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
line-height: 1.5;
font-weight: 400;
font-family: $font-primary;
color: $black;
}
.bg-primary{
background: $primary !important;
}
.ftco-section{
padding: 7em 0;
}
.ftco-no-pt{
padding-top: 0;
}
.ftco-no-pb{
padding-bottom: 0;
}
//HEADING SECTION
.heading-section{
font-size: 28px;
color: $black;
}
//COVER BG
.img{
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.wrap{
width: 100%;
border-radius: 5px;
-webkit-box-shadow: 0px 10px 34px -15px rgba(0,0,0,0.24);
-moz-box-shadow: 0px 10px 34px -15px rgba(0,0,0,0.24);
box-shadow: 0px 10px 34px -15px rgba(0,0,0,0.24);
}
.text-wrap,.login-wrap{
width: 50%;
@include media-breakpoint-down(md){
width: 100%;
}
}
.text-wrap{
@include gradient-background();
color: $white;
.text{
h2{
font-weight: 900;
color: $white;
}
}
}
.login-wrap{
position: relative;
background: $white;
h3{
font-weight: 300;
}
}
.form-group{
position: relative;
.label{
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
color: $black;
font-weight: 700;
}
a{
color: lighten($black,50%);
}
}
//FORM CONTROL
.form-control {
height: 48px;
background: rgba(0,0,0,.05);
color: $black;
font-size: 16px;
border-radius: 50px;
box-shadow: none;
border: 1px solid transparent;
padding-left: 20px;
padding-right: 20px;
@include transition();
&::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: rgba(0,0,0,.2) !important;
}
&::-moz-placeholder { /* Firefox 19+ */
color: rgba(0,0,0,.2) !important;
}
&:-ms-input-placeholder { /* IE 10+ */
color: rgba(0,0,0,.2) !important;
}
&:-moz-placeholder { /* Firefox 18- */
color: rgba(0,0,0,.2) !important;
}
&:focus, &:active {
outline: none !important;
box-shadow: none;
background: rgba(0,0,0,.07);
border-color: transparent;
}
}
.social-media{
position: relative;
width: 100%;
.social-icon{
display: block;
width: 40px;
height: 40px;
background: transparent;
border: 1px solid rgba(0,0,0,.05);
font-size: 16px;
margin-right: 5px;
border-radius: 50%;
span{
color: lighten($black,60%);
}
&:hover, &:focus{
background: $primary;
span{
color: $white;
}
}
}
}
//CHECKBOX STYLE
.checkbox-wrap {
display: block;
position: relative;
padding-left: 30px;
margin-bottom: 12px;
cursor: pointer;
font-size: 16px;
font-weight: 500;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* Hide the browser's default checkbox */
.checkbox-wrap input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
/* Create a custom checkbox */
.checkmark {
position: absolute;
top: 0;
left: 0;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "\f0c8";
font-family: "FontAwesome";
position: absolute;
color:rgba(0,0,0,.1);
font-size: 20px;
margin-top: -4px;
@include transition(.3s);
}
/* Show the checkmark when checked */
.checkbox-wrap{
input:checked ~ .checkmark:after {
display: block;
content: "\f14a";
font-family: "FontAwesome";
color: rgba(0,0,0,.2);
}
}
/* Style the checkmark/indicator */
.checkbox-wrap .checkmark:after {
}
.checkbox-primary{
color: $primary;
input:checked ~ .checkmark:after {
color: $primary;
}
}
//BUTTON
.btn {
cursor: pointer;
box-shadow: none!important;
font-size: 15px;
padding: 10px 20px;
border-radius: 50px;
&:hover, &:active, &:focus {
outline: none;
}
&.btn-primary {
background: $primary;
border: 1px solid $primary;
color: $white;
@include gradient-background();
&:hover {
border: 1px solid $primary;
background: $primary;
color :$white;
}
&.btn-outline-primary {
border: 1px solid $primary;
background: transparent;
color :$primary;
&:hover {
border: 1px solid transparent;
background: $primary;
color :$white;
}
}
}
&.btn-white {
background: $white;
border: 1px solid $white;
color: $white;
&:hover {
border: 1px solid $white;
background: transparent;
color :$white;
}
&.btn-outline-white {
border: 1px solid $white;
background: transparent;
color :$white;
&:hover {
border: 1px solid transparent;
background: $white;
color :$black;
}
}
}
}