Merge remote-tracking branch 'origin/main'
This commit is contained in:
@@ -955,7 +955,7 @@ body.n_scroll{
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: center;
|
justify-content: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.how_dev_widget{
|
.how_dev_widget{
|
||||||
|
|||||||
@@ -297,6 +297,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 800px) {
|
@media (max-width: 800px) {
|
||||||
|
.how_dev_container_widgets {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
.mobile_switchers_f_projects{
|
.mobile_switchers_f_projects{
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
@@ -466,6 +472,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 700px) {
|
@media (max-width: 700px) {
|
||||||
|
|
||||||
.flex_container_footer{
|
.flex_container_footer{
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: right;
|
justify-content: right;
|
||||||
@@ -508,6 +515,22 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
.container_content_features_block_item{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.img_item_container_functional_features{
|
||||||
|
height: unset;
|
||||||
|
}
|
||||||
|
.img_item_functional_features{
|
||||||
|
object-fit: unset;
|
||||||
|
object-position: unset;
|
||||||
|
height: unset;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.description_item_features_container{
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ function getInfoAboutUser (){
|
|||||||
if (screen.width <= 800){
|
if (screen.width <= 800){
|
||||||
user_type = 'mobile'
|
user_type = 'mobile'
|
||||||
} else if (screen.width > 1024) {
|
} else if (screen.width > 1024) {
|
||||||
user_type = 'desktop'
|
user_type = 'desktop'
|
||||||
} else if (screen.width >= 800 && screen.width <= 1024) {
|
} else if (screen.width >= 800 && screen.width <= 1024) {
|
||||||
user_type = 'laptop'
|
user_type = 'laptop'
|
||||||
}
|
}
|
||||||
@@ -391,7 +391,7 @@ function changeSlideProject (el,type) {
|
|||||||
// go to download plugin
|
// go to download plugin
|
||||||
function redirectToDownloadPlugin () {
|
function redirectToDownloadPlugin () {
|
||||||
let lang = document.querySelector(".name_language").innerHTML
|
let lang = document.querySelector(".name_language").innerHTML
|
||||||
if (getInfoAboutUser()[0] === 'mobile'){
|
if (getInfoAboutUser()[0] === 'mobile' || getInfoAboutUser()[0] === 'laptop'){
|
||||||
lang = document.querySelector(".name_language.curtain").innerHTML
|
lang = document.querySelector(".name_language.curtain").innerHTML
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user