Add initial Laravel project files
This commit is contained in:
179
public/sass/_about.scss
Normal file
179
public/sass/_about.scss
Normal file
@ -0,0 +1,179 @@
|
||||
/*---------------------
|
||||
About
|
||||
-----------------------*/
|
||||
.about {
|
||||
padding-bottom: 70px;
|
||||
}
|
||||
|
||||
.about__pic {
|
||||
margin-bottom: 35px;
|
||||
|
||||
img {
|
||||
min-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.about__item {
|
||||
margin-bottom: 30px;
|
||||
|
||||
h4 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Testimonial
|
||||
-----------------------*/
|
||||
.testimonial {
|
||||
background: #f3f2ee;
|
||||
}
|
||||
|
||||
.testimonial__text {
|
||||
text-align: center;
|
||||
padding: 130px 150px 175px;
|
||||
|
||||
span {
|
||||
color: #e53637;
|
||||
font-size: 72px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: $heading-color;
|
||||
font-size: 20px;
|
||||
font-style: italic;
|
||||
line-height: 30px;
|
||||
padding-top: 12px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
.testimonial__author {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.testimonial__author__pic {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
|
||||
img {
|
||||
height: 60px;
|
||||
width: 60px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.testimonial__author__text {
|
||||
overflow: hidden;
|
||||
padding-top: 3px;
|
||||
|
||||
h5 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #b7b7b7;
|
||||
margin-bottom: 0!important;
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.testimonial__pic {
|
||||
height: 600px;
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Counter
|
||||
-----------------------*/
|
||||
.counter {
|
||||
padding-bottom: 0;
|
||||
|
||||
.container {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
padding-bottom: 70px;
|
||||
}
|
||||
}
|
||||
|
||||
.counter__item {
|
||||
margin-bottom: 30px;
|
||||
overflow: hidden;
|
||||
|
||||
.counter__item__number {
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
|
||||
h2 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
font-size: 60px;
|
||||
line-height: 50px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
strong {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
font-size: 60px;
|
||||
line-height: 50px;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
display: block;
|
||||
color: #3d3d3d;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
line-height: 25px;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Testimonial
|
||||
-----------------------*/
|
||||
.team {
|
||||
padding-bottom: 70px;
|
||||
}
|
||||
|
||||
.team__item {
|
||||
margin-bottom: 30px;
|
||||
|
||||
img {
|
||||
min-width: 100%;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
h4 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 15px;
|
||||
display: block;
|
||||
color: #b7b7b7;
|
||||
}
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Clients
|
||||
-----------------------*/
|
||||
.clients {
|
||||
padding-top: 0;
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
|
||||
.client__item {
|
||||
display: block;
|
||||
margin-bottom: 75px;
|
||||
text-align: center;
|
||||
}
|
310
public/sass/_base.scss
Normal file
310
public/sass/_base.scss
Normal file
@ -0,0 +1,310 @@
|
||||
/******************************************************************
|
||||
Template Name: Male Fashion
|
||||
Description: Male Fashion - ecommerce teplate
|
||||
Author: Colorib
|
||||
Author URI: https://www.colorib.com/
|
||||
Version: 1.0
|
||||
Created: Colorib
|
||||
******************************************************************/
|
||||
/*------------------------------------------------------------------
|
||||
[Table of contents]
|
||||
|
||||
1. Template default CSS
|
||||
1.1 Variables
|
||||
1.2 Mixins
|
||||
1.3 Flexbox
|
||||
1.4 Reset
|
||||
2. Helper Css
|
||||
3. Header Section
|
||||
4. Hero Section
|
||||
5. Banner Section
|
||||
6. Product Section
|
||||
7. Intagram Section
|
||||
8. Latest Section
|
||||
9. Contact
|
||||
10. Footer Style
|
||||
-------------------------------------------------------------------*/
|
||||
|
||||
/*----------------------------------------*/
|
||||
/* Template default CSS
|
||||
/*----------------------------------------*/
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
font-family: 'Nunito Sans', sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin: 0;
|
||||
color: #111111;
|
||||
font-weight: 400;
|
||||
font-family: 'Nunito Sans', sans-serif;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 70px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 36px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 15px;
|
||||
font-family: 'Nunito Sans', sans-serif;
|
||||
color: #3d3d3d;
|
||||
font-weight: 400;
|
||||
line-height: 25px;
|
||||
margin: 0 0 15px 0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
input:focus,
|
||||
select:focus,
|
||||
button:focus,
|
||||
textarea:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
color: $white-color;
|
||||
}
|
||||
|
||||
ul,
|
||||
ol {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Helper CSS
|
||||
-----------------------*/
|
||||
.section-title {
|
||||
margin-bottom: 45px;
|
||||
text-align: center;
|
||||
|
||||
span {
|
||||
color: $primary-color;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 15px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
line-height: 46px;
|
||||
}
|
||||
}
|
||||
|
||||
.set-bg {
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: top center;
|
||||
}
|
||||
|
||||
.spad {
|
||||
padding-top: 100px;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
|
||||
.text-white h1,
|
||||
.text-white h2,
|
||||
.text-white h3,
|
||||
.text-white h4,
|
||||
.text-white h5,
|
||||
.text-white h6,
|
||||
.text-white p,
|
||||
.text-white span,
|
||||
.text-white li,
|
||||
.text-white a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* buttons */
|
||||
.primary-btn {
|
||||
display: inline-block;
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
padding: 14px 30px;
|
||||
color: $white-color;
|
||||
background: #000000;
|
||||
letter-spacing: 4px;
|
||||
}
|
||||
|
||||
.site-btn {
|
||||
font-size: 14px;
|
||||
color: $white-color;
|
||||
background: $heading-color;
|
||||
font-weight: 700;
|
||||
border: none;
|
||||
text-transform: uppercase;
|
||||
display: inline-block;
|
||||
padding: 14px 30px;
|
||||
}
|
||||
|
||||
/* Preloder */
|
||||
#preloder {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 999999;
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.loader {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-top: -13px;
|
||||
margin-left: -13px;
|
||||
border-radius: 60px;
|
||||
animation: loader 0.8s linear infinite;
|
||||
-webkit-animation: loader 0.8s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes loader {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
border: 4px solid #f44336;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
border: 4px solid #673ab7;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
border: 4px solid #f44336;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes loader {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
border: 4px solid #f44336;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: rotate(180deg);
|
||||
border: 4px solid #673ab7;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
border: 4px solid #f44336;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.spacial-controls {
|
||||
position: fixed;
|
||||
width: 111px;
|
||||
height: 91px;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.spacial-controls .search-switch {
|
||||
display: block;
|
||||
height: 100%;
|
||||
padding-top: 30px;
|
||||
background: #323232;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.search-model {
|
||||
display: none;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background: #000;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
.search-model-form {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.search-model-form input {
|
||||
width: 500px;
|
||||
font-size: 40px;
|
||||
border: none;
|
||||
border-bottom: 2px solid #333;
|
||||
background: 0 0;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.search-close-switch {
|
||||
position: absolute;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background: #333;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
border-radius: 50%;
|
||||
font-size: 28px;
|
||||
line-height: 28px;
|
||||
top: 30px;
|
||||
cursor: pointer;
|
||||
-webkit-transform: rotate(45deg);
|
||||
transform: rotate(45deg);
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
}
|
306
public/sass/_blog-details.scss
Normal file
306
public/sass/_blog-details.scss
Normal file
@ -0,0 +1,306 @@
|
||||
/*---------------------
|
||||
Blog Hero
|
||||
-----------------------*/
|
||||
.blog-hero {
|
||||
background: #f3f2ee;
|
||||
padding-top: 125px;
|
||||
padding-bottom: 190px;
|
||||
}
|
||||
|
||||
.blog__hero__text {
|
||||
|
||||
h2 {
|
||||
color: $heading-color;
|
||||
font-size: 42px;
|
||||
font-weight: 700;
|
||||
line-height: 50px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
ul {
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
font-size: 15px;
|
||||
color: #3d3d3d;
|
||||
display: inline-block;
|
||||
margin-right: 40px;
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
right: -25px;
|
||||
top: 0;
|
||||
content: "|";
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
|
||||
&:after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Blog Details
|
||||
-----------------------*/
|
||||
.blog-details {
|
||||
margin-top: -115px;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.blog__details__content {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.blog__details__pic {
|
||||
margin-bottom: 60px;
|
||||
|
||||
img {
|
||||
min-width: 100%;
|
||||
border-radius: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.blog__details__share {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
left: -120px;
|
||||
top: 0;
|
||||
|
||||
span {
|
||||
color: $heading-color;
|
||||
font-size: 20px;
|
||||
text-transform: uppercase;
|
||||
font-weight: 700;
|
||||
display: block;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
ul {
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
margin-bottom: 15px;
|
||||
|
||||
a {
|
||||
color: $white-color;
|
||||
font-size: 18px;
|
||||
height: 46px;
|
||||
display: inline-block;
|
||||
width: 46px;
|
||||
border-radius: 50%;
|
||||
line-height: 46px;
|
||||
text-align: center;
|
||||
background: #4267b2;
|
||||
|
||||
&.twitter {
|
||||
background: #1da1f2;
|
||||
}
|
||||
|
||||
&.youtube {
|
||||
background: #fe0003;
|
||||
}
|
||||
|
||||
&.linkedin {
|
||||
background: #0173b2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.blog__details__text {
|
||||
margin-bottom: 50px;
|
||||
|
||||
p {
|
||||
font-size: 18px;
|
||||
line-height: 34px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.blog__details__quote {
|
||||
background: #f3f2ee;
|
||||
padding: 50px 40px 35px;
|
||||
border-radius: 5px;
|
||||
position: relative;
|
||||
margin-bottom: 45px;
|
||||
|
||||
i {
|
||||
font-size: 16px;
|
||||
color: $white-color;
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
background: #e53637;
|
||||
border-radius: 50%;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
left: 40px;
|
||||
top: -25px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: $heading-color;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
font-style: italic;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
h6 {
|
||||
color: #e53637;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
|
||||
.blog__details__option {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
padding-top: 15px;
|
||||
margin-bottom: 70px;
|
||||
}
|
||||
|
||||
.blog__details__author__pic {
|
||||
display: inline-block;
|
||||
margin-right: 15px;
|
||||
|
||||
img {
|
||||
height: 46px;
|
||||
width: 46px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.blog__details__author__text {
|
||||
display: inline-block;
|
||||
|
||||
h5 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
.blog__details__tags {
|
||||
text-align: right;
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
margin-right: 10px;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.blog__details__btns {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.blog__details__btns__item {
|
||||
display: block;
|
||||
border: 1px solid #ebebeb;
|
||||
padding: 25px 30px 30px;
|
||||
margin-bottom: 30px;
|
||||
|
||||
&.blog__details__btns__item--next {
|
||||
text-align: right;
|
||||
|
||||
p {
|
||||
|
||||
span {
|
||||
margin-right: 0;
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
color: #b7b7b7;
|
||||
margin-bottom: 10px;
|
||||
|
||||
span {
|
||||
font-size: 20px;
|
||||
position: relative;
|
||||
top: 4px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
color: $heading-color;
|
||||
font-size: 20px;
|
||||
line-height: 30px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
.blog__details__comment {
|
||||
|
||||
h4 {
|
||||
color: #333333;
|
||||
font-weight: 700;
|
||||
margin-bottom: 35px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
form {
|
||||
|
||||
input {
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
border: 1px solid #e1e1e1;
|
||||
padding-left: 20px;
|
||||
font-size: 15px;
|
||||
color: #b7b7b7;
|
||||
margin-bottom: 30px;
|
||||
@include transition(all, .3s);
|
||||
|
||||
&::placeholder {
|
||||
color: #b7b7b7;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border-color: #000000;
|
||||
}
|
||||
}
|
||||
|
||||
textarea {
|
||||
height: 120px;
|
||||
width: 100%;
|
||||
border: 1px solid #e1e1e1;
|
||||
padding-left: 20px;
|
||||
padding-top: 12px;
|
||||
font-size: 15px;
|
||||
color: #b7b7b7;
|
||||
margin-bottom: 24px;
|
||||
resize: none;
|
||||
@include transition(all, .3s);
|
||||
|
||||
&::placeholder {
|
||||
color: #b7b7b7;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border-color: #000000;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
letter-spacing: 4px;
|
||||
padding: 14px 35px;
|
||||
}
|
||||
}
|
||||
}
|
103
public/sass/_blog-sidebar.scss
Normal file
103
public/sass/_blog-sidebar.scss
Normal file
@ -0,0 +1,103 @@
|
||||
/*---------------------
|
||||
Blog Sidebar
|
||||
-----------------------*/
|
||||
.blog__sidebar {
|
||||
|
||||
}
|
||||
|
||||
.blog__sidebar__item {
|
||||
text-align: center;
|
||||
margin-bottom: 65px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
form {
|
||||
|
||||
input {
|
||||
height: 50px;
|
||||
font-size: 15px;
|
||||
color: #444444;
|
||||
padding-left: 20px;
|
||||
border: 1px solid #e1e1e1;
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
|
||||
&::placeholder {
|
||||
color: #444444;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.blog__sidebar__title {
|
||||
text-align: center;
|
||||
margin-bottom: 35px;
|
||||
|
||||
h4 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
position: relative;
|
||||
padding-bottom: 20px;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
height: 5px;
|
||||
width: 70px;
|
||||
background: #e1e1e1;
|
||||
content: "";
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.blog__sidebar__social {
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
font-size: 18px;
|
||||
color: $heading-color;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background: #f2f2f2;
|
||||
border-radius: 50%;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
margin-right: 6px;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.recent__item {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
margin-bottom: 25px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.recent__item__pic {
|
||||
float: left;
|
||||
margin-right: 25px;
|
||||
}
|
||||
|
||||
.recent__item__text {
|
||||
overflow: hidden;
|
||||
|
||||
h6 {
|
||||
color: $heading-color;
|
||||
line-height: 21px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 13px;
|
||||
color: #888888;
|
||||
}
|
||||
}
|
82
public/sass/_blog.scss
Normal file
82
public/sass/_blog.scss
Normal file
@ -0,0 +1,82 @@
|
||||
/*---------------------
|
||||
Blog
|
||||
-----------------------*/
|
||||
.blog {
|
||||
padding-bottom: 55px;
|
||||
}
|
||||
|
||||
.latest {
|
||||
padding-bottom: 55px;
|
||||
}
|
||||
|
||||
.blog__item {
|
||||
margin-bottom: 45px;
|
||||
|
||||
&:hover {
|
||||
|
||||
a {
|
||||
|
||||
&::after {
|
||||
width: 40px;
|
||||
background: $primary-color;
|
||||
}
|
||||
}
|
||||
|
||||
.blog__item__text {
|
||||
box-shadow: 0px 15px 60px rgba(67, 69, 70, 0.05);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.blog__item__pic {
|
||||
height: 270px;
|
||||
}
|
||||
|
||||
.blog__item__text {
|
||||
padding: 30px 30px 25px;
|
||||
margin: 0 30px;
|
||||
margin-top: -35px;
|
||||
background: $white-color;
|
||||
@include transition(all, .3s);
|
||||
|
||||
span {
|
||||
color: #3d3d3d;
|
||||
font-size: 13px;
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
|
||||
img {
|
||||
margin-right: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
color: #0d0d0d;
|
||||
font-weight: 700;
|
||||
line-height: 28px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
color: $heading-color;
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 4px;
|
||||
text-transform: uppercase;
|
||||
padding: 3px 0;
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: $heading-color;
|
||||
content: "";
|
||||
@include transition(all, .3s);
|
||||
}
|
||||
}
|
||||
}
|
58
public/sass/_breadcrumb.scss
Normal file
58
public/sass/_breadcrumb.scss
Normal file
@ -0,0 +1,58 @@
|
||||
/*---------------------
|
||||
Breadcrumb
|
||||
-----------------------*/
|
||||
.breadcrumb-option {
|
||||
background: #f3f2ee;
|
||||
padding: 40px 0;
|
||||
}
|
||||
|
||||
.breadcrumb__text {
|
||||
|
||||
h4 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.breadcrumb__links {
|
||||
|
||||
a {
|
||||
font-size: 15px;
|
||||
color: $heading-color;
|
||||
margin-right: 18px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
right: -14px;
|
||||
top: 0;
|
||||
content: '\f105';
|
||||
font-family: "FontAwesome";
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 15px;
|
||||
color: #b7b7b7;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Breadcrumb Blog
|
||||
-----------------------*/
|
||||
.breadcrumb-blog {
|
||||
text-align: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 350px;
|
||||
|
||||
h2 {
|
||||
color: $white-color;
|
||||
font-size: 60px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
193
public/sass/_checkout.scss
Normal file
193
public/sass/_checkout.scss
Normal file
@ -0,0 +1,193 @@
|
||||
/*---------------------
|
||||
Checkout
|
||||
-----------------------*/
|
||||
.coupon__code {
|
||||
color: #0d0d0d;
|
||||
font-size: 14px;
|
||||
border-top: 2px solid #77b527;
|
||||
background: #f5f5f5;
|
||||
padding: 23px 30px 18px;
|
||||
margin-bottom: 50px;
|
||||
|
||||
span {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0d0d0d;
|
||||
}
|
||||
}
|
||||
|
||||
.checkout__title {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid #e1e1e1;
|
||||
padding-bottom: 25px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.checkout__input {
|
||||
margin-bottom: 6px;
|
||||
|
||||
p {
|
||||
color: $heading-color;
|
||||
margin-bottom: 12px;
|
||||
|
||||
span {
|
||||
color: #e53637;
|
||||
}
|
||||
}
|
||||
|
||||
input {
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
border: 1px solid #e1e1e1;
|
||||
font-size: 14px;
|
||||
color: #b7b7b7;
|
||||
padding-left: 20px;
|
||||
margin-bottom: 20px;
|
||||
|
||||
&::placeholder {
|
||||
color: #b7b7b7;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.checkout__input__checkbox {
|
||||
|
||||
label {
|
||||
font-size: 15px;
|
||||
color: #0d0d0d;
|
||||
position: relative;
|
||||
padding-left: 30px;
|
||||
cursor: pointer;
|
||||
margin-bottom: 16px;
|
||||
display: block;
|
||||
|
||||
input {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
|
||||
&:checked ~ .checkmark {
|
||||
border-color: #e53637;
|
||||
}
|
||||
|
||||
&:checked ~ .checkmark:after {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.checkmark {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 3px;
|
||||
height: 14px;
|
||||
width: 14px;
|
||||
border: 1.5px solid #d7d7d7;
|
||||
content: "";
|
||||
border-radius: 2px;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
left: 1px;
|
||||
top: -3px;
|
||||
width: 14px;
|
||||
height: 7px;
|
||||
border: solid #e53637;
|
||||
border-width: 1.5px 1.5px 0px 0px;
|
||||
-webkit-transform: rotate(127deg);
|
||||
-ms-transform: rotate(127deg);
|
||||
transform: rotate(127deg);
|
||||
content: "";
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
color: #0d0d0d;
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
}
|
||||
|
||||
.checkout__order {
|
||||
background: #f3f2ee;
|
||||
padding: 30px;
|
||||
|
||||
.order__title {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid #d7d7d7;
|
||||
padding-bottom: 25px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #444444;
|
||||
font-size: 16px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.site-btn {
|
||||
width: 100%;
|
||||
margin-top: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.checkout__order__products {
|
||||
font-size: 16px;
|
||||
color: $heading-color;
|
||||
overflow: hidden;
|
||||
margin-bottom: 18px;
|
||||
|
||||
span {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
|
||||
.checkout__total__products {
|
||||
margin-bottom: 20px;
|
||||
|
||||
li {
|
||||
font-size: 16px;
|
||||
color: #444444;
|
||||
list-style: none;
|
||||
line-height: 26px;
|
||||
overflow: hidden;
|
||||
margin-bottom: 15px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
span {
|
||||
color: $heading-color;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.checkout__total__all {
|
||||
border-top: 1px solid #d7d7d7;
|
||||
border-bottom: 1px solid #d7d7d7;
|
||||
padding: 15px 0;
|
||||
margin-bottom: 26px;
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
font-size: 16px;
|
||||
color: $heading-color;
|
||||
line-height: 40px;
|
||||
overflow: hidden;
|
||||
|
||||
span {
|
||||
color: #e53637;
|
||||
font-weight: 700;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
}
|
93
public/sass/_contact.scss
Normal file
93
public/sass/_contact.scss
Normal file
@ -0,0 +1,93 @@
|
||||
/*---------------------
|
||||
Map
|
||||
-----------------------*/
|
||||
.map {
|
||||
height: 500px;
|
||||
|
||||
iframe {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Contact
|
||||
-----------------------*/
|
||||
.contact__text{
|
||||
|
||||
.section-title {
|
||||
text-align: left;
|
||||
margin-bottom: 40px;
|
||||
|
||||
h2 {
|
||||
font-size: 48px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #707070;
|
||||
line-height: 26px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
margin-bottom: 26px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
h4 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 27px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.contact__form {
|
||||
|
||||
input {
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
border: 1px solid #e1e1e1;
|
||||
padding-left: 20px;
|
||||
font-size: 15px;
|
||||
color: #b7b7b7;
|
||||
margin-bottom: 30px;
|
||||
|
||||
&::placeholder {
|
||||
color: #b7b7b7;
|
||||
}
|
||||
}
|
||||
|
||||
textarea {
|
||||
height: 150px;
|
||||
width: 100%;
|
||||
border: 1px solid #e1e1e1;
|
||||
padding-left: 20px;
|
||||
padding-top: 12px;
|
||||
font-size: 15px;
|
||||
color: #b7b7b7;
|
||||
margin-bottom: 24px;
|
||||
resize: none;
|
||||
|
||||
&::placeholder {
|
||||
color: #b7b7b7;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
letter-spacing: 4px;
|
||||
padding: 14px 35px;
|
||||
}
|
||||
}
|
106
public/sass/_footer.scss
Normal file
106
public/sass/_footer.scss
Normal file
@ -0,0 +1,106 @@
|
||||
/*---------------------
|
||||
Footer
|
||||
-----------------------*/
|
||||
.footer {
|
||||
background: $heading-color;
|
||||
padding-top: 70px;
|
||||
}
|
||||
|
||||
.footer__about {
|
||||
margin-bottom: 30px;
|
||||
|
||||
.footer__logo {
|
||||
margin-bottom: 30px;
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
color: #b7b7b7;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.footer__widget {
|
||||
margin-bottom: 30px;
|
||||
|
||||
h6 {
|
||||
color: $white-color;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
ul {
|
||||
|
||||
li {
|
||||
line-height: 36px;
|
||||
list-style: none;
|
||||
|
||||
a {
|
||||
color: #b7b7b7;
|
||||
font-size: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.footer__newslatter {
|
||||
|
||||
p {
|
||||
color: #b7b7b7;
|
||||
}
|
||||
|
||||
form {
|
||||
position: relative;
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
font-size: 15px;
|
||||
color: #3d3d3d;
|
||||
background: transparent;
|
||||
border: none;
|
||||
padding: 15px 0;
|
||||
border-bottom: 2px solid $white-color;
|
||||
|
||||
&::placeholder {
|
||||
color: #3d3d3d;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
color: #b7b7b7;
|
||||
font-size: 16px;
|
||||
position: absolute;
|
||||
right: 5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footer__copyright__text {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
padding: 20px 0;
|
||||
margin-top: 40px;
|
||||
|
||||
p {
|
||||
color: #b7b7b7;
|
||||
margin-bottom: 0;
|
||||
|
||||
i {
|
||||
color: $primary-color;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
240
public/sass/_header.scss
Normal file
240
public/sass/_header.scss
Normal file
@ -0,0 +1,240 @@
|
||||
/*---------------------
|
||||
Header
|
||||
-----------------------*/
|
||||
.header {
|
||||
background: $white-color;
|
||||
}
|
||||
|
||||
.header__top {
|
||||
background: #111111;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.header__top__left {
|
||||
|
||||
p {
|
||||
color: $white-color;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.header__top__right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.header__top__links {
|
||||
display: inline-block;
|
||||
margin-right: 25px;
|
||||
|
||||
a {
|
||||
color: $white-color;
|
||||
font-size: 13px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-right: 28px;
|
||||
display: inline-block;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.header__top__hover {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
|
||||
ul {
|
||||
top: 24px;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
color: $white-color;
|
||||
font-size: 13px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
|
||||
i {
|
||||
font-size: 20px;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
right: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
background: $white-color;
|
||||
display: inline-block;
|
||||
padding: 2px 0;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 44px;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
z-index: 3;
|
||||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
||||
@include transition(all, .3s);
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
font-size: 13px;
|
||||
color: #111111;
|
||||
padding: 2px 15px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.header__logo {
|
||||
padding: 30px 0;
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.header__menu {
|
||||
text-align: center;
|
||||
padding: 26px 0 25px;
|
||||
|
||||
ul {
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
display: inline-block;
|
||||
margin-right: 45px;
|
||||
position: relative;
|
||||
|
||||
&.active {
|
||||
|
||||
a {
|
||||
|
||||
|
||||
&:after {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
||||
a {
|
||||
|
||||
&:after {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
top: 32px;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 56px;
|
||||
width: 150px;
|
||||
background: $heading-color;
|
||||
text-align: left;
|
||||
padding: 5px 0;
|
||||
z-index: 9;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
@include transition(all, .3s);
|
||||
|
||||
li {
|
||||
display: block;
|
||||
margin-right: 0;
|
||||
|
||||
a {
|
||||
font-size: 14px;
|
||||
color: $white-color;
|
||||
font-weight: 400;
|
||||
padding: 5px 20px;
|
||||
text-transform: capitalize;
|
||||
|
||||
&:after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
font-size: 18px;
|
||||
color: $heading-color;
|
||||
display: block;
|
||||
font-weight: 600;
|
||||
position: relative;
|
||||
padding: 3px 0;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: $primary-color;
|
||||
content: '';
|
||||
@include transition(all, .5s);
|
||||
transform: scale(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.header__nav__option {
|
||||
text-align: right;
|
||||
padding: 30px 0;
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
margin-right: 26px;
|
||||
position: relative;
|
||||
|
||||
span {
|
||||
color: #0d0d0d;
|
||||
font-size: 11px;
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.price {
|
||||
font-size: 15px;
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
display: inline-block;
|
||||
margin-left: -20px;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
.offcanvas-menu-wrapper {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.canvas__open {
|
||||
display: none;
|
||||
}
|
127
public/sass/_hero.scss
Normal file
127
public/sass/_hero.scss
Normal file
@ -0,0 +1,127 @@
|
||||
/*---------------------
|
||||
Hero
|
||||
-----------------------*/
|
||||
.hero__slider {
|
||||
|
||||
&.owl-carousel {
|
||||
|
||||
.owl-item {
|
||||
|
||||
&.active {
|
||||
|
||||
.hero__text {
|
||||
|
||||
h6 {
|
||||
top: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
h2 {
|
||||
top: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
p {
|
||||
top: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.primary-btn {
|
||||
top: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.owl-nav {
|
||||
|
||||
button {
|
||||
font-size: 36px;
|
||||
color: #333333;
|
||||
position: absolute;
|
||||
left: 75px;
|
||||
top: 50%;
|
||||
margin-top: -18px;
|
||||
line-height: 29px;
|
||||
|
||||
&.owl-next {
|
||||
left: auto;
|
||||
right: 75px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hero__items {
|
||||
height: 800px;
|
||||
padding-top: 230px;
|
||||
}
|
||||
|
||||
.hero__text {
|
||||
|
||||
h6 {
|
||||
color: $primary-color;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 28px;
|
||||
position: relative;
|
||||
top: 100px;
|
||||
opacity: 0;
|
||||
@include transition(all, .3s);
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: $heading-color;
|
||||
font-size: 48px;
|
||||
font-weight: 700;
|
||||
line-height: 58px;
|
||||
margin-bottom: 30px;
|
||||
position: relative;
|
||||
top: 100px;
|
||||
opacity: 0;
|
||||
@include transition(all, .6s);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 16px;
|
||||
line-height: 28px;
|
||||
margin-bottom: 35px;
|
||||
position: relative;
|
||||
top: 100px;
|
||||
opacity: 0;
|
||||
@include transition(all, .9s);
|
||||
}
|
||||
|
||||
.primary-btn {
|
||||
position: relative;
|
||||
top: 100px;
|
||||
opacity: 0;
|
||||
@include transition(all, 1.1s);
|
||||
|
||||
span {
|
||||
font-size: 20px;
|
||||
position: relative;
|
||||
top: 4px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hero__social {
|
||||
margin-top: 190px;
|
||||
|
||||
a {
|
||||
font-size: 16px;
|
||||
color: #3d3d3d;
|
||||
display: inline-block;
|
||||
margin-right: 32px;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
252
public/sass/_home-page.scss
Normal file
252
public/sass/_home-page.scss
Normal file
@ -0,0 +1,252 @@
|
||||
/*---------------------
|
||||
Banner
|
||||
-----------------------*/
|
||||
.blog {
|
||||
padding-bottom: 55px;
|
||||
}
|
||||
|
||||
.banner__item {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&:hover {
|
||||
|
||||
.banner__item__text {
|
||||
|
||||
a {
|
||||
|
||||
&:after {
|
||||
width: 40px;
|
||||
background: $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.banner__item--middle {
|
||||
margin-top: -75px;
|
||||
|
||||
.banner__item__pic {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.banner__item__text {
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
max-width: 100%;
|
||||
padding-top: 22px;
|
||||
}
|
||||
}
|
||||
|
||||
&.banner__item--last {
|
||||
margin-top: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.banner__item__pic {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.banner__item__text {
|
||||
max-width: 300px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 140px;
|
||||
|
||||
h2 {
|
||||
color: #111111;
|
||||
font-weight: 700;
|
||||
line-height: 46px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
color: $heading-color;
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 4px;
|
||||
text-transform: uppercase;
|
||||
padding: 3px 0;
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: $heading-color;
|
||||
content: "";
|
||||
@include transition(all, .3s);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Categories
|
||||
-----------------------*/
|
||||
.categories {
|
||||
background: #f3f2ee;
|
||||
overflow: hidden;
|
||||
padding-top: 150px;
|
||||
padding-bottom: 125px;
|
||||
}
|
||||
|
||||
.categories__text {
|
||||
padding-top: 40px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
&:before {
|
||||
position: absolute;
|
||||
left: -485px;
|
||||
top: 0;
|
||||
height: 300px;
|
||||
width: 600px;
|
||||
background: $white-color;
|
||||
z-index: -1;
|
||||
content: "";
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #b7b7b7;
|
||||
line-height: 72px;
|
||||
font-size: 34px;
|
||||
|
||||
span {
|
||||
font-weight: 700;
|
||||
color: $heading-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.categories__hot__deal {
|
||||
position: relative;
|
||||
z-index: 5;
|
||||
|
||||
img {
|
||||
min-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.hot__deal__sticker {
|
||||
height: 100px;
|
||||
width: 100px;
|
||||
background: $heading-color;
|
||||
border-radius: 50%;
|
||||
padding-top: 22px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: -36px;
|
||||
|
||||
span {
|
||||
display: block;
|
||||
font-size: 15px;
|
||||
color: $white-color;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
h5 {
|
||||
color: $white-color;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
.categories__deal__countdown {
|
||||
|
||||
span {
|
||||
color: $primary-color;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 15px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
line-height: 46px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.categories__deal__countdown__timer {
|
||||
margin-bottom: 20px;
|
||||
overflow: hidden;
|
||||
margin-left: -30px;
|
||||
|
||||
.cd-item {
|
||||
width: 25%;
|
||||
float: left;
|
||||
margin-bottom: 25px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 7px;
|
||||
content: ":";
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
color: #3d3d3d;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
|
||||
&:after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
display: block;
|
||||
font-size: 36px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Instagram
|
||||
-----------------------*/
|
||||
.instagram {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.instagram__pic__item {
|
||||
width: 33.33%;
|
||||
float: left;
|
||||
height: 261px;
|
||||
background-position: center center;
|
||||
}
|
||||
|
||||
.instagram__text {
|
||||
padding-top: 130px;
|
||||
|
||||
h2 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 65px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: $primary-color;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
8
public/sass/_mixins.scss
Normal file
8
public/sass/_mixins.scss
Normal file
@ -0,0 +1,8 @@
|
||||
// transition
|
||||
@mixin transition($args...) {
|
||||
-webkit-transition: $args;
|
||||
-moz-transition: $args;
|
||||
-ms-transition: $args;
|
||||
-o-transition: $args;
|
||||
transition: $args;
|
||||
}
|
254
public/sass/_product.scss
Normal file
254
public/sass/_product.scss
Normal file
@ -0,0 +1,254 @@
|
||||
/*---------------------
|
||||
Product
|
||||
-----------------------*/
|
||||
.product {
|
||||
padding-top: 0;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
|
||||
.filter__controls {
|
||||
text-align: center;
|
||||
margin-bottom: 45px;
|
||||
|
||||
li {
|
||||
color: #b7b7b7;
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
list-style: none;
|
||||
display: inline-block;
|
||||
margin-right: 88px;
|
||||
cursor: pointer;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
&.active {
|
||||
color: $heading-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product__item {
|
||||
overflow: hidden;
|
||||
margin-bottom: 40px;
|
||||
|
||||
&.sale {
|
||||
|
||||
.product__item__pic {
|
||||
|
||||
.label {
|
||||
color: $white-color;
|
||||
background: $heading-color;
|
||||
}
|
||||
}
|
||||
|
||||
.product__item__text {
|
||||
|
||||
.rating {
|
||||
|
||||
i {
|
||||
color: #f7941d;
|
||||
|
||||
&:nth-last-child(1) {
|
||||
color: #b7b7b7;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
||||
.product__item__pic {
|
||||
|
||||
.product__hover {
|
||||
right: 20px;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.product__item__text {
|
||||
|
||||
a {
|
||||
top: 22px;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
h6 {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.product__color__select {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product__item__pic {
|
||||
height: 260px;
|
||||
position: relative;
|
||||
background-position: center center;
|
||||
|
||||
.label {
|
||||
color: $heading-color;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 2px;
|
||||
text-transform: uppercase;
|
||||
display: inline-block;
|
||||
padding: 4px 15px 2px;
|
||||
background: $white-color;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 20px;
|
||||
}
|
||||
|
||||
.product__hover {
|
||||
position: absolute;
|
||||
right: -200px;
|
||||
top: 20px;
|
||||
@include transition(all, .8s);
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
margin-bottom: 10px;
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
|
||||
span {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
color: $white-color;
|
||||
background: $heading-color;
|
||||
display: inline-block;
|
||||
padding: 4px 10px;
|
||||
font-size: 12px;
|
||||
position: absolute;
|
||||
left: -78px;
|
||||
top: 5px;
|
||||
z-index: 1;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
@include transition(all, .3s);
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
right: -2px;
|
||||
top: 5px;
|
||||
height: 15px;
|
||||
width: 15px;
|
||||
background: $heading-color;
|
||||
content: "";
|
||||
transform: rotate(45deg);
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
background: $white-color;
|
||||
padding: 10px;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product__item__text {
|
||||
padding-top: 25px;
|
||||
position: relative;
|
||||
|
||||
a {
|
||||
font-size: 15px;
|
||||
color: $primary-color;
|
||||
font-weight: 700;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
@include transition(all, .3s);
|
||||
}
|
||||
|
||||
h6 {
|
||||
color: $heading-color;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 5px;
|
||||
@include transition(all, .3s);
|
||||
}
|
||||
|
||||
.rating {
|
||||
margin-bottom: 6px;
|
||||
|
||||
i {
|
||||
font-size: 14px;
|
||||
color: #b7b7b7;
|
||||
margin-right: -5px;
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
color: #0d0d0d;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.product__color__select {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
@include transition(all, .5s);
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
background: #5e64d1;
|
||||
border-radius: 50%;
|
||||
margin-bottom: 0;
|
||||
margin-right: 5px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
|
||||
&.black {
|
||||
background: #404a47;
|
||||
}
|
||||
|
||||
&.grey {
|
||||
background: #d5a667;
|
||||
}
|
||||
|
||||
&.active {
|
||||
|
||||
&:after {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
left: -3px;
|
||||
top: -3px;
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
border: 1px solid #b9b9b9;
|
||||
content: "";
|
||||
border-radius: 50%;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
input {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
597
public/sass/_responsive.scss
Normal file
597
public/sass/_responsive.scss
Normal file
@ -0,0 +1,597 @@
|
||||
|
||||
/*--------------------------------- Responsive Media Quaries -----------------------------*/
|
||||
@media only screen and (min-width: 1200px) {
|
||||
.container {
|
||||
max-width: 1170px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Medium Device = 1200px */
|
||||
@media only screen and (min-width: 992px) and (max-width: 1199px) {
|
||||
.categories__text h2 {
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
.header__menu ul li {
|
||||
margin-right: 38px;
|
||||
}
|
||||
|
||||
.hero__slider.owl-carousel .owl-nav button {
|
||||
left: 2px;
|
||||
}
|
||||
|
||||
.hero__slider.owl-carousel .owl-nav button.owl-next {
|
||||
right: 2px;
|
||||
}
|
||||
|
||||
.testimonial__text {
|
||||
padding: 130px 45px 175px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Tablet Device = 768px */
|
||||
@media only screen and (min-width: 768px) and (max-width: 991px) {
|
||||
.header__menu ul li {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.header__nav__option a {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.header__nav__option .price {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.hero__slider.owl-carousel .owl-nav button {
|
||||
left: 2px;
|
||||
}
|
||||
|
||||
.hero__slider.owl-carousel .owl-nav button.owl-next {
|
||||
right: 2px;
|
||||
}
|
||||
|
||||
.banner__item.banner__item--middle {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.banner__item.banner__item--last {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.banner__item {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.banner {
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
|
||||
.categories__text {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.categories__hot__deal {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.instagram__text {
|
||||
padding-top: 70px;
|
||||
}
|
||||
|
||||
.shop__sidebar {
|
||||
padding-right: 0;
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
.cart__discount {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.testimonial__text {
|
||||
padding: 100px 105px 100px;
|
||||
}
|
||||
.blog__details__share {
|
||||
position: relative;
|
||||
left: 0;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.blog__details__share span {
|
||||
margin-bottom: 14px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.blog__details__share ul li {
|
||||
margin-bottom: 15px;
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Wide Mobile = 480px */
|
||||
@media only screen and (max-width: 767px) {
|
||||
.canvas__open {
|
||||
display: block;
|
||||
font-size: 22px;
|
||||
color: $heading-color;
|
||||
height: 35px;
|
||||
width: 35px;
|
||||
line-height: 35px;
|
||||
text-align: center;
|
||||
border: 1px solid $heading-color;
|
||||
border-radius: 2px;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 25px;
|
||||
}
|
||||
|
||||
.offcanvas-menu-overlay {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
content: "";
|
||||
z-index: 98;
|
||||
-webkit-transition: all, 0.5s;
|
||||
-moz-transition: all, 0.5s;
|
||||
-ms-transition: all, 0.5s;
|
||||
-o-transition: all, 0.5s;
|
||||
transition: all, 0.5s;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.offcanvas-menu-overlay.active {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.offcanvas-menu-wrapper {
|
||||
position: fixed;
|
||||
left: -300px;
|
||||
width: 300px;
|
||||
height: 100%;
|
||||
background: $white-color;
|
||||
padding: 50px 20px 30px 30px;
|
||||
display: block;
|
||||
z-index: 99;
|
||||
overflow-y: auto;
|
||||
-webkit-transition: all, 0.5s;
|
||||
-moz-transition: all, 0.5s;
|
||||
-ms-transition: all, 0.5s;
|
||||
-o-transition: all, 0.5s;
|
||||
transition: all, 0.5s;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.offcanvas-menu-wrapper.active {
|
||||
opacity: 1;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.offcanvas__menu {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.slicknav_btn {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.slicknav_menu {
|
||||
background: transparent;
|
||||
padding: 0;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.slicknav_nav ul {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.slicknav_nav .slicknav_row,
|
||||
.slicknav_nav a {
|
||||
padding: 7px 0;
|
||||
margin: 0;
|
||||
color: $heading-color;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.slicknav_nav .slicknav_arrow {
|
||||
color: $heading-color;
|
||||
}
|
||||
|
||||
.slicknav_nav .slicknav_row:hover {
|
||||
-webkit-border-radius: 0;
|
||||
-moz-border-radius: 0;
|
||||
border-radius: 0;
|
||||
background: transparent;
|
||||
color: $heading-color;
|
||||
}
|
||||
|
||||
.slicknav_nav a:hover {
|
||||
-webkit-border-radius: 0;
|
||||
-moz-border-radius: 0;
|
||||
border-radius: 0;
|
||||
background: transparent;
|
||||
color: $heading-color;
|
||||
}
|
||||
|
||||
.slicknav_nav {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.offcanvas__option {
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.offcanvas__links {
|
||||
display: inline-block;
|
||||
margin-right: 25px;
|
||||
|
||||
a {
|
||||
color: $heading-color;
|
||||
font-size: 13px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-right: 16px;
|
||||
display: inline-block;
|
||||
font-weight: 600;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.offcanvas__top__hover {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
|
||||
ul {
|
||||
top: 24px;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
color: $heading-color;
|
||||
font-size: 13px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
font-weight: 600;
|
||||
|
||||
i {
|
||||
font-size: 20px;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
right: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
background: $heading-color;
|
||||
display: inline-block;
|
||||
padding: 2px 0;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 44px;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
z-index: 3;
|
||||
@include transition(all, .3s);
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
font-size: 13px;
|
||||
color: $white-color;
|
||||
padding: 2px 15px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.offcanvas__nav__option {
|
||||
text-align: center;
|
||||
margin-bottom: 25px;
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
margin-right: 26px;
|
||||
position: relative;
|
||||
|
||||
span {
|
||||
color: #0d0d0d;
|
||||
font-size: 11px;
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.price {
|
||||
font-size: 15px;
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
display: inline-block;
|
||||
margin-left: -20px;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
.offcanvas__text {
|
||||
|
||||
p {
|
||||
color: $heading-color;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.header__top {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header .container {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.header__menu {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header__nav__option {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.search-model-form input {
|
||||
width: 100%;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.hero__slider.owl-carousel .owl-nav button {
|
||||
left: 15px;
|
||||
top: 80%;
|
||||
}
|
||||
|
||||
.hero__slider.owl-carousel .owl-nav button.owl-next {
|
||||
left: 75px;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.banner__item.banner__item--middle {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.banner__item.banner__item--last {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.banner__item {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.banner {
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
|
||||
.banner__item__pic {
|
||||
float: none;
|
||||
|
||||
img {
|
||||
min-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.banner__item__text {
|
||||
max-width: 100%;
|
||||
position: relative;
|
||||
top: 0;
|
||||
padding-top: 22px;
|
||||
}
|
||||
|
||||
.filter__controls li {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.categories__text {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.categories__hot__deal {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.instagram__text {
|
||||
padding-top: 70px;
|
||||
}
|
||||
|
||||
.instagram__pic__item {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.shop__product__option__right {
|
||||
text-align: left;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.shop__sidebar {
|
||||
padding-right: 0;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.testimonial__text {
|
||||
padding: 100px 40px 100px;
|
||||
}
|
||||
|
||||
.product__details__breadcrumb {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.product__details__pic .nav-tabs {
|
||||
width: auto;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.product__details__pic .nav-tabs .nav-item {
|
||||
margin-bottom: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.product__details__option__size {
|
||||
display: block;
|
||||
margin-right: 0;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.product__details__last__option h5:before {
|
||||
width: 440px;
|
||||
}
|
||||
|
||||
.product__details__tab .nav-tabs .nav-item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.shopping__cart__table {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__pic {
|
||||
float: none;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.continue__btn {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.continue__btn.update__btn {
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.cart__discount {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.checkout__order {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.blog__details__share {
|
||||
position: relative;
|
||||
left: 0;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.blog__details__share span {
|
||||
margin-bottom: 14px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.blog__details__share ul li {
|
||||
margin-bottom: 15px;
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.blog__details__author {
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.blog__details__tags {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.contact__text {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.hero__social {
|
||||
margin-top: 180px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Small Device = 320px */
|
||||
@media only screen and (max-width: 479px) {
|
||||
.cart__total {
|
||||
padding: 35px 30px 40px;
|
||||
}
|
||||
|
||||
.hero__items {
|
||||
height: auto;
|
||||
padding-top: 130px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.hero__text h2 {
|
||||
font-size: 36px;
|
||||
line-height: 48px;
|
||||
}
|
||||
|
||||
.hero__social {
|
||||
margin-top: 145px;
|
||||
}
|
||||
|
||||
.categories__deal__countdown .categories__deal__countdown__timer {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.instagram__pic__item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.testimonial__text {
|
||||
padding: 60px 40px 60px;
|
||||
}
|
||||
|
||||
.product__details__pic .nav-tabs .nav-item .nav-link .product__thumb__pic {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.product__details__pic .nav-tabs .nav-item {
|
||||
margin-bottom: 10px;
|
||||
width: calc(33.33% - 10px);
|
||||
}
|
||||
|
||||
.product__details__last__option h5:before {
|
||||
width: 280px;
|
||||
}
|
||||
|
||||
.product__details__cart__option .quantity {
|
||||
margin-right: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.product__details__last__option h5 span {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.blog__hero__text h2 {
|
||||
font-size: 36px;
|
||||
}
|
||||
.categories__text h2 {
|
||||
font-size: 30px;
|
||||
line-height: 55px;
|
||||
}
|
||||
.categories__text:before {
|
||||
height: 250px;
|
||||
}
|
||||
}
|
427
public/sass/_shop-details.scss
Normal file
427
public/sass/_shop-details.scss
Normal file
@ -0,0 +1,427 @@
|
||||
/*---------------------
|
||||
Shop
|
||||
-----------------------*/
|
||||
.product__details__pic {
|
||||
text-align: center;
|
||||
background: #f3f2ee;
|
||||
padding: 40px 0 60px;
|
||||
margin-bottom: 100px;
|
||||
|
||||
.nav-tabs {
|
||||
border-bottom: none;
|
||||
width: 105px;
|
||||
|
||||
.nav-item {
|
||||
margin-bottom: 10px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
padding: 0;
|
||||
display: block;
|
||||
|
||||
.product__thumb__pic {
|
||||
height: 120px;
|
||||
width: 95px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
i {
|
||||
height: 56px;
|
||||
width: 56px;
|
||||
border: 4px solid $white-color;
|
||||
border-radius: 50%;
|
||||
font-size: 20px;
|
||||
color: $white-color;
|
||||
line-height: 48px;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.product__details__breadcrumb {
|
||||
margin-bottom: 30px;
|
||||
|
||||
a {
|
||||
font-size: 15px;
|
||||
color: $heading-color;
|
||||
margin-right: 18px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
right: -14px;
|
||||
top: 0;
|
||||
content: '\f105';
|
||||
font-family: "FontAwesome";
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 15px;
|
||||
color: #b7b7b7;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.product__details__pic__item {
|
||||
position: relative;
|
||||
|
||||
a {
|
||||
height: 56px;
|
||||
width: 56px;
|
||||
border: 4px solid $white-color;
|
||||
border-radius: 50%;
|
||||
font-size: 20px;
|
||||
color: $white-color;
|
||||
line-height: 48px;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin-top: -28px;
|
||||
margin-left: -28px;
|
||||
}
|
||||
}
|
||||
|
||||
.product__details__text {
|
||||
text-align: center;
|
||||
|
||||
h4 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.rating {
|
||||
margin-bottom: 20px;
|
||||
|
||||
i {
|
||||
font-size: 15px;
|
||||
color: #f7941d;
|
||||
display: inline-block;
|
||||
margin-right: -5px;
|
||||
}
|
||||
|
||||
span {
|
||||
display: inline-block;
|
||||
color: #3d3d3d;
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #0d0d0d;
|
||||
font-weight: 700;
|
||||
margin-bottom: 16px;
|
||||
|
||||
span {
|
||||
color: #b7b7b7;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
margin-left: 10px;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
}
|
||||
|
||||
.product__details__option {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.product__details__option__size {
|
||||
display: inline-block;
|
||||
margin-right: 50px;
|
||||
|
||||
span {
|
||||
color: $heading-color;
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
label {
|
||||
color: $heading-color;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
display: inline-block;
|
||||
border: 1px solid #e5e5e5;
|
||||
padding: 6px 15px;
|
||||
margin-bottom: 0;
|
||||
margin-right: 5px;
|
||||
cursor: pointer;
|
||||
|
||||
&.active {
|
||||
background: $heading-color;
|
||||
color: $white-color;
|
||||
border-color: $heading-color;
|
||||
}
|
||||
|
||||
input {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product__details__option__color {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
top: 10px;
|
||||
|
||||
span {
|
||||
color: $heading-color;
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
position: relative;
|
||||
top: -9px;
|
||||
}
|
||||
|
||||
label {
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 0;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
|
||||
&.c-1 {
|
||||
background: #0b090c;
|
||||
}
|
||||
|
||||
&.c-2 {
|
||||
background: #20315f;
|
||||
}
|
||||
|
||||
&.c-3 {
|
||||
background: #f1af4d;
|
||||
}
|
||||
|
||||
&.c-4 {
|
||||
background: #ed1c24;
|
||||
}
|
||||
|
||||
&.c-9 {
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
left: -3px;
|
||||
top: -3px;
|
||||
height: 36px;
|
||||
width: 36px;
|
||||
border: 1px solid #e5e5e5;
|
||||
content: "";
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
input {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product__details__cart__option {
|
||||
margin-bottom: 25px;
|
||||
|
||||
.quantity {
|
||||
display: inline-block;
|
||||
margin-right: 20px;
|
||||
|
||||
.pro-qty {
|
||||
width: 100px;
|
||||
height: 40px;
|
||||
border: 1px solid #e5e5e5;
|
||||
position: relative;
|
||||
|
||||
input {
|
||||
color: #0d0d0d;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
width: 70px;
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
.qtybtn {
|
||||
font-size: 18px;
|
||||
color: #0d0d0d;
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 3px;
|
||||
height: 10px;
|
||||
width: 10px;
|
||||
cursor: pointer;
|
||||
font-weight: 600;
|
||||
|
||||
&.inc {
|
||||
top: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product__details__btns__option {
|
||||
margin-bottom: 40px;
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
font-size: 13px;
|
||||
color: #3d3d3d;
|
||||
letter-spacing: 2px;
|
||||
text-transform: uppercase;
|
||||
font-weight: 700;
|
||||
margin-right: 20px;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product__details__last__option {
|
||||
|
||||
h5 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
font-size: 20px;
|
||||
position: relative;
|
||||
margin-bottom: 26px;
|
||||
|
||||
span {
|
||||
background: $white-color;
|
||||
padding: 0 30px;
|
||||
}
|
||||
|
||||
&:before {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 10px;
|
||||
height: 1px;
|
||||
width: 460px;
|
||||
background: #e5e5e5;
|
||||
content: "";
|
||||
z-index: -1;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-top: 40px;
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
font-size: 15px;
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
line-height: 30px;
|
||||
|
||||
span {
|
||||
font-weight: 400;
|
||||
color: #b7b7b7;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product__details__tab {
|
||||
padding-top: 60px;
|
||||
|
||||
.nav-tabs {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
justify-content: center;
|
||||
|
||||
.nav-item {
|
||||
margin-right: 50px;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 20px;
|
||||
color: #b7b7b7;
|
||||
padding: 0;
|
||||
border: none;
|
||||
font-weight: 700;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 2px solid transparent;
|
||||
|
||||
&.active {
|
||||
border-bottom: 2px solid $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product__details__tab__content {
|
||||
padding-top: 35px;
|
||||
}
|
||||
|
||||
.note {
|
||||
color: $heading-color;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
line-height: 28px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.product__details__tab__content__item {
|
||||
margin-bottom: 30px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
h5 {
|
||||
color: $heading-color;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*---------------------
|
||||
Related
|
||||
-----------------------*/
|
||||
.related {
|
||||
padding-bottom: 55px;
|
||||
}
|
||||
|
||||
.related-title {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
margin-bottom: 45px;
|
||||
text-align: center;
|
||||
}
|
336
public/sass/_shop.scss
Normal file
336
public/sass/_shop.scss
Normal file
@ -0,0 +1,336 @@
|
||||
/*---------------------
|
||||
Shop
|
||||
-----------------------*/
|
||||
.shop__sidebar {
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
.shop__sidebar__search {
|
||||
margin-bottom: 45px;
|
||||
|
||||
form {
|
||||
position: relative;
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
font-size: 15px;
|
||||
color: #b7b7b7;
|
||||
padding-left: 20px;
|
||||
border: 1px solid #e5e5e5;
|
||||
height: 42px;
|
||||
|
||||
&::placeholder {
|
||||
color: #b7b7b7;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
color: #b7b7b7;
|
||||
font-size: 15px;
|
||||
border: none;
|
||||
background: transparent;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
padding: 0 15px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.shop__sidebar__accordion {
|
||||
|
||||
.card {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
margin-bottom: 25px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
|
||||
.card-body {
|
||||
padding-bottom: 0;
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: 0;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.card-heading {
|
||||
cursor: pointer;
|
||||
|
||||
a {
|
||||
color: $heading-color;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.shop__sidebar__categories {
|
||||
|
||||
ul {
|
||||
height: 225px;
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
|
||||
a {
|
||||
color: #b7b7b7;
|
||||
font-size: 15px;
|
||||
line-height: 32px;
|
||||
@include transition(all, .3s);
|
||||
|
||||
&:hover {
|
||||
color: $heading-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.shop__sidebar__brand {
|
||||
@extend .shop__sidebar__categories;
|
||||
|
||||
ul {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
.shop__sidebar__price {
|
||||
@extend .shop__sidebar__categories;
|
||||
|
||||
ul {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.shop__sidebar__size {
|
||||
padding-top: 15px;
|
||||
|
||||
label {
|
||||
color: $heading-color;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
display: inline-block;
|
||||
border: 1px solid #e5e5e5;
|
||||
padding: 6px 25px;
|
||||
margin-bottom: 10px;
|
||||
margin-right: 5px;
|
||||
cursor: pointer;
|
||||
|
||||
&.active {
|
||||
background: $heading-color;
|
||||
color: $white-color;
|
||||
border-color: $heading-color;
|
||||
}
|
||||
|
||||
input {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.shop__sidebar__color {
|
||||
padding-top: 15px;
|
||||
|
||||
label {
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
margin-right: 10px;
|
||||
display: inline-block;
|
||||
margin-bottom: 10px;
|
||||
cursor: pointer;
|
||||
|
||||
&.c-1 {
|
||||
background: #0b090c;
|
||||
}
|
||||
|
||||
&.c-2 {
|
||||
background: #20315f;
|
||||
}
|
||||
|
||||
&.c-3 {
|
||||
background: #f1af4d;
|
||||
}
|
||||
|
||||
&.c-4 {
|
||||
background: #636068;
|
||||
}
|
||||
|
||||
&.c-5 {
|
||||
background: #57594d;
|
||||
}
|
||||
|
||||
&.c-6 {
|
||||
background: #e8bac4;
|
||||
}
|
||||
|
||||
&.c-7 {
|
||||
background: #d6c1d7;
|
||||
}
|
||||
|
||||
&.c-8 {
|
||||
background: #ed1c24;
|
||||
}
|
||||
|
||||
&.c-9 {
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
left: -3px;
|
||||
top: -3px;
|
||||
height: 36px;
|
||||
width: 36px;
|
||||
border: 1px solid #e5e5e5;
|
||||
content: "";
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
input {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.shop__sidebar__tags {
|
||||
padding-top: 15px;
|
||||
|
||||
a {
|
||||
color: #404040;
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
background: #f1f5f8;
|
||||
padding: 5px 18px;
|
||||
display: inline-block;
|
||||
text-transform: uppercase;
|
||||
margin-right: 6px;
|
||||
margin-bottom: 10px;
|
||||
@include transition(all, .3s);
|
||||
|
||||
&:hover {
|
||||
background: $heading-color;
|
||||
color: $white-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.shop__sidebar__accordion .card-heading a:after,
|
||||
.shop__sidebar__accordion .card-heading > a.active[aria-expanded=false]:after {
|
||||
content: "\f107";
|
||||
font-family: "FontAwesome";
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
color: $heading-color;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 2px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.shop__sidebar__accordion .card-heading.active a:after {
|
||||
content: "\f107";
|
||||
font-family: "FontAwesome";
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
color: $heading-color;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 2px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.shop__product__option {
|
||||
margin-bottom: 45px;
|
||||
|
||||
p {
|
||||
color: $heading-color;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.shop__product__option__right {
|
||||
text-align: right;
|
||||
|
||||
p {
|
||||
display: inline-block;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.nice-select {
|
||||
float: none;
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
line-height: 26px;
|
||||
height: auto;
|
||||
border: none;
|
||||
padding-right: 28px;
|
||||
|
||||
&:after {
|
||||
border-bottom: 1.5px solid #111111;
|
||||
border-right: 1.5px solid #111111;
|
||||
height: 8px;
|
||||
right: 12px;
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
span {
|
||||
color: $heading-color;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.list {
|
||||
border-radius: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product__pagination {
|
||||
padding-top: 25px;
|
||||
text-align: center;
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: $heading-color;
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 50%;
|
||||
line-height: 30px;
|
||||
text-align: center;
|
||||
|
||||
&.active {
|
||||
border-color: $heading-color;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
border-color: $heading-color;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: $heading-color;
|
||||
padding-left: 10px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
217
public/sass/_shopping-cart.scss
Normal file
217
public/sass/_shopping-cart.scss
Normal file
@ -0,0 +1,217 @@
|
||||
/*---------------------
|
||||
Shopping Cart
|
||||
-----------------------*/
|
||||
.shopping__cart__table {
|
||||
margin-bottom: 30px;
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
|
||||
thead {
|
||||
border-bottom: 1px solid #f2f2f2;
|
||||
|
||||
tr {
|
||||
|
||||
th {
|
||||
color: $heading-color;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tbody {
|
||||
|
||||
tr {
|
||||
border-bottom: 1px solid #f2f2f2;
|
||||
|
||||
td {
|
||||
padding-bottom: 30px;
|
||||
padding-top: 30px;
|
||||
|
||||
&.product__cart__item {
|
||||
width: 400px;
|
||||
|
||||
.product__cart__item__pic {
|
||||
float: left;
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.product__cart__item__text {
|
||||
overflow: hidden;
|
||||
padding-top: 21px;
|
||||
|
||||
h6 {
|
||||
color: $heading-color;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
h5 {
|
||||
color: #0d0d0d;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.quantity__item {
|
||||
width: 175px;
|
||||
|
||||
.quantity {
|
||||
|
||||
.pro-qty-2 {
|
||||
width: 80px;
|
||||
|
||||
input {
|
||||
width: 50px;
|
||||
border: none;
|
||||
text-align: center;
|
||||
color: $heading-color;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.qtybtn {
|
||||
font-size: 16px;
|
||||
color: #888888;
|
||||
width: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.cart__price {
|
||||
color: $heading-color;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
&.cart__close {
|
||||
|
||||
i {
|
||||
font-size: 18px;
|
||||
color: $heading-color;
|
||||
height: 40px;
|
||||
width: 40px;
|
||||
background: #f3f2ee;
|
||||
border-radius: 50%;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.continue__btn {
|
||||
|
||||
&.update__btn {
|
||||
text-align: right;
|
||||
|
||||
a {
|
||||
color: $white-color;
|
||||
background: $heading-color;
|
||||
border-color: $heading-color;
|
||||
|
||||
i {
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
color: $heading-color;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 2px;
|
||||
text-transform: uppercase;
|
||||
border: 1px solid #e1e1e1;
|
||||
padding: 14px 35px;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.cart__discount {
|
||||
margin-bottom: 60px;
|
||||
|
||||
h6 {
|
||||
color: $heading-color;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
|
||||
form {
|
||||
position: relative;
|
||||
|
||||
input {
|
||||
font-size: 14px;
|
||||
color: #b7b7b7;
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
border: 1px solid #e1e1e1;
|
||||
padding-left: 20px;
|
||||
|
||||
&::placeholder {
|
||||
color: #b7b7b7;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 14px;
|
||||
color: $white-color;
|
||||
font-weight: 700;
|
||||
letter-spacing: 2px;
|
||||
text-transform: uppercase;
|
||||
background: $heading-color;
|
||||
padding: 0 30px;
|
||||
border: none;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cart__total {
|
||||
background: #f3f2ee;
|
||||
padding: 35px 40px 40px;
|
||||
|
||||
h6 {
|
||||
color: $heading-color;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-bottom: 25px;
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
font-size: 16px;
|
||||
color: #444444;
|
||||
line-height: 40px;
|
||||
overflow: hidden;
|
||||
|
||||
span {
|
||||
font-weight: 700;
|
||||
color: $primary-color;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.primary-btn {
|
||||
display: block;
|
||||
padding: 12px 10px;
|
||||
text-align: center;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
}
|
15
public/sass/_variable.scss
Normal file
15
public/sass/_variable.scss
Normal file
@ -0,0 +1,15 @@
|
||||
$primary-color: #e53637;
|
||||
$secondary-color: #0c2b4b;
|
||||
$white-color: #ffffff;
|
||||
$heading-color: #111111;
|
||||
$para-color: #5C5C5C;
|
||||
$black-color: #000000;
|
||||
$heading-color-2: #323232;
|
||||
$normal-color: #1c1c1c;
|
||||
$background: #f5f5f5;
|
||||
$background-2: #f2f2f2;
|
||||
$border: #ebebeb;
|
||||
$border-1: #e1e1e1;
|
||||
|
||||
$fm-unna: 'Unna', serif;
|
||||
$fm-nunito: 'Nunito Sans', sans-serif;
|
20
public/sass/style.scss
Normal file
20
public/sass/style.scss
Normal file
@ -0,0 +1,20 @@
|
||||
@import "variable";
|
||||
@import "mixins";
|
||||
|
||||
@import "base";
|
||||
@import "header";
|
||||
@import "hero";
|
||||
@import "home-page";
|
||||
@import "product";
|
||||
@import "shop";
|
||||
@import "shop-details";
|
||||
@import "footer";
|
||||
@import "breadcrumb";
|
||||
@import "about";
|
||||
@import "shopping-cart";
|
||||
@import "checkout";
|
||||
@import "blog";
|
||||
@import "blog-sidebar";
|
||||
@import "blog-details";
|
||||
@import "contact";
|
||||
@import "responsive";
|
Reference in New Issue
Block a user