Add themes folder
This commit is contained in:
parent
78eab7dcac
commit
077da5b941
108 changed files with 6225 additions and 0 deletions
654
themes/airspace-hugo/assets/scss/_common.scss
Normal file
654
themes/airspace-hugo/assets/scss/_common.scss
Normal file
|
|
@ -0,0 +1,654 @@
|
|||
ul {
|
||||
margin: 0;
|
||||
padding-left: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
img{
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
a,
|
||||
a:focus,
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
outline: 0;
|
||||
color: $color-primary;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
font-size: 18px;
|
||||
border-color: $color-primary;
|
||||
padding: 20px 40px;
|
||||
text-align: left;
|
||||
color: darken( $light, 50.98);
|
||||
}
|
||||
|
||||
.navbar-toggle .icon-bar {
|
||||
background: $color-primary;
|
||||
}
|
||||
|
||||
input[type="email"],
|
||||
input[type="password"],
|
||||
input[type="text"],
|
||||
input[type="tel"] {
|
||||
box-shadow: none;
|
||||
height: 45px;
|
||||
outline: none;
|
||||
font-size: 14px;
|
||||
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
border: 1px solid $color-primary;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.form-control {
|
||||
box-shadow: none;
|
||||
border-radius: 0;
|
||||
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
border: 1px solid $color-primary;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.slick-slide {
|
||||
outline: 0
|
||||
}
|
||||
|
||||
|
||||
// Button Style
|
||||
|
||||
.btn-main {
|
||||
background: $color-primary;
|
||||
color: $white;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
letter-spacing: 1px;
|
||||
padding: 14px 35px;
|
||||
text-transform: uppercase;
|
||||
border-radius: 0;
|
||||
@include transition (all, 0.2s, ease);
|
||||
|
||||
&.btn-icon {
|
||||
i {
|
||||
font-size: 16px;
|
||||
vertical-align: middle;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: darken($color-primary, 20%);
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.btn-solid-border {
|
||||
border: 1px solid $white;
|
||||
background: transparent;
|
||||
color: $white;
|
||||
|
||||
&:hover {
|
||||
border: 1px solid $color-primary;
|
||||
background: $color-primary;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.btn-transparent {
|
||||
@extend .btn-main;
|
||||
background: transparent;
|
||||
padding: 0;
|
||||
color: $color-primary;
|
||||
|
||||
&:hover {
|
||||
background: transparent;
|
||||
color: $color-primary;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-large {
|
||||
padding: 20px 45px;
|
||||
|
||||
&.btn-icon {
|
||||
i {
|
||||
font-size: 16px;
|
||||
vertical-align: middle;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-small {
|
||||
@extend .btn-main;
|
||||
padding: 10px 25px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.btn-round {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.btn-round-full {
|
||||
border-radius: 50px;
|
||||
}
|
||||
|
||||
|
||||
.btn.active:focus,
|
||||
.btn:active:focus,
|
||||
.btn:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.mt-10 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.mt-20 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.mt-30 {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mt-40 {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.mt-50 {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.btn:focus {
|
||||
color: darken( $light, 10.9);
|
||||
}
|
||||
|
||||
.w-100 {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.margin-0 {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
|
||||
/* preloader */
|
||||
|
||||
.preloader {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: $white;
|
||||
z-index: 9999;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.bg-shadow {
|
||||
background-color: $white;
|
||||
box-shadow: 0 16px 24px rgba(0, 0, 0, .08);
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.bg-gray {
|
||||
background: $light;
|
||||
}
|
||||
|
||||
.bg-primary {
|
||||
background: $color-primary;
|
||||
}
|
||||
|
||||
.bg-primary-dark {
|
||||
background: darken($color-primary, 10%);
|
||||
}
|
||||
|
||||
.bg-primary-darker {
|
||||
background: darken($color-primary, 20%);
|
||||
|
||||
}
|
||||
|
||||
.bg-dark {
|
||||
background: #202122;
|
||||
}
|
||||
|
||||
|
||||
.section {
|
||||
padding: 100px 0;
|
||||
|
||||
@include tablet {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.section-sm {
|
||||
padding: 70px 0;
|
||||
}
|
||||
|
||||
.title {
|
||||
padding: 20px 0 30px;
|
||||
|
||||
h2 {
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.section-title {
|
||||
margin-bottom: 70px;
|
||||
|
||||
@include tablet {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
margin: 0px;
|
||||
padding: 30px 0px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-style: italic;
|
||||
color: darken( $light, 57.64);
|
||||
font-family: $font-secondary;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.section-subtitle {
|
||||
font-size: 28px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 30px;
|
||||
|
||||
@include mobile-xs {
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
@include mobile {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.page-title {
|
||||
padding: 100px 0;
|
||||
@extend .overly;
|
||||
|
||||
.block {
|
||||
text-align: center;
|
||||
|
||||
h1 {
|
||||
color: $white;
|
||||
font-weight: 200;
|
||||
letter-spacing: 0.15em;
|
||||
margin-top: 0;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
p {
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.heading {
|
||||
padding-bottom: 60px;
|
||||
text-align: center;
|
||||
|
||||
h2 {
|
||||
color: $black;
|
||||
font-size: 30px;
|
||||
line-height: 40px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 18px;
|
||||
line-height: 40px;
|
||||
color: lighten( $black, 16.078);
|
||||
font-weight: 300;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.page-wrapper {
|
||||
padding: 70px 0;
|
||||
|
||||
@include tablet {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
// Social Media Icons
|
||||
.social-media-icons {
|
||||
ul {
|
||||
li {
|
||||
display: inline-block;
|
||||
|
||||
a {
|
||||
font-size: 18px;
|
||||
color: lighten( $black, 20 );
|
||||
display: inline-block;
|
||||
padding: 7px 12px;
|
||||
color: $white;
|
||||
|
||||
}
|
||||
|
||||
.twitter {
|
||||
background: #00aced;
|
||||
}
|
||||
|
||||
.facebook {
|
||||
background: #3b5998;
|
||||
padding: 7px 18px;
|
||||
}
|
||||
|
||||
.googleplus {
|
||||
background: #dd4b39;
|
||||
}
|
||||
|
||||
.dribbble {
|
||||
background: #ea4c89;
|
||||
}
|
||||
|
||||
.instagram {
|
||||
background: #bc2a8d;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.dropdown-slide {
|
||||
position: static;
|
||||
|
||||
.open>a,
|
||||
.open>a:focus,
|
||||
.open>a:hover {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
&.full-width {
|
||||
.dropdown-menu {
|
||||
left: 0 !important;
|
||||
right: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover .dropdown-menu {
|
||||
display: none;
|
||||
opacity: 1;
|
||||
display: block;
|
||||
transform: translate(0px, 0px);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
color: darken( $light, 50.98);
|
||||
transform: translateY(0px);
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
border-radius: 0;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
position: absolute;
|
||||
padding: 15px;
|
||||
border: 1px solid #ebebeb;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
position: absolute;
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
transition: visibility 0.2s, opacity 0.2s, transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
|
||||
|
||||
@include mobile {
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.commonSelect {
|
||||
margin-left: 10px;
|
||||
padding-right: 6px;
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
content: '\f3d0';
|
||||
font-family: $font-icon;
|
||||
position: absolute;
|
||||
right: -4px;
|
||||
top: 4px;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
select {
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
padding: 0;
|
||||
height: auto;
|
||||
color: lighten( $black, 33.3 );
|
||||
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tabCommon {
|
||||
.nav-tabs {
|
||||
border-bottom: 0;
|
||||
margin-bottom: 10px;
|
||||
|
||||
li {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
li.active a {
|
||||
background-color: $color-primary;
|
||||
border: 1px solid $color-primary;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
a {
|
||||
border-radius: 0;
|
||||
background: $light;
|
||||
|
||||
&:hover {
|
||||
border: 1px solid transparent;
|
||||
background: $color-primary;
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tab-content {
|
||||
padding: 20px;
|
||||
border: 1px solid $border-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.commonAccordion {
|
||||
.panel {
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
|
||||
.panel-heading {
|
||||
background: transparent;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.panel-title {
|
||||
position: relative;
|
||||
|
||||
a {
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
text-transform: uppercase;
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
a:before {
|
||||
color: lighten( $black, 33.3 );
|
||||
content: "\f209";
|
||||
position: absolute;
|
||||
right: 25px;
|
||||
font-family: $font-icon;
|
||||
}
|
||||
|
||||
a.collapsed:before {
|
||||
content: "\f217";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.commonAccordion-2 {
|
||||
@extend .commonAccordion;
|
||||
}
|
||||
|
||||
|
||||
.list-circle {
|
||||
padding-left: 20px;
|
||||
|
||||
li {
|
||||
list-style-type: circle;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.play-icon {
|
||||
border: 1px solid $border-color;
|
||||
display: inline-block;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 50px;
|
||||
font-size: 30px;
|
||||
|
||||
i {
|
||||
line-height: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.alert-common {
|
||||
border-radius: 0;
|
||||
border-width: 2px;
|
||||
|
||||
i {
|
||||
margin: 0 5px;
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.alert-solid {
|
||||
background: transparent;
|
||||
color: $color-primary;
|
||||
}
|
||||
|
||||
.buttonPart {
|
||||
li {
|
||||
@include mobile {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
@include tablet {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.overly {
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: darken($color-primary, 25);
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
|
||||
.owl-dots .owl-dot.active span,
|
||||
.owl-theme .owl-dots .owl-dot:hover span {
|
||||
background: $color-primary !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#success,
|
||||
#error {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sticky-top {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
@include desktop {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
span.cloaked-e-mail:before {
|
||||
content: attr(data-domain) "\0040" attr(data-user);
|
||||
unicode-bidi: bidi-override;
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.row .no-float {
|
||||
display: table-cell;
|
||||
float: none;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue