first commit
This commit is contained in:
13
public/style/scss/pages/_distance-map.scss
Normal file
13
public/style/scss/pages/_distance-map.scss
Normal file
@ -0,0 +1,13 @@
|
||||
.mapouter{
|
||||
iframe{
|
||||
width:100%;
|
||||
}
|
||||
}
|
||||
.activity-icon{
|
||||
height:50px;
|
||||
width:50px;
|
||||
min-width:50px;
|
||||
line-height:50px;
|
||||
text-align:center;
|
||||
border-radius:100%;
|
||||
}
|
288
public/style/scss/pages/_ecom-product-detail.scss
Normal file
288
public/style/scss/pages/_ecom-product-detail.scss
Normal file
@ -0,0 +1,288 @@
|
||||
/*
|
||||
===================================
|
||||
Product detail
|
||||
===================================*/
|
||||
|
||||
.produtct-detail-tag {
|
||||
display: inline-block;
|
||||
a {
|
||||
font-style: 13px;
|
||||
color: $dark;
|
||||
}
|
||||
}
|
||||
|
||||
.product-detail-content {
|
||||
.item-tag {
|
||||
background: $l-ctl;
|
||||
border-radius: 6px;
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
margin-right: 4px;
|
||||
padding: 2px 12px;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.filtaring-area {
|
||||
h4 {
|
||||
color: #1d1d1d;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
text-transform: lowercase;
|
||||
}
|
||||
}
|
||||
|
||||
.plus-minus-input {
|
||||
.input-icon {
|
||||
font-size: 13px;
|
||||
color: $dark;
|
||||
}
|
||||
}
|
||||
|
||||
.plus-minus-input {
|
||||
display: flex;
|
||||
width: 120px;
|
||||
.custom-btn {
|
||||
border-radius: 0;
|
||||
height: 40px;
|
||||
padding: 12px 8px;
|
||||
background: $white;
|
||||
border: 1px solid $border;
|
||||
}
|
||||
.form-control {
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
border: 1px solid $border;
|
||||
}
|
||||
}
|
||||
}
|
||||
.btn-reveal-trigger .avatar-xl {
|
||||
min-width: 30px;
|
||||
}
|
||||
.share-view {
|
||||
display: inline-block;
|
||||
ul {
|
||||
li {
|
||||
display: inline-block;
|
||||
a {}
|
||||
}
|
||||
}
|
||||
.share-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: inline-block;
|
||||
border: 1px solid $border;
|
||||
text-align: center;
|
||||
line-height: 40px;
|
||||
font-style: 16px;
|
||||
color: $border;
|
||||
margin-right: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*--------tab----------*/
|
||||
|
||||
.veritical-line {
|
||||
padding: 20px 30px;
|
||||
border-top: 1px solid $border;
|
||||
border-right: 1px solid $border;
|
||||
border-bottom: 1px solid $border;
|
||||
position: relative;
|
||||
&:before {
|
||||
background: $border;
|
||||
bottom: 0;
|
||||
content: "";
|
||||
height: 100%;
|
||||
left: -1px;
|
||||
max-height: 40%;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
.tab-content-text {
|
||||
p {
|
||||
color: $dark;
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
line-height: 24px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
.tab-item-list {
|
||||
li {
|
||||
a {
|
||||
background: $white;
|
||||
border-top: 1px solid $border;
|
||||
border-left: 1px solid $border;
|
||||
border-right: 1px solid $border;
|
||||
color: $dark;
|
||||
display: block;
|
||||
font-size: 16px;
|
||||
padding: 16px;
|
||||
text-transform: uppercase;
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: $white;
|
||||
color: $dark;
|
||||
border-right: 0px;
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
border-bottom: 1px solid $border;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tab-list {
|
||||
li {
|
||||
margin-bottom: 7px;
|
||||
font-size: 13px;
|
||||
i {
|
||||
font-size: 13px;
|
||||
margin-right: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.slide-item-list {
|
||||
text-align: center;
|
||||
margin: 0 -5px;
|
||||
|
||||
li {
|
||||
display: inline-block;
|
||||
flex: 0 0 25%;
|
||||
width: 25%;
|
||||
padding: 0 5px;
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
// float: left;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
padding-top: 0;
|
||||
background: transparent;
|
||||
padding-bottom: 0px;
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: transparent;
|
||||
}
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product-detail-text {
|
||||
padding-top: 28px;
|
||||
padding-left: 30px;
|
||||
padding-right: 30px;
|
||||
padding-bottom: 70px;
|
||||
}
|
||||
|
||||
.star-rating {
|
||||
.product-review {
|
||||
font-style: 13px;
|
||||
color: $dark;
|
||||
font-weight: 400;
|
||||
text-decoration: underline !important;
|
||||
}
|
||||
}
|
||||
|
||||
.product-detail {
|
||||
.tab-content {
|
||||
img {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.popular-tag ul {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
li {
|
||||
display: inline-block;
|
||||
padding: 8px 15px;
|
||||
background: #f8f8f8;
|
||||
font-size: 13px;
|
||||
color: #fff;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.size-filter ul li {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.intro {
|
||||
border: 1px solid red;
|
||||
color: #1d1d1d;
|
||||
}
|
||||
|
||||
#listResults {
|
||||
.slider {
|
||||
margin: 25px 0;
|
||||
}
|
||||
.slider-box {
|
||||
width: 90%;
|
||||
margin: 25px auto;
|
||||
}
|
||||
input {
|
||||
width: 10%;
|
||||
}
|
||||
label {
|
||||
border: none;
|
||||
display: inline-block;
|
||||
margin-right: -4px;
|
||||
vertical-align: top;
|
||||
width: 30%;
|
||||
}
|
||||
}
|
||||
|
||||
// input {
|
||||
// border: none;
|
||||
// display: inline-block;
|
||||
// margin-right: -4px;
|
||||
// vertical-align: top;
|
||||
// width: 30%;
|
||||
// }
|
||||
.plus-minus-input {
|
||||
.input-icon {
|
||||
font-size: 13px;
|
||||
color: #aaaaaa;
|
||||
}
|
||||
.custom-btn {
|
||||
border-radius: 0;
|
||||
height: 40px;
|
||||
padding: 8px 12px;
|
||||
background: #ffffff;
|
||||
border: 1px solid #c8c8c8;
|
||||
&:hover,
|
||||
&:focus,
|
||||
&.active {
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
.form-control {
|
||||
height: 40px;
|
||||
border-top: 1px solid #c8c8c8;
|
||||
border-bottom: 1px solid #c8c8c8;
|
||||
border-left: 0px solid #c8c8c8;
|
||||
border-right: 1px solid #c8c8c8;
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
border-top: 1px solid #c8c8c8;
|
||||
border-bottom: 1px solid #c8c8c8;
|
||||
border-left: 0px solid #c8c8c8;
|
||||
border-right: 0px solid #c8c8c8;
|
||||
}
|
||||
}
|
||||
}
|
17
public/style/scss/pages/_ecom-product-grid.scss
Normal file
17
public/style/scss/pages/_ecom-product-grid.scss
Normal file
@ -0,0 +1,17 @@
|
||||
.new-arrival-product{
|
||||
.new-arrivals-img-contnent{
|
||||
overflow:hidden;
|
||||
|
||||
img{
|
||||
width:100%;
|
||||
@include transitionMedium;
|
||||
}
|
||||
}
|
||||
&:hover .new-arrivals-img-contnent img{
|
||||
transform: scale(1.5) translateY(12%);
|
||||
-moz-transform: scale(1.5) translateY(12%);
|
||||
-webkit-transform: scale(1.5) translateY(12%);
|
||||
-ms-transform: scale(1.5) translateY(12%);
|
||||
-o-transform: scale(1.5) translateY(12%);
|
||||
}
|
||||
}
|
73
public/style/scss/pages/_ecom-product-list.scss
Normal file
73
public/style/scss/pages/_ecom-product-list.scss
Normal file
@ -0,0 +1,73 @@
|
||||
/*
|
||||
===================================
|
||||
list view
|
||||
===================================*/
|
||||
|
||||
.new-arrival-content {
|
||||
.item {
|
||||
font-size: 12px;
|
||||
color: $dark;
|
||||
}
|
||||
h4 {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 10px;
|
||||
a{
|
||||
color:$black;
|
||||
}
|
||||
}
|
||||
.price {
|
||||
font-weight: 600;
|
||||
color: $primary;
|
||||
font-size: 24px;
|
||||
margin-bottom: 0;
|
||||
float: right;
|
||||
@include respond ('phone'){
|
||||
float:none;
|
||||
margin-top:10px;
|
||||
}
|
||||
}
|
||||
p {
|
||||
font-size: 14px;
|
||||
color: $d-ctl;
|
||||
margin-bottom: 6px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.text-content {
|
||||
margin-top: 18px;
|
||||
}
|
||||
}
|
||||
.new-arrival-content.text-center .price {
|
||||
float: unset;
|
||||
}
|
||||
|
||||
.success-icon {
|
||||
color: $success;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.comment-review {
|
||||
margin-bottom: 15px;
|
||||
display: table;
|
||||
width: 100%;
|
||||
.client-review {
|
||||
color: $d-ctl;
|
||||
padding-right: 20px;
|
||||
text-decoration: underline !important;
|
||||
font-size: 14px;
|
||||
}
|
||||
.span {
|
||||
color: $d-ctl;
|
||||
font-size: 14px;
|
||||
}
|
||||
@include respond ('phone'){
|
||||
margin-bottom:0;
|
||||
}
|
||||
}
|
||||
|
||||
.star-rating li {
|
||||
display: inline-block;
|
||||
i {
|
||||
color: gold;
|
||||
}
|
||||
}
|
46
public/style/scss/pages/_food-menu.scss
Normal file
46
public/style/scss/pages/_food-menu.scss
Normal file
@ -0,0 +1,46 @@
|
||||
.diet-search{
|
||||
width:360px;
|
||||
.input-group-append{
|
||||
margin-left:-20px;
|
||||
button{
|
||||
border-top-left-radius: $radius!important;
|
||||
border-bottom-left-radius: $radius!important;
|
||||
font-size: 25px;
|
||||
padding: 0 20px;
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
}
|
||||
@include respond ('laptop'){
|
||||
width:300px;
|
||||
.input-group-append{
|
||||
button{
|
||||
font-size:18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@include respond ('phone'){
|
||||
width:100%;
|
||||
}
|
||||
}
|
||||
.menu-list{
|
||||
@include respond ('tab-port'){
|
||||
&>a>img{
|
||||
float:left;
|
||||
}
|
||||
}
|
||||
@include respond ('phone'){
|
||||
&>a>img{
|
||||
width:80px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.plus-icon{
|
||||
height: 60px;
|
||||
width: 60px;
|
||||
min-width: 60px;
|
||||
display: inline-block;
|
||||
line-height: 60px;
|
||||
text-align: center;
|
||||
}
|
805
public/style/scss/pages/_homepage.scss
Normal file
805
public/style/scss/pages/_homepage.scss
Normal file
@ -0,0 +1,805 @@
|
||||
.items-table{
|
||||
|
||||
tbody{
|
||||
|
||||
tr{
|
||||
padding:0;
|
||||
border-radius: $radius;
|
||||
position: relative;
|
||||
box-shadow: 0 1px 0 0 #f8f8f8;
|
||||
@include transitionMedium;
|
||||
.dropdown{
|
||||
opacity:0;
|
||||
}
|
||||
&.active,
|
||||
&:hover{
|
||||
box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
|
||||
z-index: 1;
|
||||
.dropdown{
|
||||
opacity:1;
|
||||
}
|
||||
}
|
||||
th,
|
||||
td{
|
||||
border: 0;
|
||||
padding:18px 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@include respond('phone') {
|
||||
width:500px;
|
||||
}
|
||||
}
|
||||
|
||||
.star-review{
|
||||
i{
|
||||
font-size:16px;
|
||||
&.text-gray{
|
||||
color:#d9d9d9;
|
||||
}
|
||||
}
|
||||
span{
|
||||
color:$black;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Form Head
|
||||
.form-head{
|
||||
|
||||
.breadcrumb{
|
||||
background:transparent;
|
||||
padding:0;
|
||||
}
|
||||
.search-area{
|
||||
max-width:300px;
|
||||
border-radius: 0;
|
||||
@include respond('laptop') {
|
||||
max-width:250px;
|
||||
}
|
||||
@include respond('phone') {
|
||||
max-width:250px;
|
||||
}
|
||||
.form-control{
|
||||
border: 0;
|
||||
height: 56px;
|
||||
padding: 10px 15px;
|
||||
font-size: 16px;
|
||||
background:#f1f1f1;
|
||||
border-radius:0;
|
||||
@include respond('laptop') {
|
||||
height: 41px;
|
||||
padding: 10px 15px;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
.input-group-append .input-group-text{
|
||||
background:#f1f1f1;
|
||||
padding: 0 5px 0 30px;
|
||||
@include respond('laptop') {
|
||||
padding: 0 5px 0 30px;
|
||||
}
|
||||
i {
|
||||
font-size: 20px;
|
||||
color:$body-color;
|
||||
@include respond('laptop') {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.dropdown {
|
||||
.btn{
|
||||
|
||||
i{
|
||||
transform: scale(1.3);
|
||||
-moz-transform: scale(1.3);
|
||||
-webkit-transform: scale(1.3);
|
||||
-ms-transform: scale(1.3);
|
||||
-o-transform: scale(1.3);
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
&:after{
|
||||
color:$primary;
|
||||
font-size:25px;
|
||||
}
|
||||
}
|
||||
/* .btn i{
|
||||
line-height: 1;
|
||||
transform: scale(1.3);
|
||||
display: inline-block;
|
||||
margin-right: 5px;
|
||||
} */
|
||||
/* .btn-outline-primary{
|
||||
border-color:#eee;
|
||||
&:hover{
|
||||
border-color:$primary;
|
||||
}
|
||||
} */
|
||||
& > *{
|
||||
@include respond('phone-land') {
|
||||
margin-right:5px !important;
|
||||
margin-bottom:10px;
|
||||
vertical-align: baseline;
|
||||
margin-left:0 !important;
|
||||
}
|
||||
}
|
||||
@include respond('phone-land') {
|
||||
display:block !important;
|
||||
}
|
||||
}
|
||||
.rounded{
|
||||
border-radius:$radius !important;
|
||||
}
|
||||
.btn-link{
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
@include respond('laptop') {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
.deznav .copyright{
|
||||
font-size:14px;
|
||||
padding: 0 45px 60px;
|
||||
margin-top: 40px;
|
||||
color: #969BA0;
|
||||
margin-bottom: 40px;
|
||||
|
||||
p{
|
||||
margin-bottom:10px;
|
||||
}
|
||||
strong{
|
||||
display:block;
|
||||
}
|
||||
|
||||
@include respond('laptop') {
|
||||
padding:0 25px 60px;
|
||||
}
|
||||
@include respond ('phone-land'){
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
}
|
||||
.widget-buyer {
|
||||
.media {
|
||||
img {
|
||||
width: 30px;
|
||||
}
|
||||
.media-body {
|
||||
h5 {
|
||||
font-size: 14px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
p {
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.recentOrderTable {
|
||||
table {
|
||||
margin-bottom: 0;
|
||||
overflow: hidden;
|
||||
thead {
|
||||
th {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
tbody {
|
||||
td {
|
||||
color: $dark;
|
||||
font-weight: 500;
|
||||
line-height: 40px;
|
||||
@at-root [data-theme-version="dark"] & {
|
||||
color: $d-ctl;
|
||||
}
|
||||
img {
|
||||
border-radius: 50px;
|
||||
}
|
||||
.custom-dropdown {
|
||||
i {
|
||||
padding: 0 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.activity_overview{
|
||||
.nav-tabs{
|
||||
border-bottom:1px solid rgba(255,255,255,0.2) !important;
|
||||
}
|
||||
.custom-tab-1 .nav-link{
|
||||
color:rgba(255,255,255,0.5);
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
margin-right: 30px;
|
||||
|
||||
&:hover,
|
||||
&.active{
|
||||
background:transparent;
|
||||
color:#fff;
|
||||
border-color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
.ps .ps__rail-x:hover,
|
||||
.ps .ps__rail-y:hover,
|
||||
.ps .ps__rail-x:focus,
|
||||
.ps .ps__rail-y:focus,
|
||||
.ps .ps__rail-x.ps--clicking,
|
||||
.ps .ps__rail-y.ps--clicking {
|
||||
background-color: transparent!important;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.chart-link {
|
||||
@include respond('phone') {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
@include respond('tab-land') {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
@include respond('desktop') {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.week-link {
|
||||
display: inline-block;
|
||||
// @include respond('tab-land'){
|
||||
// display: flex;
|
||||
// }
|
||||
}
|
||||
a {
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
margin-right: 10px;
|
||||
i {
|
||||
font-size: 13px;
|
||||
&.text-primary {
|
||||
color: $primary;
|
||||
}
|
||||
&.text-muted {
|
||||
color: #DAE2F3!important;
|
||||
}
|
||||
}
|
||||
}
|
||||
.form-control {
|
||||
max-width: 97px;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
.input-group {
|
||||
&.input-group-lg{
|
||||
.form-control,.input-group-text{
|
||||
height:80px;
|
||||
padding:10px 30px;
|
||||
@include respond('phone') {
|
||||
height:50px;
|
||||
padding: 10px 15px;
|
||||
font-size:14px;
|
||||
}
|
||||
}
|
||||
.input-group-text{
|
||||
width:200px;
|
||||
text-align:left;
|
||||
@include respond('phone') {
|
||||
width:120px;
|
||||
padding: 10px 15px;
|
||||
height:50px;
|
||||
font-size:14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.card-tabs {
|
||||
.nav-tabs {
|
||||
border-bottom: 0px;
|
||||
background: #E8E8E8;
|
||||
padding: 5px;
|
||||
border-radius: $radius;
|
||||
flex-wrap: unset;
|
||||
|
||||
.nav-link {
|
||||
border-radius:$radius;
|
||||
padding: 12px 20px;
|
||||
font-weight: 500;
|
||||
font-size:16px;
|
||||
border:0px solid $border-color;
|
||||
color:$black;
|
||||
&.active {
|
||||
background: $white;
|
||||
color:$primary;
|
||||
}
|
||||
@include respond('laptop') {
|
||||
padding: 8px 15px;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
&.tabs-lg{
|
||||
.nav-link {
|
||||
padding:23px 30px;
|
||||
font-size:16px;
|
||||
@include respond('phone-land') {
|
||||
padding:10px 15px;
|
||||
font-size:14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.icontabs{
|
||||
.nav-tabs{
|
||||
background:transparent;
|
||||
.nav-item{
|
||||
.nav-link{
|
||||
height:42px;
|
||||
width:42px;
|
||||
line-height:42px;
|
||||
text-align:center;
|
||||
background:rgba($gray,0.6);
|
||||
color:$white;
|
||||
margin-right:15px;
|
||||
border-radius: 50px;
|
||||
padding:0;
|
||||
&.active{
|
||||
background:$warning;
|
||||
}
|
||||
i{
|
||||
font-size:25px;
|
||||
line-height:42px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.style-1{
|
||||
.nav-tabs{
|
||||
background:transparent;
|
||||
.nav-link{
|
||||
font-size:16px;
|
||||
color:$black;
|
||||
position:relative;
|
||||
&:after{
|
||||
content:none;
|
||||
}
|
||||
span{
|
||||
position:absolute;
|
||||
bottom:-4px;
|
||||
left:50%;
|
||||
transform:translatex(-50%);
|
||||
content:"";
|
||||
height:4px;
|
||||
width:0;
|
||||
@include transitionMedium;
|
||||
}
|
||||
&.active{
|
||||
span{
|
||||
width:100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.revenue-chart .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series{
|
||||
display:flex !important;
|
||||
margin-right: 30px !important;
|
||||
margin-bottom: 30px !important;
|
||||
}
|
||||
.revenue-chart-bar{
|
||||
margin-bottom:-30px;
|
||||
|
||||
@include respond('phone') {
|
||||
margin-bottom: 20px;
|
||||
float: none;
|
||||
padding-left: 20px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
|
||||
.revenue-chart-bar{
|
||||
margin-bottom: 20px;
|
||||
float: none;
|
||||
padding-left: 20px;
|
||||
}
|
||||
}
|
||||
#activeUser {
|
||||
height: 215px!important;
|
||||
}
|
||||
#activeUser {
|
||||
height: 180px!important;
|
||||
}
|
||||
span#counter {
|
||||
font-size: 30px;
|
||||
font-weight: 700;
|
||||
color: $primary;
|
||||
}
|
||||
.social-graph-wrapper {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
position: relative;
|
||||
color: $white;
|
||||
border-top-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0.25rem;
|
||||
|
||||
&.widget-facebook {
|
||||
background-color: $facebook;
|
||||
}
|
||||
&.widget-twitter {
|
||||
background-color: $twitter;
|
||||
}
|
||||
&.widget-linkedin {
|
||||
background-color: $linkedin;
|
||||
}
|
||||
&.widget-googleplus {
|
||||
background-color: $google-plus;
|
||||
}
|
||||
.s-icon {
|
||||
font-size: 24px;
|
||||
position: relative;
|
||||
// top: 0.625rem;
|
||||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
.recent-stats i{
|
||||
font-size: 11px;
|
||||
position: relative;
|
||||
top: -1px;
|
||||
}
|
||||
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
|
||||
#lineChart_3Kk{
|
||||
height: 140px !important;
|
||||
}
|
||||
}
|
||||
/* add menu sidebar */
|
||||
.add-menu-sidebar{
|
||||
background: $primary;
|
||||
padding: 20px 18px;
|
||||
display:flex;
|
||||
align-items:center;
|
||||
border-radius: $radius;
|
||||
position:relative;
|
||||
margin: 50px 50px;
|
||||
p{
|
||||
font-size:16px;
|
||||
font-weight:500;
|
||||
color:#fff;
|
||||
}
|
||||
@include respond('laptop') {
|
||||
margin: 50px 25px 50px;
|
||||
p{
|
||||
font-size:14px;
|
||||
}
|
||||
}
|
||||
@include respond('phone') {
|
||||
margin: 20px 25px 20px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.donut-chart-sale {
|
||||
position:relative;
|
||||
small {
|
||||
font-size: 16px;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
top: 0;
|
||||
justify-content: center;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
.profile-bx{
|
||||
.profile-image{
|
||||
background-image:url('../images/circle.png');
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
img{
|
||||
margin: 18px;
|
||||
width: 118px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//search-area
|
||||
.search-area{
|
||||
width: 300px;
|
||||
.form-control{
|
||||
background:#EFEFEF!important;
|
||||
border-width:0px;
|
||||
padding-right: 20px;
|
||||
min-height: 55px;
|
||||
border-radius:0;
|
||||
border-top-right-radius: $radius;
|
||||
border-bottom-right-radius: $radius;
|
||||
&::placeholder{
|
||||
color:#757575;
|
||||
}
|
||||
}
|
||||
.input-group-text{
|
||||
background:#EFEFEF;
|
||||
border-width:0px;
|
||||
border-top-left-radius: $radius!important;
|
||||
border-bottom-left-radius: $radius!important;
|
||||
padding-right: 0;
|
||||
padding-left: 20px;
|
||||
i{
|
||||
font-size:25px;
|
||||
}
|
||||
|
||||
}
|
||||
@include respond('mid-desktop'){
|
||||
width:230px;
|
||||
}
|
||||
@include respond('laptop'){
|
||||
.form-control{
|
||||
min-height:45px;
|
||||
}
|
||||
.input-group-text i{
|
||||
font-size:18px;
|
||||
}
|
||||
}
|
||||
@include respond('tab-port'){
|
||||
width:200px;
|
||||
}
|
||||
}
|
||||
|
||||
//donut chart
|
||||
.donut-chart-sale{
|
||||
z-index: 1;
|
||||
.circle {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
z-index: -1;
|
||||
content: "";
|
||||
position: absolute;
|
||||
border-radius: 100%;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
small {
|
||||
font-size: 14px;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
top: 0;
|
||||
justify-content: center;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
.min-w24{
|
||||
min-width:24px;
|
||||
} .min-w30{
|
||||
min-width:30px;
|
||||
}
|
||||
.min-w32{
|
||||
min-width:32px;
|
||||
}
|
||||
.min-w42{
|
||||
min-width:42px;
|
||||
}
|
||||
.min-w46{
|
||||
min-width:46px;
|
||||
}
|
||||
.min-w50{
|
||||
min-width:50px;
|
||||
}
|
||||
.line-chart-demo{
|
||||
|
||||
}
|
||||
|
||||
.form-group.style-1{
|
||||
.form-control{
|
||||
border-color:transparent;
|
||||
margin-right: -45px;
|
||||
z-index: 0;
|
||||
color:$black;
|
||||
background:#F0F0F0;
|
||||
border-radius:$radius;
|
||||
}
|
||||
}
|
||||
|
||||
.previous-transactions{
|
||||
tbody{
|
||||
tr{
|
||||
td:first-child{
|
||||
width:100px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//star rating
|
||||
.rating-widget .rating-stars ul li i {
|
||||
font-size: 25px !important;
|
||||
}
|
||||
|
||||
|
||||
.heart {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: inline-block;
|
||||
background: url('../images/like.png');
|
||||
cursor: pointer;
|
||||
margin: -25px -15px;
|
||||
}
|
||||
.heart-blast {
|
||||
background-position: -1680px 0;
|
||||
transition: background 1s steps(28);
|
||||
}
|
||||
|
||||
//avtivity-card
|
||||
.avtivity-card{
|
||||
position:relative;
|
||||
z-index:1;
|
||||
overflow:hidden;
|
||||
.activity-icon{
|
||||
height:80px;
|
||||
width:80px;
|
||||
min-width:80px;
|
||||
display:block;
|
||||
@include transitionMedium;
|
||||
border-radius:100%;
|
||||
line-height:80px;
|
||||
text-align:center;
|
||||
}
|
||||
.title{
|
||||
font-size:28px;
|
||||
}
|
||||
.progress{
|
||||
position:absolute;
|
||||
bottom:0;
|
||||
left:0;
|
||||
width: 100%;
|
||||
}
|
||||
.effect{
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-radius: 50%;
|
||||
transition: width .4s ease-in-out,height .4s ease-in-out;
|
||||
-webkit-transform: translate(-50%,-50%);
|
||||
transform: translate(-50%,-50%);
|
||||
z-index: -1;
|
||||
}
|
||||
p,.media-body span{
|
||||
@include transitionMedium;
|
||||
}
|
||||
&:hover {
|
||||
.activity-icon{
|
||||
background:$white!important;
|
||||
}
|
||||
.effect{
|
||||
width: 225%;
|
||||
height: 562px;
|
||||
}
|
||||
p{
|
||||
color:$white;
|
||||
}
|
||||
.media-body{
|
||||
span{
|
||||
color:$white!important;
|
||||
}
|
||||
}
|
||||
.progress{
|
||||
background:rgba($white,0.2)!important;
|
||||
.progress-bar{
|
||||
background:$white !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
@include respond ('phone-land'){
|
||||
.title{
|
||||
font-size:20px;
|
||||
}
|
||||
.activity-icon{
|
||||
height:65px;
|
||||
width:65px;
|
||||
min-width:65px;
|
||||
line-height:65px;
|
||||
svg{
|
||||
width:35px;
|
||||
height:35px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//testimonial-one
|
||||
.testimonial-one{
|
||||
.card{
|
||||
box-shadow:none;
|
||||
@include transitionMedium;
|
||||
margin-bottom:0;
|
||||
img{
|
||||
height:113px;
|
||||
width:113px;
|
||||
margin-left:auto;
|
||||
margin-bottom: 15px;
|
||||
margin-right:auto;
|
||||
border-radius:100%;
|
||||
}
|
||||
&:hover{
|
||||
box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
||||
.owl-nav{
|
||||
.owl-prev,.owl-next{
|
||||
height:68px;
|
||||
width:68px;
|
||||
cursor:pointer;
|
||||
line-height:68px;
|
||||
border-radius:100%;
|
||||
position:absolute;
|
||||
top:40%;
|
||||
background:$white;
|
||||
color:$primary;
|
||||
text-align:center;
|
||||
font-size:25px;
|
||||
box-shadow:0px 0px 10px rgba(0,0,0,0.1);
|
||||
}
|
||||
.owl-next{
|
||||
right:-30px;
|
||||
}
|
||||
.owl-prev{
|
||||
left:-30px;
|
||||
}
|
||||
@include respond ('phone'){
|
||||
.owl-next,.owl-prev{
|
||||
height:50px;
|
||||
width:50px;
|
||||
line-height:50px;
|
||||
font-size:20px;
|
||||
}
|
||||
.owl-next{
|
||||
right:-10px;
|
||||
}
|
||||
.owl-prev{
|
||||
left:-10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//featuredMenu
|
||||
.featuredMenu{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
//card-footer style-1
|
||||
.card-footer.style-1{
|
||||
position:relative;
|
||||
a{
|
||||
position:absolute;
|
||||
height:68px;
|
||||
width:68px;
|
||||
line-height:68px;
|
||||
font-size: 25px;
|
||||
left:50%;
|
||||
border-radius:100%;
|
||||
background:$white;
|
||||
color:$primary;
|
||||
box-shadow:0px 0px 10px rgba(0,0,0,0.1);
|
||||
transform:translateX(-50%);
|
||||
bottom:-10px;
|
||||
}
|
||||
}
|
84
public/style/scss/pages/_page-auth.scss
Normal file
84
public/style/scss/pages/_page-auth.scss
Normal file
@ -0,0 +1,84 @@
|
||||
.authincation-content{
|
||||
background: $primary;
|
||||
box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.15);
|
||||
border-radius: 5px;
|
||||
@at-root [data-theme-version="dark"] & {
|
||||
background: $dark-card;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
}
|
||||
.welcome-content{
|
||||
background: url('./../images/1.jpg');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
height: 100%;
|
||||
padding: 75px 50px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
border-top-left-radius: 5px;
|
||||
border-bottom-left-radius: 5px;
|
||||
&::after{
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
background: $primary;
|
||||
opacity: 0.75;
|
||||
z-index: -1;
|
||||
border-top-left-radius: 5px;
|
||||
border-bottom-left-radius: 5px;
|
||||
}
|
||||
.welcome-title{
|
||||
color: $white;
|
||||
font-weight: 500;
|
||||
font-size: 20px;
|
||||
}
|
||||
p{
|
||||
color: $white;
|
||||
}
|
||||
|
||||
.brand-logo{
|
||||
a{
|
||||
display: inline-block;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 700;
|
||||
color: $white;
|
||||
font-size: 20px;
|
||||
img{
|
||||
width: 100px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.intro-social{
|
||||
position: absolute;
|
||||
bottom: 75px;
|
||||
ul{
|
||||
margin-bottom: 0;
|
||||
li{
|
||||
display: inline-block;
|
||||
a{
|
||||
color: $white;
|
||||
font-size: 14px;
|
||||
padding: 0px 7px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.auth-form{
|
||||
padding: 50px 50px;
|
||||
@include respond('phone') {
|
||||
padding: 30px;
|
||||
}
|
||||
.btn{
|
||||
font-weight: 700;
|
||||
}
|
||||
.page-back{
|
||||
display: inline-block;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
}
|
24
public/style/scss/pages/_page-error.scss
Normal file
24
public/style/scss/pages/_page-error.scss
Normal file
@ -0,0 +1,24 @@
|
||||
.error-page{
|
||||
.error-text {
|
||||
font-size: 150px;
|
||||
line-height: 1;
|
||||
color:$secondary;
|
||||
@include respond('phone') {
|
||||
font-size: 80px;
|
||||
}
|
||||
}
|
||||
h4{
|
||||
font-size: 40px;
|
||||
margin-bottom: 5px;
|
||||
color:$secondary;
|
||||
@include respond('phone') {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
p{
|
||||
font-size: 16px;
|
||||
@include respond('phone') {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
87
public/style/scss/pages/_page-order.scss
Normal file
87
public/style/scss/pages/_page-order.scss
Normal file
@ -0,0 +1,87 @@
|
||||
.full-map-area{
|
||||
position:relative;
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
|
||||
a{
|
||||
position:absolute;
|
||||
bottom:30px;
|
||||
left:30px;
|
||||
}
|
||||
i{
|
||||
background: #3e4954;
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
text-align: center;
|
||||
line-height: 56px;
|
||||
font-size: 24px;
|
||||
color: #fff;
|
||||
border-radius: 56px;
|
||||
}
|
||||
img
|
||||
{
|
||||
width:100%;
|
||||
}
|
||||
}
|
||||
.iconbox{
|
||||
position: relative;
|
||||
padding-left: 70px;
|
||||
|
||||
i{
|
||||
background:$primary;
|
||||
width:50px;
|
||||
height:50px;
|
||||
line-height:50px;
|
||||
border-radius:50px;
|
||||
text-align:center;
|
||||
font-size:28px;
|
||||
color:$white;
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
}
|
||||
p{
|
||||
margin: 0;
|
||||
color: #484848;
|
||||
font-size: 18px;
|
||||
line-height: 1.3;
|
||||
font-weight: 500;
|
||||
}
|
||||
small{
|
||||
margin-bottom: 5px;
|
||||
font-size: 16px;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.widget-timeline-icon{
|
||||
li{
|
||||
padding-left: 25px;
|
||||
position: relative;
|
||||
margin-left: 11px;
|
||||
border-left: 3px solid $primary;
|
||||
min-height: 80px;
|
||||
padding-top: 1px;
|
||||
|
||||
.icon{
|
||||
position: absolute;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
font-size: 24px;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
line-height: 22px;
|
||||
border-radius: 22px;
|
||||
left:-13px;
|
||||
top: 0;
|
||||
}
|
||||
.timeline-panel{
|
||||
|
||||
}
|
||||
&:last-child{
|
||||
border-left: 3px solid transparent;
|
||||
}
|
||||
}
|
||||
}
|
77
public/style/scss/pages/_page-pricing.scss
Normal file
77
public/style/scss/pages/_page-pricing.scss
Normal file
@ -0,0 +1,77 @@
|
||||
.pricing_table_content {
|
||||
background : $white;
|
||||
text-align : center;
|
||||
border : 1px solid #e7e7e7;
|
||||
border-radius : 3px;
|
||||
padding : 25px;
|
||||
-webkit-transition: all 0.25s ease-in-out;
|
||||
transition : all 0.25s ease-in-out;
|
||||
|
||||
.package {
|
||||
font-weight: 700;
|
||||
font-size : 18px;
|
||||
// font-family: $p_hf;
|
||||
}
|
||||
|
||||
.price {
|
||||
font-weight: 700;
|
||||
font-size : 50px;
|
||||
// font-family: $p_hf;
|
||||
line-height: 100px;
|
||||
color : $dark;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.price_list {
|
||||
padding : 30px 0;
|
||||
text-align: left;
|
||||
max-width : 175px;
|
||||
margin : 0 auto;
|
||||
|
||||
li {
|
||||
// font-family: $p_op;
|
||||
color : #909093;
|
||||
font-size : 14px;
|
||||
line-height: 25px;
|
||||
padding : 7px 0;
|
||||
|
||||
i {
|
||||
margin-right: 15px;
|
||||
// color : $p_bc;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.price-btn {
|
||||
padding : 15px 50px;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow : none;
|
||||
border : 1px solid $l-border;
|
||||
// color : $p_bc;
|
||||
border-radius : 5px;
|
||||
font-weight : 700;
|
||||
font-size : 14px;
|
||||
// font-family : $p_hf;
|
||||
margin-bottom : 25px;
|
||||
-webkit-transition: all 0.25s ease-in-out;
|
||||
transition : all 0.25s ease-in-out;
|
||||
}
|
||||
|
||||
&:focus,
|
||||
&:hover {
|
||||
-webkit-transform : scale(1.05);
|
||||
transform : scale(1.05);
|
||||
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.175);
|
||||
box-shadow : 0 0 10px rgba(0,0,0,0.175);
|
||||
|
||||
.price-btn {
|
||||
// background: $p_bc;
|
||||
color : $danger;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
286
public/style/scss/pages/_page-timeline.scss
Normal file
286
public/style/scss/pages/_page-timeline.scss
Normal file
@ -0,0 +1,286 @@
|
||||
.page-timeline{
|
||||
.timeline {
|
||||
list-style: none;
|
||||
padding : 40px 0;
|
||||
position : relative;
|
||||
|
||||
&-workplan#{&} {
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
|
||||
&.timeline > li > .timeline-badge {
|
||||
top: 4.5rem;
|
||||
}
|
||||
|
||||
&>li {
|
||||
margin-bottom: 2.6rem;
|
||||
}
|
||||
|
||||
li {
|
||||
>p{
|
||||
|
||||
@include custommq($min: 1200px, $max: 1650px) {
|
||||
max-width: 8rem;
|
||||
}
|
||||
|
||||
@include respond('tab-land') {
|
||||
max-width: 7rem;
|
||||
}
|
||||
|
||||
@include respond('tab-port') {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
@include respond('phone') {
|
||||
max-width: 7rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&::before {
|
||||
left: 20%;
|
||||
top: 6rem;
|
||||
|
||||
@at-root [direction="rtl"] #{&} {
|
||||
right: 22%;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
@include respond('phone') {
|
||||
left: 22%;
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-badge {
|
||||
left: 21.4%;
|
||||
height: 0.9rem;
|
||||
width: 0.9rem;
|
||||
background-color: $primary;
|
||||
|
||||
@at-root [direction="rtl"] #{&} {
|
||||
right: 19.2%;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
@include custommq($min: 1200px, $max: 1650px) {
|
||||
left: 22.4%;
|
||||
}
|
||||
|
||||
@include respond('tab-land') {
|
||||
left: 22.4%;
|
||||
}
|
||||
|
||||
@include respond('tab-port') {
|
||||
left: 21.7%;
|
||||
}
|
||||
|
||||
@include respond('phone-land') {
|
||||
left: 19.5%;
|
||||
}
|
||||
|
||||
@include respond('phone') {
|
||||
left: 21.4%;
|
||||
}
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
width: 1.9rem;
|
||||
height: 1.9rem;
|
||||
background-color: rgba($color: $primary, $alpha: .4);
|
||||
content: "";
|
||||
border-radius: 50%;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
}
|
||||
.timeline-panel {
|
||||
width: 70%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.timeline:before {
|
||||
top : 0;
|
||||
bottom : 0;
|
||||
position : absolute;
|
||||
content : " ";
|
||||
width : 2px;
|
||||
background-color: #ECEFF2;
|
||||
left : 50%;
|
||||
margin-left : -1.5px;
|
||||
}
|
||||
|
||||
.timeline > li {
|
||||
margin-bottom: 20px;
|
||||
position : relative;
|
||||
}
|
||||
|
||||
.timeline > li:after,
|
||||
.timeline > li:before {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
|
||||
.timeline > li:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.timeline > li:after,
|
||||
.timeline > li:before {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
|
||||
.timeline > li:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.timeline > li > .timeline-panel {
|
||||
width : 46%;
|
||||
float : left;
|
||||
// border : 1px solid #d4d4d4;
|
||||
border-radius : 2px;
|
||||
// padding : 20px;
|
||||
position : relative;
|
||||
// -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
|
||||
// box-shadow : 0 0 4px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.timeline > li > .timeline-badge {
|
||||
background-color: $l-bg;
|
||||
border: 1px solid $iron;
|
||||
border-radius : 50%;
|
||||
color : $dark;
|
||||
// font-size : 1.4em;
|
||||
height : 40px;
|
||||
left : 50%;
|
||||
line-height : 40px;
|
||||
margin-left : -13px;
|
||||
position : absolute;
|
||||
text-align : center;
|
||||
top : 30px;
|
||||
width : 40px;
|
||||
z-index : 1;
|
||||
transform: translate(-25%, -3rem);
|
||||
|
||||
@include media-breakpoint-up(sm){
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
}
|
||||
|
||||
// i{
|
||||
// color: $pale-sky;
|
||||
// }
|
||||
|
||||
|
||||
}
|
||||
|
||||
.timeline > li.timeline-inverted > .timeline-panel {
|
||||
float: right;
|
||||
|
||||
// @at-root [direction="rtl"] #{&} {
|
||||
// float: left;
|
||||
// }
|
||||
}
|
||||
|
||||
.timeline > li.timeline-inverted > .timeline-panel:before {
|
||||
border-left-width : 0;
|
||||
border-right-width: 15px;
|
||||
left : -15px;
|
||||
right : auto;
|
||||
}
|
||||
|
||||
.timeline > li.timeline-inverted > .timeline-panel:after {
|
||||
border-left-width : 0;
|
||||
border-right-width: 14px;
|
||||
left : -14px;
|
||||
right : auto;
|
||||
}
|
||||
|
||||
.timeline-title {
|
||||
margin-top: 0;
|
||||
color : inherit;
|
||||
}
|
||||
|
||||
.event_time {
|
||||
// color : $bc;
|
||||
font-size : 14px;
|
||||
// text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.event_vanue {
|
||||
// color : $bc;
|
||||
font-size : 14px;
|
||||
margin : 5px 0;
|
||||
// text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.timeline_img {
|
||||
height: 100px;
|
||||
width : 100px;
|
||||
}
|
||||
|
||||
.timeline-body > p,
|
||||
.timeline-body > ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
ul.timeline:before {
|
||||
left: 40px;
|
||||
}
|
||||
|
||||
ul.timeline > li > .timeline-panel {
|
||||
width: calc(100% - 90px);
|
||||
width: -webkit-calc(100% - 90px);
|
||||
}
|
||||
|
||||
ul.timeline > li > .timeline-badge {
|
||||
left: 28px;
|
||||
margin-left: 0;
|
||||
top : 16px;
|
||||
|
||||
// @include media-breakpoint-up(sm){
|
||||
// left: 15px;
|
||||
// }
|
||||
}
|
||||
|
||||
ul.timeline > li > .timeline-panel {
|
||||
float: right;
|
||||
}
|
||||
|
||||
ul.timeline > li > .timeline-panel:before {
|
||||
border-left-width : 0;
|
||||
border-right-width: 15px;
|
||||
left : -15px;
|
||||
right : auto;
|
||||
}
|
||||
|
||||
ul.timeline > li > .timeline-panel:after {
|
||||
border-left-width : 0;
|
||||
border-right-width: 14px;
|
||||
left : -14px;
|
||||
right : auto;
|
||||
}
|
||||
|
||||
.timeline_img {
|
||||
height: 30%;
|
||||
width : 30%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.timeline-timestamp {
|
||||
text-align: center;
|
||||
|
||||
.badge {
|
||||
padding: .8rem 2rem;
|
||||
border-radius: 50px;
|
||||
font-size: 0.8125rem;
|
||||
}
|
||||
}
|
||||
}
|
22
public/style/scss/pages/_pages.scss
Normal file
22
public/style/scss/pages/_pages.scss
Normal file
@ -0,0 +1,22 @@
|
||||
@import "./page-error";
|
||||
@import "./page-auth";
|
||||
@import "./page-pricing";
|
||||
@import "./page-timeline";
|
||||
@import "./page-order";
|
||||
@import "./workout-plan";
|
||||
@import "./review";
|
||||
@import "./workout-statistic";
|
||||
@import "./distance-map";
|
||||
@import "./food-menu";
|
||||
|
||||
//specific HTML pages scss
|
||||
@import "./homepage";
|
||||
@import "./ecom-product-detail";
|
||||
@import "./ecom-product-grid";
|
||||
@import "./ecom-product-list";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
95
public/style/scss/pages/_review.scss
Normal file
95
public/style/scss/pages/_review.scss
Normal file
@ -0,0 +1,95 @@
|
||||
.review-table {
|
||||
padding: 25px;
|
||||
box-shadow: none;
|
||||
border-radius: 0;
|
||||
border-bottom: 1px solid #eee;
|
||||
height: auto;
|
||||
margin-bottom: 0;
|
||||
.star-review i {
|
||||
font-size: 20px;
|
||||
}
|
||||
.media-body{
|
||||
p{
|
||||
color: #3e4954;
|
||||
font-size: 18px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
.disease {
|
||||
border-left: 1px solid $border-color;
|
||||
padding-left: 20px;
|
||||
}
|
||||
.media-footer {
|
||||
min-width: 500px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
@include respond ('laptop'){
|
||||
.media-footer{
|
||||
min-width: 273px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
@include respond ('tab-port'){
|
||||
.star-review i {
|
||||
font-size: 16px;
|
||||
}
|
||||
.custom-control {
|
||||
float: right;
|
||||
right:-20px;
|
||||
}
|
||||
.media{
|
||||
display: block !important;
|
||||
}
|
||||
.media-body{
|
||||
p {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
img {
|
||||
float: left;
|
||||
width: 80px;
|
||||
}
|
||||
.media-footer {
|
||||
margin-left: 0;
|
||||
margin-top: 25px;
|
||||
}
|
||||
.disease {
|
||||
border-left: 0;
|
||||
padding-left: 0;
|
||||
margin-right: 10px !important;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
@include respond ('phone'){
|
||||
.media-footer{
|
||||
flex-flow:wrap;
|
||||
.disease{
|
||||
margin-right:auto!important;
|
||||
}
|
||||
.edit{
|
||||
margin-left:0!important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//review-tab
|
||||
.review-tab{
|
||||
.nav-link{
|
||||
border-radius:0;
|
||||
font-weight:600;
|
||||
border-bottom:2px solid #D9D9D9;
|
||||
@include transitionMedium;
|
||||
&.active{
|
||||
background:transparent;
|
||||
color:$primary;
|
||||
@include transitionMedium;
|
||||
box-shadow:none;
|
||||
border-color:$primary;
|
||||
}
|
||||
@include respond ('phone'){
|
||||
padding: 10px 16px;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
}
|
206
public/style/scss/pages/_workout-plan.scss
Normal file
206
public/style/scss/pages/_workout-plan.scss
Normal file
@ -0,0 +1,206 @@
|
||||
.plan-list{
|
||||
.list-row {
|
||||
border-radius: 1.25rem;
|
||||
@include transitionMedium;
|
||||
.list-icon {
|
||||
height: 76px;
|
||||
min-width:76px;
|
||||
width: 76px;
|
||||
font-weight: 600;
|
||||
@include transitionMedium;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
border-radius: 1.25rem;
|
||||
@include respond ('phone-land'){
|
||||
height:60px;
|
||||
width:60px;
|
||||
min-width:60px;
|
||||
line-height:18px;
|
||||
p{
|
||||
font-size:18px!important;
|
||||
}
|
||||
span{
|
||||
font-size:12px!important;
|
||||
}
|
||||
}
|
||||
}
|
||||
.play-button{
|
||||
color:$primary;
|
||||
@include transitionMedium;
|
||||
background:$light;
|
||||
margin-left:auto;
|
||||
@include respond ('mid-desktop'){
|
||||
margin-left:0;
|
||||
margin-right:auto!important;
|
||||
}
|
||||
@include respond ('tab-land'){
|
||||
margin-left:auto;
|
||||
margin-right:1rem!important;
|
||||
}
|
||||
@include respond ('tab-port'){
|
||||
margin-left:0;
|
||||
margin-right:auto!important;
|
||||
}
|
||||
}
|
||||
.more-dropdown{
|
||||
margin-left:auto;
|
||||
@include respond ('tab-land'){
|
||||
margin-left:auto;
|
||||
}
|
||||
@include respond ('phone'){
|
||||
margin-left:auto;
|
||||
}
|
||||
}
|
||||
.more-button{
|
||||
height:56px;
|
||||
width:56px;
|
||||
display: block;
|
||||
border-radius:$radius;
|
||||
line-height:56px;
|
||||
@include transitionMedium;
|
||||
text-align:center;
|
||||
background:$light;
|
||||
@include respond ('laptop'){
|
||||
height:40px;
|
||||
width:40px;
|
||||
line-height:40px;
|
||||
svg{
|
||||
width: 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.activities{
|
||||
svg path,span{
|
||||
@include transitionMedium;
|
||||
}
|
||||
}
|
||||
.info {
|
||||
h4 a,span{
|
||||
@include transitionMedium;
|
||||
}
|
||||
@include respond ('phone-land'){
|
||||
h4{
|
||||
font-size:16px!important;
|
||||
}
|
||||
span{
|
||||
font-size:13px!important;
|
||||
}
|
||||
}
|
||||
}
|
||||
&:hover{
|
||||
background:$primary;
|
||||
.info{
|
||||
h4 a,span{
|
||||
color:$white!important;
|
||||
}
|
||||
}
|
||||
.play-button{
|
||||
color:$white;
|
||||
background:$warning;
|
||||
}
|
||||
.more-button{
|
||||
background:rgba($white,0.3);
|
||||
svg path{
|
||||
fill:$white;
|
||||
}
|
||||
}
|
||||
.activities{
|
||||
svg path{
|
||||
fill:$white;
|
||||
}
|
||||
span{
|
||||
color:$white!important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.event-calender{
|
||||
.bootstrap-datetimepicker-widget table th.picker-switch {
|
||||
width: 145px;
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: $black;
|
||||
}
|
||||
.bootstrap-datetimepicker-widget table th {
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
width: 20px;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.bootstrap-datetimepicker-widget table td.day {
|
||||
height: 46px;
|
||||
line-height: 30px;
|
||||
width: 46px;
|
||||
color: $black;
|
||||
font-weight: 500;
|
||||
}
|
||||
.bootstrap-datetimepicker-widget .picker-switch td i {
|
||||
line-height: 2.5;
|
||||
height: 2.5em;
|
||||
width: 100%;
|
||||
display: none;
|
||||
}
|
||||
.datepicker table tr td.today{
|
||||
background:#EEEEEE!important;
|
||||
box-shadow:none;
|
||||
}
|
||||
|
||||
.datepicker table tr td.active.active{
|
||||
background:#EEEEEE!important;
|
||||
box-shadow:none;
|
||||
}
|
||||
.bootstrap-datetimepicker-widget table td.day:hover {
|
||||
box-shadow: none;
|
||||
border: 0;
|
||||
background: $warning!important;
|
||||
color:$white!important;
|
||||
}
|
||||
.bootstrap-datetimepicker-widget table td.today:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: -5px;
|
||||
border:3px solid $white;
|
||||
right: -5px;
|
||||
height: 17px;
|
||||
width: 17px;
|
||||
background: $primary;
|
||||
border-radius: 12px;
|
||||
}
|
||||
.bootstrap-datetimepicker-widget table td, .bootstrap-datetimepicker-widget table th{
|
||||
border-radius:10px;
|
||||
}
|
||||
.bootstrap-datetimepicker-widget table td.new {
|
||||
color: #dee2e6!important;
|
||||
}
|
||||
.bootstrap-datetimepicker-widget table thead tr:first-child th {
|
||||
cursor: pointer;
|
||||
padding: 30px 10px;
|
||||
}
|
||||
.bootstrap-datetimepicker-widget table td span.active{
|
||||
color:$primary;
|
||||
}
|
||||
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
|
||||
width: 50%;
|
||||
float: left;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
.date-icon{
|
||||
height:60px;
|
||||
width:60px;
|
||||
font-size:24px;
|
||||
line-height:60px;
|
||||
text-align:center;
|
||||
color:$primary;
|
||||
background:rgba($primary,0.2);
|
||||
border-radius:1.25rem;
|
||||
}
|
20
public/style/scss/pages/_workout-statistic.scss
Normal file
20
public/style/scss/pages/_workout-statistic.scss
Normal file
@ -0,0 +1,20 @@
|
||||
.man-chart {
|
||||
position: relative;
|
||||
svg {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
}
|
||||
.radialBar{
|
||||
p{
|
||||
position:relative;
|
||||
z-index:1;
|
||||
}
|
||||
#radialBar{
|
||||
@include respond ('tab-land'){
|
||||
margin-bottom:-40px;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user