Старт
This commit is contained in:
98
assets/less/about.less
Normal file
98
assets/less/about.less
Normal file
@ -0,0 +1,98 @@
|
||||
/* ======= About Section ======= */
|
||||
.about-section {
|
||||
padding-top: 90px;
|
||||
.section-title {
|
||||
margin: 0;
|
||||
margin-bottom: 15px;
|
||||
font-size: 36px;
|
||||
font-weight:300;
|
||||
}
|
||||
.intro {
|
||||
color: @text-grey;
|
||||
font-size: 16px;
|
||||
max-width: 760px;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.items-wrapper {
|
||||
margin-bottom: 60px;
|
||||
.figure-holder {
|
||||
min-height: 170px;
|
||||
margin-bottom: 15px;
|
||||
vertical-align:bottom;
|
||||
}
|
||||
.item-inner {
|
||||
padding: 30px;
|
||||
}
|
||||
.item-title {
|
||||
color: @color-primary;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
margin:0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.item-desc {
|
||||
color: @text-color-secondary;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
.technologies {
|
||||
margin-bottom: 90px;
|
||||
li {
|
||||
margin-right: 10px;
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.testimonials {
|
||||
background: @color-primary;
|
||||
}
|
||||
|
||||
|
||||
.testimonials-inner {
|
||||
padding: 60px 30px;
|
||||
position: relative;
|
||||
max-width: 800px;
|
||||
|
||||
|
||||
.profile-holder {
|
||||
position: absolute;
|
||||
left: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.profile-image {
|
||||
display: inline-block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.quote {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
color: #fff;
|
||||
margin-left: 130px;
|
||||
border-left: none;
|
||||
margin-bottom: 0;
|
||||
font-size: 14px;
|
||||
min-height: 100px;
|
||||
.border-radius(4px);
|
||||
position: relative;
|
||||
padding:15px;
|
||||
&:before {
|
||||
position: absolute;
|
||||
left: -10px;
|
||||
top:30px;
|
||||
content:"";
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-top: 10px solid transparent;
|
||||
border-bottom: 10px solid transparent;
|
||||
border-right:10px solid rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
270
assets/less/base.less
Normal file
270
assets/less/base.less
Normal file
@ -0,0 +1,270 @@
|
||||
body {
|
||||
font-family: 'Open Sans', arial, sans-serif;
|
||||
color: @text-color;
|
||||
font-size: 14px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 15px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
a {
|
||||
color: darken(@color-primary, 5%);
|
||||
.transition (all 0.4s ease-in-out);
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
color: darken(@color-primary, 10%);
|
||||
}
|
||||
&:active {
|
||||
text-decoration: none;
|
||||
}
|
||||
&:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
.btn, a.btn {
|
||||
.transition (all 0.4s ease-in-out);
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
.fa {
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-cta, a.btn-cta {
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
padding: 10px 30px;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: @color-primary;
|
||||
border: 1px solid @color-primary;
|
||||
color: #fff;
|
||||
&:hover, &:focus, &:active, &.active, &.hover {
|
||||
background: darken(@color-primary, 5%);
|
||||
color: #fff;
|
||||
border: 1px solid darken(@color-primary, 5%);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.carousel-fade {
|
||||
.carousel-inner {
|
||||
.item {
|
||||
transition-property: opacity;
|
||||
}
|
||||
|
||||
.item,
|
||||
.active.left,
|
||||
.active.right {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.active,
|
||||
.next.left,
|
||||
.prev.right {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.next,
|
||||
.prev,
|
||||
.active.left,
|
||||
.active.right {
|
||||
left: 0;
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.carousel-control {
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
|
||||
.carousel-indicators {
|
||||
bottom: 30px;
|
||||
margin-bottom: 0;
|
||||
|
||||
li {
|
||||
background-color: rgba(256, 256, 256, 0.4);
|
||||
border: none;
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
margin: 0;
|
||||
margin-right: 5px;
|
||||
&.active {
|
||||
background-color: @color-primary;
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
margin: 0;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ======= Header ======= */
|
||||
.header {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
z-index: 30;
|
||||
height: 60px;
|
||||
.transition (none);
|
||||
|
||||
&.header-scrolled {
|
||||
background: #fff;
|
||||
.box-shadow(0 0 4px rgba(0, 0, 0, 0.5));
|
||||
a {
|
||||
color: @text-color;
|
||||
|
||||
}
|
||||
.logo {
|
||||
color: @color-primary;
|
||||
padding-top: 12px;
|
||||
.logo-icon-wrapper {
|
||||
background: @color-primary;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
.border-radius(50%);
|
||||
text-align: center;
|
||||
|
||||
|
||||
}
|
||||
.logo-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin-right: 0;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
.main-nav .nav .nav-item a {
|
||||
color: @text-grey;
|
||||
}
|
||||
.main-nav .nav .nav-item.active a {
|
||||
color: @text-color;
|
||||
border-bottom: 4px solid @color-primary;
|
||||
}
|
||||
}
|
||||
a {
|
||||
color: #fff;
|
||||
.transition (none);
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
.logo {
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
float: left;
|
||||
font-size: 28px;
|
||||
padding-top: 15px;
|
||||
.logo-icon-wrapper {
|
||||
margin-right: 3px;
|
||||
position:relative;
|
||||
display: inline-block;
|
||||
top: -3px;
|
||||
}
|
||||
|
||||
.logo-icon {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
.highlight {
|
||||
font-weight:800;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.main-nav {
|
||||
margin-top: 6px;
|
||||
.navbar-toggle {
|
||||
margin-right: 0;
|
||||
margin-top: 0;
|
||||
background: none;
|
||||
position: absolute;
|
||||
right:10px;
|
||||
top: 10px;
|
||||
background: darken(@text-color, 15%);
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
.icon-bar {
|
||||
background-color: #fff;
|
||||
height: 3px;
|
||||
}
|
||||
&:hover {
|
||||
.icon-bar {
|
||||
background-color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nav {
|
||||
.nav-item {
|
||||
font-weight: normal;
|
||||
font-size: 14px;
|
||||
margin-right: 25px;
|
||||
|
||||
&.active {
|
||||
a {
|
||||
background: none;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
color: rgba(256, 256, 256, 0.65);
|
||||
font-weight: 700;
|
||||
&:hover {
|
||||
color: #fff;
|
||||
background: none;
|
||||
}
|
||||
&:focus {
|
||||
outline: none;
|
||||
background: none;
|
||||
}
|
||||
&:active {
|
||||
outline: none;
|
||||
background: none;
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.nav>li>a {
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
/* ====== Footer ====== */
|
||||
.footer {
|
||||
background: darken(@text-color, 15%);
|
||||
color: rgba(256, 256, 256, 0.6);
|
||||
padding: 15px 0;
|
||||
a {
|
||||
color: @color-primary;
|
||||
}
|
||||
.fa-heart {
|
||||
color: @color-pink;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
22
assets/less/contact.less
Normal file
22
assets/less/contact.less
Normal file
@ -0,0 +1,22 @@
|
||||
/* ======= Contact Section ======= */
|
||||
.contact-section {
|
||||
padding-top: 90px;
|
||||
padding-bottom: 90px;
|
||||
background:@text-color url('../images/map.png') no-repeat center center;
|
||||
color: #fff;
|
||||
.section-title {
|
||||
margin: 0;
|
||||
margin-bottom: 15px;
|
||||
font-size: 36px;
|
||||
font-weight:300;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.contact-content {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
54
assets/less/features.less
Normal file
54
assets/less/features.less
Normal file
@ -0,0 +1,54 @@
|
||||
/* ======= Features Section ======= */
|
||||
.features-section {
|
||||
padding-top: 90px;
|
||||
padding-bottom: 90px;
|
||||
.section-title {
|
||||
margin: 0;
|
||||
margin-bottom: 15px;
|
||||
font-size: 36px;
|
||||
font-weight:300;
|
||||
}
|
||||
.intro {
|
||||
color: @text-grey;
|
||||
font-size: 16px;
|
||||
max-width: 760px;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
.feature-nav {
|
||||
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
& > li {
|
||||
|
||||
position: relative;
|
||||
|
||||
.fa {
|
||||
margin-right: 10px;
|
||||
width: 20px;
|
||||
}
|
||||
&.active {
|
||||
|
||||
& > a {
|
||||
color: @color-primary;
|
||||
background: none;
|
||||
padding: 8px 0;
|
||||
}
|
||||
}
|
||||
& > a {
|
||||
background: none;
|
||||
padding: 8px 0;
|
||||
color: @text-color-secondary;
|
||||
|
||||
&:hover {
|
||||
background: none;
|
||||
color: @color-primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.feature-content {
|
||||
|
||||
}
|
||||
67
assets/less/hero.less
Normal file
67
assets/less/hero.less
Normal file
@ -0,0 +1,67 @@
|
||||
/* ======= Hero Section ======= */
|
||||
.hero-section {
|
||||
min-height: 560px;
|
||||
background: @text-color;
|
||||
position: relative;
|
||||
|
||||
.figure-holder-wrapper {
|
||||
position: absolute;
|
||||
left:0;
|
||||
bottom: 0;
|
||||
width:100%;
|
||||
overflow:hidden;
|
||||
}
|
||||
.figure-holder {
|
||||
position: relative;
|
||||
height: 560px;
|
||||
|
||||
.figure-image {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index:10;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.hero-carousel {
|
||||
height: 560px;
|
||||
color: #fff;
|
||||
|
||||
.carousel-inner {
|
||||
.item {
|
||||
height: 560px;
|
||||
background-position: center center;
|
||||
}
|
||||
.item-1 {
|
||||
background-image: url('../images/hero-1.jpg');
|
||||
.background-size(cover);
|
||||
}
|
||||
.item-2 {
|
||||
background-image: url('../images/hero-2.jpg');
|
||||
.background-size(cover);
|
||||
}
|
||||
.item-3 {
|
||||
background-image: url('../images/hero-3.jpg');
|
||||
.background-size(cover);
|
||||
}
|
||||
|
||||
.heading {
|
||||
font-size: 30px;
|
||||
line-height: 1.4;
|
||||
font-weight: bold;
|
||||
margin-top:0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.intro {
|
||||
font-size: 18px;
|
||||
& + .btn {
|
||||
margin-top: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
166
assets/less/mixins.less
Normal file
166
assets/less/mixins.less
Normal file
@ -0,0 +1,166 @@
|
||||
.text-shadow (@string: 0 1px 3px rgba(0, 0, 0, 0.25)) {
|
||||
text-shadow: @string;
|
||||
}
|
||||
.box-shadow (@string) {
|
||||
-webkit-box-shadow: @string;
|
||||
-moz-box-shadow: @string;
|
||||
box-shadow: @string;
|
||||
}
|
||||
.drop-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) {
|
||||
-webkit-box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha);
|
||||
-moz-box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha);
|
||||
box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha);
|
||||
}
|
||||
.inner-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) {
|
||||
-webkit-box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha);
|
||||
-moz-box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha);
|
||||
box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha);
|
||||
}
|
||||
|
||||
.box-sizing (@type: border-box) {
|
||||
-webkit-box-sizing: @type;
|
||||
-moz-box-sizing: @type;
|
||||
box-sizing: @type;
|
||||
}
|
||||
|
||||
.border-radius (@radius: 5px) {
|
||||
-webkit-border-radius: @radius;
|
||||
-moz-border-radius: @radius;
|
||||
-ms-border-radius: @radius;
|
||||
-o-border-radius: @radius;
|
||||
border-radius: @radius;
|
||||
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
.border-radiuses (@topright: 0, @bottomright: 0, @bottomleft: 0, @topleft: 0) {
|
||||
-webkit-border-top-right-radius: @topright;
|
||||
-webkit-border-bottom-right-radius: @bottomright;
|
||||
-webkit-border-bottom-left-radius: @bottomleft;
|
||||
-webkit-border-top-left-radius: @topleft;
|
||||
|
||||
-moz-border-radius-topright: @topright;
|
||||
-moz-border-radius-bottomright: @bottomright;
|
||||
-moz-border-radius-bottomleft: @bottomleft;
|
||||
-moz-border-radius-topleft: @topleft;
|
||||
|
||||
border-top-right-radius: @topright;
|
||||
border-bottom-right-radius: @bottomright;
|
||||
border-bottom-left-radius: @bottomleft;
|
||||
border-top-left-radius: @topleft;
|
||||
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.opacity (@opacity: 0.5) {
|
||||
-webkit-opacity: @opacity;
|
||||
-moz-opacity: @opacity;
|
||||
opacity: @opacity;
|
||||
}
|
||||
|
||||
.gradient (@startColor: #eee, @endColor: white) {
|
||||
background-color: @startColor;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(@startColor), to(@endColor));
|
||||
background: -webkit-linear-gradient(top, @startColor, @endColor);
|
||||
background: -moz-linear-gradient(top, @startColor, @endColor);
|
||||
background: -ms-linear-gradient(top, @startColor, @endColor);
|
||||
background: -o-linear-gradient(top, @startColor, @endColor);
|
||||
}
|
||||
.horizontal-gradient (@startColor: #eee, @endColor: white) {
|
||||
background-color: @startColor;
|
||||
background-image: -webkit-gradient(linear, left top, right top, from(@startColor), to(@endColor));
|
||||
background-image: -webkit-linear-gradient(left, @startColor, @endColor);
|
||||
background-image: -moz-linear-gradient(left, @startColor, @endColor);
|
||||
background-image: -ms-linear-gradient(left, @startColor, @endColor);
|
||||
background-image: -o-linear-gradient(left, @startColor, @endColor);
|
||||
}
|
||||
|
||||
.animation (@name, @duration: 300ms, @delay: 0, @ease: ease) {
|
||||
-webkit-animation: @name @duration @delay @ease;
|
||||
-moz-animation: @name @duration @delay @ease;
|
||||
-ms-animation: @name @duration @delay @ease;
|
||||
}
|
||||
|
||||
.transition (@transition) {
|
||||
-webkit-transition: @transition;
|
||||
-moz-transition: @transition;
|
||||
-ms-transition: @transition;
|
||||
-o-transition: @transition;
|
||||
}
|
||||
.transform(@string){
|
||||
-webkit-transform: @string;
|
||||
-moz-transform: @string;
|
||||
-ms-transform: @string;
|
||||
-o-transform: @string;
|
||||
}
|
||||
.scale (@factor) {
|
||||
-webkit-transform: scale(@factor);
|
||||
-moz-transform: scale(@factor);
|
||||
-ms-transform: scale(@factor);
|
||||
-o-transform: scale(@factor);
|
||||
}
|
||||
.rotate (@deg) {
|
||||
-webkit-transform: rotate(@deg);
|
||||
-moz-transform: rotate(@deg);
|
||||
-ms-transform: rotate(@deg);
|
||||
-o-transform: rotate(@deg);
|
||||
}
|
||||
.skew (@deg, @deg2) {
|
||||
-webkit-transform: skew(@deg, @deg2);
|
||||
-moz-transform: skew(@deg, @deg2);
|
||||
-ms-transform: skew(@deg, @deg2);
|
||||
-o-transform: skew(@deg, @deg2);
|
||||
}
|
||||
.translate (@x, @y:0) {
|
||||
-webkit-transform: translate(@x, @y);
|
||||
-moz-transform: translate(@x, @y);
|
||||
-ms-transform: translate(@x, @y);
|
||||
-o-transform: translate(@x, @y);
|
||||
}
|
||||
.translate3d (@x, @y: 0, @z: 0) {
|
||||
-webkit-transform: translate3d(@x, @y, @z);
|
||||
-moz-transform: translate3d(@x, @y, @z);
|
||||
-ms-transform: translate3d(@x, @y, @z);
|
||||
-o-transform: translate3d(@x, @y, @z);
|
||||
}
|
||||
.perspective (@value: 1000) {
|
||||
-webkit-perspective: @value;
|
||||
-moz-perspective: @value;
|
||||
-ms-perspective: @value;
|
||||
perspective: @value;
|
||||
}
|
||||
.transform-origin (@x:center, @y:center) {
|
||||
-webkit-transform-origin: @x @y;
|
||||
-moz-transform-origin: @x @y;
|
||||
-ms-transform-origin: @x @y;
|
||||
-o-transform-origin: @x @y;
|
||||
}
|
||||
|
||||
.reset-box-sizing (@size:content-box) {
|
||||
&,
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
.box-sizing(@size);
|
||||
}
|
||||
}
|
||||
|
||||
.truncate (@max-width: 250px) {
|
||||
max-width: @max-width;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.background-size (@string: contain) {
|
||||
-webkit-background-size: @string;
|
||||
-moz-background-size: @string;
|
||||
-o-background-size: @string;
|
||||
background-size: @string;
|
||||
}
|
||||
|
||||
|
||||
|
||||
80
assets/less/pricing.less
Normal file
80
assets/less/pricing.less
Normal file
@ -0,0 +1,80 @@
|
||||
/* ======= Pricing Section ======= */
|
||||
.pricing-section {
|
||||
padding-top: 90px;
|
||||
padding-bottom: 90px;
|
||||
.section-title {
|
||||
margin: 0;
|
||||
margin-bottom: 15px;
|
||||
font-size: 36px;
|
||||
font-weight:300;
|
||||
}
|
||||
.intro {
|
||||
color: @text-grey;
|
||||
font-size: 16px;
|
||||
max-width: 760px;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
.pricing-wrapper {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
.item {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.item-inner {
|
||||
color: #fff;
|
||||
padding: 30px;
|
||||
.border-radius(8px);
|
||||
background: @color-primary;
|
||||
min-height: 390px;
|
||||
a {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
}
|
||||
.item-1 {
|
||||
.item-inner {
|
||||
background: @color-green;
|
||||
}
|
||||
}
|
||||
.item-2 {
|
||||
.item-inner {
|
||||
background: @color-blue;
|
||||
}
|
||||
}
|
||||
.item-3 {
|
||||
.item-inner {
|
||||
background: @color-orange;
|
||||
}
|
||||
}
|
||||
.item-heading {
|
||||
font-weight: 800;
|
||||
font-size: 18px;
|
||||
margin: 0;
|
||||
min-height: 60px;
|
||||
}
|
||||
.price-figure {
|
||||
font-size:46px;
|
||||
margin-bottom: 15px;
|
||||
.currency {
|
||||
vertical-align:super;
|
||||
font-size: 26px;
|
||||
.opacity(0.6);
|
||||
}
|
||||
.number {
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
.price-desc {
|
||||
margin-bottom: 30px;
|
||||
min-height: 120px;
|
||||
}
|
||||
a.btn {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
color: #fff;
|
||||
&:hover {
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
}
|
||||
}
|
||||
162
assets/less/responsive.less
Normal file
162
assets/less/responsive.less
Normal file
@ -0,0 +1,162 @@
|
||||
/* Extra small devices (phones, less than 768px) */
|
||||
@media (max-width: 767px) {
|
||||
.navbar-collapse {
|
||||
border-top: none;
|
||||
.box-shadow(none);
|
||||
width: 100%;
|
||||
left: 0;
|
||||
top: 60px;
|
||||
position: absolute;
|
||||
background: darken(@text-color, 15%);
|
||||
z-index: 40;
|
||||
}
|
||||
|
||||
.header .main-nav .navbar-collapse .nav-item.active a {
|
||||
color: @color-primary;
|
||||
}
|
||||
|
||||
.header.header-scrolled .main-nav .navbar-collapse .nav-item.active a {
|
||||
border: none;
|
||||
color: @color-primary;
|
||||
}
|
||||
|
||||
.main-nav .navbar-collapse .nav-item {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.main-nav .navbar-collapse .nav-item a {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.pricing-wrapper .item-inner {
|
||||
min-height: inherit;
|
||||
}
|
||||
.pricing-wrapper .price-desc {
|
||||
min-height: inherit;
|
||||
}
|
||||
.hero-section .figure-image {
|
||||
width: 300px;
|
||||
}
|
||||
.hero-carousel .carousel-inner .heading {
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
.hero-carousel .carousel-inner .item-content-inner {
|
||||
padding-top: 100px;
|
||||
}
|
||||
.hero-section .figure-holder .figure-image {
|
||||
width: inherit;
|
||||
bottom: 0;
|
||||
top: inherit;
|
||||
right: inherit;
|
||||
left:15px;
|
||||
max-width: 320px;
|
||||
}
|
||||
|
||||
.technologies li {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.members-wrapper .item {
|
||||
margin-bottom: 30px;
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
.hero-carousel {
|
||||
height: 660px;
|
||||
}
|
||||
.hero-section .carousel-inner {
|
||||
height: 660px;
|
||||
}
|
||||
|
||||
.hero-carousel .carousel-inner .item {
|
||||
height: 660px;
|
||||
}
|
||||
|
||||
.testimonials-section .item .profile-image {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
.testimonials-section .item .quote {
|
||||
margin-left: 85px;
|
||||
padding: 15px;
|
||||
}
|
||||
.testimonials-section .item.item-reversed .quote {
|
||||
margin-right: 85px;
|
||||
}
|
||||
|
||||
.team-section .item-inner {
|
||||
min-height: inherit;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* Small devices (tablets, 768px and up) */
|
||||
@media (min-width: 768px) {
|
||||
.feature-nav {
|
||||
text-align: left;
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
.feature-nav > li {
|
||||
font-size: 15px;
|
||||
}
|
||||
.hero-section .figure-holder .figure-image {
|
||||
width: 400px;
|
||||
bottom: inherit;
|
||||
top: 130px;
|
||||
}
|
||||
.hero-carousel .carousel-inner .item-content-inner {
|
||||
max-width: 300px;
|
||||
padding-top: 120px;
|
||||
}
|
||||
|
||||
.team-section .item-inner {
|
||||
min-height: 515px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Medium devices (desktops, 992px and up) */
|
||||
@media (min-width: 992px) {
|
||||
.feature-nav {
|
||||
margin-top: 30px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
.feature-nav > li {
|
||||
font-size: 16px;
|
||||
}
|
||||
.feature-nav > li > a {
|
||||
padding: 15px 0;
|
||||
}
|
||||
|
||||
.feature-nav > li.active > a {
|
||||
padding: 15px 0;
|
||||
}
|
||||
.hero-section .figure-holder .figure-image {
|
||||
width: 420px;
|
||||
bottom: inherit;
|
||||
top: 130px;
|
||||
}
|
||||
.hero-carousel .carousel-inner .item-content-inner {
|
||||
max-width: 500px;
|
||||
}
|
||||
.team-section .item-inner {
|
||||
min-height: 490px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Large devices (large desktops, 1200px and up) */
|
||||
@media (min-width: 1200px) {
|
||||
.hero-section .figure-holder .figure-image {
|
||||
width: 570px;
|
||||
bottom: 0;
|
||||
top: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
19
assets/less/styles.less
Normal file
19
assets/less/styles.less
Normal file
@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Template Name: Appkit Landing - Responsive Website Template for Developers
|
||||
* Version: 1.0
|
||||
* Author: Xiaoying Riley
|
||||
* Website: http://themes.3rdwavemedia.com/
|
||||
* Twitter: @3rdwave_themes
|
||||
* License: Creative Commons Attribution 3.0 License
|
||||
*/
|
||||
@import "mixins.less";
|
||||
@import "theme-default.less";
|
||||
@import "base.less";
|
||||
@import "hero.less";
|
||||
@import "about.less";
|
||||
@import "testimonials.less";
|
||||
@import "features.less";
|
||||
@import "pricing.less";
|
||||
@import "team.less";
|
||||
@import "contact.less";
|
||||
@import "responsive.less";
|
||||
103
assets/less/team.less
Normal file
103
assets/less/team.less
Normal file
@ -0,0 +1,103 @@
|
||||
/* ======= Team Section ======= */
|
||||
.team-section {
|
||||
padding-top: 90px;
|
||||
padding-bottom: 90px;
|
||||
background: @smoky-white;
|
||||
.section-title {
|
||||
margin: 0;
|
||||
margin-bottom: 15px;
|
||||
font-size: 36px;
|
||||
font-weight:300;
|
||||
}
|
||||
.intro {
|
||||
color: @text-grey;
|
||||
font-size: 16px;
|
||||
max-width: 760px;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
.story {
|
||||
|
||||
margin: 0 auto;
|
||||
margin-bottom: 60px;
|
||||
max-width: 800px;
|
||||
}
|
||||
.profile-image {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
}
|
||||
.members-wrapper{
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.item-inner {
|
||||
padding: 30px;
|
||||
background: #fff;
|
||||
.border-radius(8px);
|
||||
}
|
||||
.member-name {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
color: @color-primary;
|
||||
}
|
||||
.member-title {
|
||||
font-size: 16px;
|
||||
margin-top:0;
|
||||
margin-bottom: 15px;
|
||||
color: @text-color-secondary;
|
||||
}
|
||||
.social {
|
||||
margin-bottom: 30px;
|
||||
a {
|
||||
display: inline-block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
font-size: 18px;
|
||||
.border-radius(50%);
|
||||
background: @color-primary;
|
||||
padding-top:4px;
|
||||
color: #fff;
|
||||
&.google {
|
||||
background: @google;
|
||||
&:hover {
|
||||
background: darken(@google, 5%);
|
||||
}
|
||||
}
|
||||
&.twitter {
|
||||
background: @twitter;
|
||||
&:hover {
|
||||
background: darken(@twitter, 5%);
|
||||
}
|
||||
}
|
||||
&.facebook {
|
||||
background: @facebook;
|
||||
&:hover {
|
||||
background: darken(@facebook, 5%);
|
||||
}
|
||||
}
|
||||
&.linkedin {
|
||||
background: @linkedin;
|
||||
&:hover {
|
||||
background: darken(@linkedin, 5%);
|
||||
}
|
||||
}
|
||||
&.github {
|
||||
background: @github;
|
||||
&:hover {
|
||||
background: darken(@github, 5%);
|
||||
}
|
||||
}
|
||||
&.dribbble {
|
||||
background: @dribbble;
|
||||
&:hover {
|
||||
background: darken(@dribbble, 5%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.member-desc {
|
||||
color: @text-color-secondary;
|
||||
}
|
||||
|
||||
}
|
||||
88
assets/less/testimonials.less
Normal file
88
assets/less/testimonials.less
Normal file
@ -0,0 +1,88 @@
|
||||
/* ======= Testimonials Section ======= */
|
||||
.testimonials-section {
|
||||
background:@color-primary url('../images/map.png') no-repeat center center;
|
||||
.background-size(cover);
|
||||
padding-top: 90px;
|
||||
padding-bottom: 90px;
|
||||
|
||||
.section-title {
|
||||
margin: 0;
|
||||
margin-bottom: 30px;
|
||||
font-size: 36px;
|
||||
font-weight:300;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.item {
|
||||
position: relative;
|
||||
max-width: 800px;
|
||||
padding: 30px;
|
||||
&:last-child {
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
&.item-reversed {
|
||||
.profile-holder {
|
||||
left: inherit;
|
||||
right: 30px;
|
||||
}
|
||||
.quote {
|
||||
margin-left: 0;
|
||||
margin-right: 105px;
|
||||
&:before {
|
||||
left: inherit;
|
||||
right: -10px;
|
||||
content:"";
|
||||
border-top: 10px solid transparent;
|
||||
border-bottom: 10px solid transparent;
|
||||
border-left:10px solid rgba(0, 0, 0, 0.2);
|
||||
border-right: inherit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.profile-holder {
|
||||
position: absolute;
|
||||
left: 30px;
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
.profile-image {
|
||||
display: inline-block;
|
||||
margin: 0 auto;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.quote {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
color: #fff;
|
||||
margin-left: 105px;
|
||||
border-left: none;
|
||||
margin-bottom: 0;
|
||||
font-size: 14px;
|
||||
min-height: 80px;
|
||||
.border-radius(4px);
|
||||
position: relative;
|
||||
padding:30px;
|
||||
&:before {
|
||||
position: absolute;
|
||||
left: -10px;
|
||||
top:30px;
|
||||
content:"";
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-top: 10px solid transparent;
|
||||
border-bottom: 10px solid transparent;
|
||||
border-right:10px solid rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
}
|
||||
.quote-source {
|
||||
color: rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
113
assets/less/theme-default.less
Normal file
113
assets/less/theme-default.less
Normal file
@ -0,0 +1,113 @@
|
||||
/* Theme default */
|
||||
@color-primary: #40babd;
|
||||
@text-color: #494d55;
|
||||
@text-color-secondary: lighten(@text-color, 10%);
|
||||
@text-grey: lighten(@text-color-secondary, 25%);
|
||||
@light-grey: #c3c3c3;
|
||||
@smoky-white: #f5f5f5;
|
||||
@divider: #f3f3f3;
|
||||
|
||||
@color-green: #75c181;
|
||||
@color-blue: #58bbee;
|
||||
@color-orange: #F8A13F;
|
||||
@color-pink: #EA5395;
|
||||
@color-purple: #8A40A7;
|
||||
@color-yellow: #F2B542;
|
||||
|
||||
@facebook: #3b5998;
|
||||
@twitter: #55acee;
|
||||
@google: #dd4b39;
|
||||
@github: #444;
|
||||
@dribbble: #EC4D8B;
|
||||
@linkedin: #1E6FBA;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user