restore composer.json, add mysqli extension
This commit is contained in:
223
resources/sass/layout/_footer.scss
Executable file
223
resources/sass/layout/_footer.scss
Executable file
@@ -0,0 +1,223 @@
|
||||
.footer {
|
||||
background-color: #efefef;
|
||||
padding: 30px 0 30px;
|
||||
&-top {
|
||||
.logo {
|
||||
@include mq("tablet", max) {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.phone {
|
||||
margin-left: 10px;
|
||||
@include mq("tablet", max) {
|
||||
margin-left: -20px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
i {
|
||||
margin-right: 10px;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
color: white;
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
@extend %c-c;
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
background-color: #5b5b5b;
|
||||
z-index: -2;
|
||||
@extend %tr02;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
span {
|
||||
text-decoration: underline;
|
||||
}
|
||||
i::after {
|
||||
background-color: $my-orange;
|
||||
}
|
||||
}
|
||||
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: rgb(1, 1, 1);
|
||||
line-height: 1.2;
|
||||
}
|
||||
.nav {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
&-item {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: rgb(0, 0, 0);
|
||||
line-height: 1.2;
|
||||
text-align: left;
|
||||
opacity: 1;
|
||||
padding: 0;
|
||||
// &:first-of-type {
|
||||
// margin-bottom: 20px;
|
||||
|
||||
// @include mq("tablet", max) {
|
||||
// margin-top: 20px;
|
||||
// margin-bottom: 10px;
|
||||
// font-size: 18px;
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
&-link {
|
||||
margin: 0;
|
||||
margin-bottom: 10px;
|
||||
padding: 0;
|
||||
font-size: 14px;
|
||||
opacity: 1;
|
||||
font-weight: 600;
|
||||
color: rgb(0, 0, 0);
|
||||
line-height: 1.2;
|
||||
text-align: left;
|
||||
display: block;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
color: $my-orange;
|
||||
}
|
||||
|
||||
@include mq("tablet", max) {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.socials {
|
||||
display: flex;
|
||||
// flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
@include mq("tablet-wide", max) {
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
a {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
&:not(:last-of-type) {
|
||||
// @include mq("tablet-wide", max) {
|
||||
margin-right: 25px;
|
||||
// }
|
||||
}
|
||||
i {
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
color: white;
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
@extend %c-c;
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
background-color: #5b5b5b;
|
||||
z-index: -2;
|
||||
@extend %tr02;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
span {
|
||||
text-decoration: underline;
|
||||
}
|
||||
i::after {
|
||||
background-color: $my-orange;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.copyright,
|
||||
.software-company {
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
color: rgb(0, 0, 0);
|
||||
|
||||
a {
|
||||
&:hover {
|
||||
color: $my-orange;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
@include mq("tablet", max) {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
// &-bottom {
|
||||
// margin-top: 20px;
|
||||
// @include mq("tablet", max) {
|
||||
// margin-top: 0;
|
||||
// }
|
||||
// .container {
|
||||
// display: flex;
|
||||
// justify-content: space-between;
|
||||
// align-items: center;
|
||||
|
||||
// @include mq("tablet", max) {
|
||||
// flex-direction: column;
|
||||
// text-align: center;
|
||||
// }
|
||||
// }
|
||||
|
||||
// padding: 15px 0;
|
||||
// border-top: 1px solid rgba(0, 0, 0, 0.102);
|
||||
|
||||
// }
|
||||
|
||||
.payments {
|
||||
p {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: rgb(0, 0, 0);
|
||||
text-align: left;
|
||||
line-height: 1;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
margin-bottom: 15px;
|
||||
|
||||
@include mq("tablet-wide", max) {
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
@include mq("tablet", max) {
|
||||
margin-bottom: 0;
|
||||
margin-top: 15px;
|
||||
}
|
||||
}
|
||||
&-item {
|
||||
height: 50px;
|
||||
width: 100px;
|
||||
}
|
||||
& > div {
|
||||
margin-top: -20px;
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
@include mq("tablet-wide", max) {
|
||||
margin-top: -40px;
|
||||
}
|
||||
@include mq("tablet", max) {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
5
resources/sass/layout/_header.scss
Executable file
5
resources/sass/layout/_header.scss
Executable file
@@ -0,0 +1,5 @@
|
||||
header {
|
||||
@include mq("tablet-wide", min) {
|
||||
margin-top: 6px;
|
||||
}
|
||||
}
|
||||
177
resources/sass/layout/_navigation.scss
Executable file
177
resources/sass/layout/_navigation.scss
Executable file
@@ -0,0 +1,177 @@
|
||||
.topbar {
|
||||
& > div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
&-top,
|
||||
&-bottom {
|
||||
.container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
|
||||
&-top {
|
||||
border-bottom: 1px solid #00000015;
|
||||
padding: 12px 0;
|
||||
@include mq("tablet-wide", max) {
|
||||
border-bottom-color: transparent;
|
||||
position: absolute;
|
||||
background-color: #fff;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 555;
|
||||
transition: 0.2s transform ease-out;
|
||||
transform: translateX(0px);
|
||||
left: -100%;
|
||||
width: 84%;
|
||||
padding-top: 18px;
|
||||
padding-bottom: 18px;
|
||||
&-active {
|
||||
transform: translateX(118%);
|
||||
}
|
||||
}
|
||||
.container {
|
||||
@include mq("tablet", max) {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
&__left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
@include mq("tablet", max) {
|
||||
width: 100%;
|
||||
padding: 0 15px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
top: 0;
|
||||
height: 65px;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.lang {
|
||||
font-size: 18px;
|
||||
|
||||
&-list {
|
||||
left: -6px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__right {
|
||||
a {
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
text-align: right;
|
||||
color: rgb(0, 0, 0);
|
||||
&:not(:last-of-type) {
|
||||
margin-right: 15px;
|
||||
|
||||
@include mq("tablet", max) {
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
color: $my-orange;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.just-call {
|
||||
i {
|
||||
color: #333 !important;
|
||||
&::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&-bottom {
|
||||
padding: 20px 0;
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.container {
|
||||
@include mq("tablet-wide", max) {
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
& > * {
|
||||
margin-right: 40px;
|
||||
}
|
||||
}
|
||||
@include mq("tablet", max) {
|
||||
& > * {
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
@include mq("phone-small", max) {
|
||||
& > * {
|
||||
margin-right: 3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sign-in {
|
||||
position: absolute;
|
||||
right: 40px;
|
||||
|
||||
img {
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
object-fit: contain;
|
||||
object-position: center;
|
||||
}
|
||||
}
|
||||
|
||||
&--bottom {
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
order: 11;
|
||||
margin-left: auto !important;
|
||||
margin-right: auto !important;
|
||||
position: absolute;
|
||||
z-index: 222;
|
||||
bottom: 0px;
|
||||
width: 84%;
|
||||
background: white;
|
||||
transition: 0.2s transform ease-out;
|
||||
transform: translateX(0px);
|
||||
left: -108%;
|
||||
&-active {
|
||||
transform: translateX(127%);
|
||||
}
|
||||
padding: 10px 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-toggler {
|
||||
@include mq("tablet-wide", min) {
|
||||
display: none;
|
||||
}
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
z-index: 122;
|
||||
transition: unset;
|
||||
// &-active {
|
||||
// top: 15px;
|
||||
// color: white;
|
||||
// .hamburger.is-active .hamburger-inner,
|
||||
// .hamburger.is-active .hamburger-inner::after,
|
||||
// .hamburger.is-active .hamburger-inner::before {
|
||||
// background-color: #fff;
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
||||
1229
resources/sass/layout/_sections.scss
Executable file
1229
resources/sass/layout/_sections.scss
Executable file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user