first commit
This commit is contained in:
@@ -0,0 +1,686 @@
|
||||
/*
|
||||
Template Name: Appsvision
|
||||
Template URI: http://craftytheme.com/demo/html/appsvision
|
||||
Author Name: Md.Rabiul Islam
|
||||
Author URI: http://craftytheme.com
|
||||
======================================
|
||||
Table of Contents
|
||||
======================================
|
||||
- Home Page
|
||||
- Preloader
|
||||
- Header Section
|
||||
- Hero Section
|
||||
- Feature Section
|
||||
- Pricing Section
|
||||
- Subscribe Section
|
||||
- Basic Style
|
||||
- Section Title
|
||||
======================================
|
||||
*/
|
||||
|
||||
/*
|
||||
----------------------------------
|
||||
- Preloader
|
||||
----------------------------------
|
||||
*/
|
||||
.preloader-area {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
background: rgba(255,255,255,0.95);
|
||||
z-index: 1000000;
|
||||
}
|
||||
.preloader-inner {
|
||||
display: table;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.preloader {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
padding: 0px;
|
||||
text-align: center;
|
||||
}
|
||||
.preloader span {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 100%;
|
||||
background: #000000;
|
||||
-webkit-animation: preloader 1.6s linear infinite;
|
||||
animation: preloader 1.6s linear infinite;
|
||||
}
|
||||
.preloader span:last-child {
|
||||
animation-delay:-0.8s;
|
||||
-webkit-animation-delay:-0.8s;
|
||||
}
|
||||
@keyframes preloader {
|
||||
0% {transform: scale(0, 0);opacity:0.5;}
|
||||
100% {transform: scale(1, 1);opacity:0;}
|
||||
}
|
||||
@-webkit-keyframes preloader {
|
||||
0% {-webkit-transform: scale(0, 0);opacity:0.5;}
|
||||
100% {-webkit-transform: scale(1, 1);opacity:0;}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
----------------------------------
|
||||
- Header Section
|
||||
----------------------------------
|
||||
*/
|
||||
.navbar-area {}
|
||||
.navbar-default {
|
||||
background: rgba(167,193,198,0.45);
|
||||
border-bottom: 1px solid rgba(255,255,255,0.3);
|
||||
min-height: 110px;
|
||||
-webkit-transition: all 0.3s ease-in-out;
|
||||
-moz-transition: all 0.3s ease-in-out;
|
||||
-ms-transition: all 0.3s ease-in-out;
|
||||
-o-transition: all 0.3s ease-in-out;
|
||||
transition: all 0.3s ease-in-out;
|
||||
}
|
||||
.navbar-default .navbar-nav > li > a {
|
||||
color: #fff;
|
||||
padding: 40px 25px;
|
||||
}
|
||||
.navbar-default .navbar-nav > li > a:hover,
|
||||
.navbar-default .navbar-nav > li > a:active,
|
||||
.navbar-default .navbar-nav > li > a:focus {
|
||||
color: #74a9bc;
|
||||
text-decoration: none;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.navbar-default .navbar-nav > .active > a,
|
||||
.navbar-default .navbar-nav > .active > a:focus,
|
||||
.navbar-default .navbar-nav > .active > a:hover {
|
||||
background: none;
|
||||
color: #74a9bc;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.navbar-default .navbar-nav > .active > a:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
background: #74a9bc;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
z-index: -1;
|
||||
}
|
||||
.navbar-right, .navbar-nav > li {
|
||||
margin: 0px;
|
||||
}
|
||||
.navbar-dark {
|
||||
background: rgba(1,1,1,0.8);
|
||||
}
|
||||
/*
|
||||
----------------------------------
|
||||
- Hero Section
|
||||
----------------------------------
|
||||
*/
|
||||
.hero-area {
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
background-image: url('../img/bg.jpg');
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.ball, .paper, .coffee, .plant, .glass {
|
||||
position: absolute;
|
||||
}
|
||||
.ball {
|
||||
top: 100px;
|
||||
left: -30px;
|
||||
z-index: -1;
|
||||
}
|
||||
.paper {
|
||||
bottom: -65px;
|
||||
left: -150px;
|
||||
z-index: -2;
|
||||
}
|
||||
.coffee {
|
||||
bottom: -255px;
|
||||
left: -190px;
|
||||
z-index: -1;
|
||||
}
|
||||
.plant {
|
||||
right: 70px;
|
||||
top: 35px;
|
||||
z-index: -1;
|
||||
}
|
||||
.glass {
|
||||
right: 75px;
|
||||
bottom: 120px;
|
||||
z-index: -1;
|
||||
}
|
||||
.mockup-slider-area {
|
||||
min-height: 950px;
|
||||
position: relative;
|
||||
}
|
||||
.mockup-slider {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
left: 0px;
|
||||
bottom: 200px;
|
||||
z-index: 2;
|
||||
}
|
||||
.hero-social-share {
|
||||
text-align: right;
|
||||
}
|
||||
.hero-social-share span {
|
||||
color: #fff;
|
||||
display: inline-block;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.hero-social-share a {
|
||||
color: #fff;
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
.hero-caption {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
top: 200px;
|
||||
left: 100px;
|
||||
padding-right: 50px;
|
||||
z-index: 3;
|
||||
}
|
||||
.hero-caption .sublead {
|
||||
display: block;
|
||||
text-align: right;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-weight: 700;
|
||||
font-size: 48px;
|
||||
color: #fff;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
.hero-caption .lead {
|
||||
display: block;
|
||||
text-align: right;
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-weight: 300;
|
||||
font-size: 98px;
|
||||
color: #fff;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
.hero-caption .lead-text {
|
||||
display: block;
|
||||
text-align: right;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-weight: normal;
|
||||
font-size: 24px;
|
||||
color: #fff;
|
||||
}
|
||||
/*
|
||||
----------------------------------
|
||||
- Feature Section
|
||||
----------------------------------
|
||||
*/
|
||||
.feature-area,
|
||||
.single-feature-item {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
cursor: pointer;
|
||||
}
|
||||
.single-feature-item {
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
.single-feature-item h4 {
|
||||
font-size: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.single-feature-item.active h4 {
|
||||
color: #8cbdcf;
|
||||
}
|
||||
.single-feature-item p {
|
||||
margin: 0;
|
||||
}
|
||||
.single-feature-slide {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
.single-feature-slide .tab-img {
|
||||
display: none;
|
||||
margin: auto;
|
||||
}
|
||||
.single-feature-slide .tab-img.active {
|
||||
display: block;
|
||||
}
|
||||
/*
|
||||
----------------------------------
|
||||
- Pricing Section
|
||||
----------------------------------
|
||||
*/
|
||||
.pricing-area {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
.pricing-content p {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-size: 18px;
|
||||
font-weight: 300;
|
||||
}
|
||||
.pricing-content p.fade-text {
|
||||
font-weight: 400;
|
||||
color: #8c8f94;
|
||||
}
|
||||
.pricing-content p.fade-text a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.pill-title {
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
color: #26272d;
|
||||
}
|
||||
.pricing-pill {
|
||||
margin: 10px 0px 80px 0px;
|
||||
padding: 5px;
|
||||
list-style: none;
|
||||
width: auto;
|
||||
height: auto;
|
||||
display: inline-block;
|
||||
border: 1px solid #d5d6d7;
|
||||
-webkit-border-radius: 35px;
|
||||
-moz-border-radius: 35px;
|
||||
-ms-border-radius: 35px;
|
||||
-o-border-radius: 35px;
|
||||
border-radius: 35px;
|
||||
}
|
||||
.pricing-pill li {
|
||||
display: inline-block;
|
||||
margin: 0px;
|
||||
padding: 10px 30px;
|
||||
cursor: pointer;
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
}
|
||||
.pricing-pill li.active {
|
||||
background: #fff;
|
||||
-webkit-border-radius: 35px;
|
||||
-moz-border-radius: 35px;
|
||||
-ms-border-radius: 35px;
|
||||
-o-border-radius: 35px;
|
||||
border-radius: 35px;
|
||||
color: #26292c;
|
||||
-webkit-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
||||
-moz-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
||||
-ms-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
||||
-o-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
||||
box-shadow: 0px 0px 20px 0px #e7e7e8;
|
||||
}
|
||||
.pricing-table,
|
||||
.pricing-list {
|
||||
margin: 30px 0px 0px 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
.pricing-table li {
|
||||
display: inline-block;
|
||||
width: 49%;
|
||||
background: #ebebed;
|
||||
padding: 40px 15px;
|
||||
text-align: center;
|
||||
}
|
||||
.pricing-table li .lead {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-size: 32px;
|
||||
font-weight: 400;
|
||||
color: #26272d;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.pricing-table li .price-tag {
|
||||
display: inline-block;
|
||||
border: 1px solid #d4d4d5;
|
||||
width: auto;
|
||||
height: 30px;
|
||||
border-radius: 30px;
|
||||
text-align: center;
|
||||
line-height: 25px;
|
||||
padding: 0px 15px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.pricing-table li .sublead {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
color: #8c8f94;
|
||||
}
|
||||
.pricing-list {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin: 45px 0px;
|
||||
}
|
||||
.pricing-list li {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
padding: 5px 10px;
|
||||
text-align: center;
|
||||
background: transparent;
|
||||
}
|
||||
.pricing-list li p {
|
||||
margin: 0px;
|
||||
font-style: 16px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
.pricing-list li p:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
background-image: url('../img/tic.png');
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
width: 14px;
|
||||
height: 10px;
|
||||
top: 10px;
|
||||
left: -20px;
|
||||
}
|
||||
.pricing-table li.active {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.pricing-table li.active:after {
|
||||
position: absolute;
|
||||
content: "";
|
||||
width: 110%;
|
||||
height: 110%;
|
||||
top: -5%;
|
||||
left: -5%;
|
||||
background: #fff;
|
||||
z-index: -1;
|
||||
-webkit-border-radius: 15px;
|
||||
-moz-border-radius: 15px;
|
||||
-ms-border-radius: 15px;
|
||||
-o-border-radius: 15px;
|
||||
border-radius: 15px;
|
||||
-webkit-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
||||
-moz-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
||||
-ms-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
||||
-o-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
||||
box-shadow: 0px 0px 20px 0px #e7e7e8;
|
||||
}
|
||||
.pricing-table li.active .btn-outline {
|
||||
background: #8cbdcf;
|
||||
color: #fff;
|
||||
font-weight: 400;
|
||||
border-color: #8cbdcf;
|
||||
}
|
||||
.pricing-table li.active .btn-outline:hover {
|
||||
background: #74a9bc;
|
||||
border-color: #74a9bc;
|
||||
color: #fff !important;
|
||||
}
|
||||
/*
|
||||
----------------------------------
|
||||
- Subscribe Section
|
||||
----------------------------------
|
||||
*/
|
||||
.subscribe-area {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
background-image: url('../img/subscribe-bg.jpg');
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.subscribe-area:after {
|
||||
position: absolute;
|
||||
content: "";
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #111;
|
||||
opacity: 0.3;
|
||||
z-index: -1;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
}
|
||||
.subscribe-area h4 {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
color: #fff;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.form-subscribe {
|
||||
background: transparent;
|
||||
text-align: center;
|
||||
border: 0px;
|
||||
border-bottom: 1px solid #f9f9f9;
|
||||
box-shadow: none !important;
|
||||
color: #f9f9f9;
|
||||
}
|
||||
/*
|
||||
----------------------------------
|
||||
- Download Section
|
||||
----------------------------------
|
||||
*/
|
||||
.download-area {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
background-image: url('../img/shape.png');
|
||||
background-repeat: no-repeat;
|
||||
background-position: bottom center;
|
||||
background-size: contain;
|
||||
}
|
||||
.download-app {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin-top: 100px;
|
||||
}
|
||||
|
||||
/*
|
||||
----------------------------------
|
||||
- Footer Section
|
||||
----------------------------------
|
||||
*/
|
||||
.footer-area {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
padding: 80px 0px;
|
||||
background-image: url('../img/footer-bg.jpg');
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
color: #fff;
|
||||
}
|
||||
.footer-area:after {
|
||||
position: absolute;
|
||||
content: "";
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #111;
|
||||
opacity: 0.9;
|
||||
z-index: -1;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
}
|
||||
.footer-area h1,
|
||||
.footer-area h2,
|
||||
.footer-area h3,
|
||||
.footer-area h4,
|
||||
.footer-area p,
|
||||
.footer-area span,
|
||||
.footer-area a {
|
||||
color: #fff;
|
||||
}
|
||||
.footer-area a:hover,
|
||||
.footer-area a:active,
|
||||
.footer-area a:focus {
|
||||
color: #74a9bc;
|
||||
}
|
||||
.footer-logo h2 {
|
||||
font-size: 30px;
|
||||
}
|
||||
.footer-logo h2 span.thin {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-size: 30px;
|
||||
font-weight: 400 !important;
|
||||
}
|
||||
.footer-logo p {
|
||||
font-size: 14px;
|
||||
}
|
||||
.footer-box {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.footer-box h2 {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.footer-box h4 {
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
.footer-menu {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
.contact-content {
|
||||
position: relative;
|
||||
}
|
||||
.contact-content h3,
|
||||
.contact-content span.thin {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-size: 24px;
|
||||
font-weight: 300;
|
||||
}
|
||||
.contact-content p {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: 300;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
.social-icon {
|
||||
padding: 0px;
|
||||
margin: 25px 0 0 0;
|
||||
}
|
||||
.social-icon li {
|
||||
display: inline-block;
|
||||
margin: 0px;
|
||||
}
|
||||
.social-icon li a {
|
||||
padding: 10px;
|
||||
display: block;
|
||||
width: 40px;
|
||||
text-align: center;
|
||||
border: 1px solid #fff;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.vr-title-area {
|
||||
position: absolute;
|
||||
width: auto;
|
||||
height: auto;
|
||||
top: 92px;
|
||||
left: -90px;
|
||||
-webkit-transform: rotateZ(-90deg);
|
||||
-moz-transform: rotateZ(-90deg);
|
||||
-ms-transform: rotateZ(-90deg);
|
||||
-o-transform: rotateZ(-90deg);
|
||||
transform: rotateZ(-90deg);
|
||||
}
|
||||
.download-link {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.download-link a {
|
||||
font-size: 14px;
|
||||
}
|
||||
/*
|
||||
----------------------------------
|
||||
- Copyright Section
|
||||
----------------------------------
|
||||
*/
|
||||
.copyright-area {
|
||||
width: 100%;
|
||||
min-height: 70px;
|
||||
padding: 25px 0px;
|
||||
text-align: right;
|
||||
}
|
||||
.copyright-area span {
|
||||
color: #696969;
|
||||
}
|
||||
|
||||
/*
|
||||
------------------------------------
|
||||
- Section Title (Default)
|
||||
------------------------------------
|
||||
*/
|
||||
.section-title {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin-bottom: 90px;
|
||||
}
|
||||
.title-left {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.section-title h2 {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-weight: 400;
|
||||
font-size: 36px;
|
||||
color: #696969;
|
||||
letter-spacing: 0px;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.section-title span {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-weight: 700;
|
||||
font-size: 24px;
|
||||
letter-spacing: 0px;
|
||||
color: #8cbdcf;
|
||||
}
|
||||
.section-title span.small {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
letter-spacing: 0px;
|
||||
color: #8cbdcf;
|
||||
}
|
||||
.section-title p {
|
||||
margin-top: 35px;
|
||||
color: #212121;
|
||||
}
|
||||
.section-title-2 {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
text-align: center;
|
||||
margin-bottom: 55px;
|
||||
}
|
||||
.section-title-2 h2 {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-size: 36px;
|
||||
font-weight: 400;
|
||||
color: #212121;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
/*
|
||||
----------------------------------
|
||||
-
|
||||
----------------------------------
|
||||
*/
|
||||
/* Your css code */
|
||||
Reference in New Issue
Block a user