95 lines
2.0 KiB
SCSS
95 lines
2.0 KiB
SCSS
//
|
|
// Pricing
|
|
//
|
|
|
|
|
|
.pricingTable1{
|
|
.title1{
|
|
font-weight: 700;
|
|
color: $gray-700;
|
|
font-size: 20px;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.amount{
|
|
display: block;
|
|
font-size: 36px;
|
|
font-weight: 600;
|
|
color: $gray-700;
|
|
}
|
|
.pricing-content-2{
|
|
margin: 0 0 30px 0;
|
|
border-bottom:1px solid $gray-200;
|
|
}
|
|
.pricingTable-signup:hover{
|
|
background: linear-gradient(14deg, rgba($primary, 0.6) 0%, $primary);
|
|
box-shadow: 0 1px 2px 0 rgba($gray-400, 0.5);
|
|
color: $white;
|
|
}
|
|
.pricing-content-2 li{
|
|
color: $gray-700;
|
|
line-height: 40px;
|
|
&::before{
|
|
content: "\f00c" !important;
|
|
font-family: 'Font Awesome 5 Free' !important;
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
background-color: rgba($secondary, 0.1);
|
|
color: $secondary !important;
|
|
width: 26px;
|
|
height: 26px;
|
|
line-height: 26px;
|
|
display: inline-block;
|
|
border-radius: 50%;
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
.pricingTable-signup{
|
|
display: block;
|
|
padding: 14px 26px;
|
|
background: linear-gradient(14deg, $primary 0%, rgba($primary, 0.6));
|
|
border-radius: 52px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: $white;
|
|
letter-spacing: 0.32px;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
transition: all 300ms linear 0ms;
|
|
box-shadow: 0 7px 14px 0 rgba($primary, 0.5);
|
|
}
|
|
}
|
|
|
|
.pricingTable1 .a-animate-blink {
|
|
-webkit-animation: a-animate-blink 1s step-start 0s infinite;
|
|
-moz-animation: a-animate-blink 1s step-start 0s infinite;
|
|
-ms-animation: a-animate-blink 1s step-start 0s infinite;
|
|
-o-animation: a-animate-blink 1s step-start 0s infinite;
|
|
animation: a-animate-blink 1s step-start 0s infinite;
|
|
animation-fill-mode: initial;
|
|
}
|
|
|
|
@-webkit-keyframes a-animate-blink {
|
|
50% {
|
|
opacity: 0.0;
|
|
}
|
|
}
|
|
|
|
@-moz-keyframes a-animate-blink {
|
|
50% {
|
|
opacity: 0.0;
|
|
}
|
|
}
|
|
|
|
@-o-keyframes a-animate-blink {
|
|
50% {
|
|
opacity: 0.0;
|
|
}
|
|
}
|
|
|
|
@keyframes a-animate-blink {
|
|
50% {
|
|
opacity: 0.0;
|
|
}
|
|
} |