Compare commits
23 Commits
f662641ca8
...
cosmopet--
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f6f7f585e1 | ||
|
|
ac54f2e381 | ||
|
|
6ead69e180 | ||
|
|
f3eedee26f | ||
|
|
ec60360db1 | ||
|
|
459a7ca86e | ||
|
|
be438d43d2 | ||
|
|
e3e8e3a187 | ||
|
|
27167fbec2 | ||
|
|
44d75a05e3 | ||
|
|
288265bca3 | ||
|
|
4047de51bf | ||
|
|
224c9254e8 | ||
|
|
767d40f248 | ||
|
|
01e6e988e5 | ||
|
|
c344dbcd43 | ||
|
|
fe7909e9cc | ||
|
|
4a3e166d19 | ||
|
|
a69899b2be | ||
|
|
2c3f548e83 | ||
|
|
c48ab5bc5f | ||
|
|
38a8eb5f1f | ||
|
|
615ec2ff91 |
@@ -13,6 +13,10 @@
|
|||||||
400 - Regular
|
400 - Regular
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
a{
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
/* Craftwork Grotesk */
|
/* Craftwork Grotesk */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Craftwork Grotesk";
|
font-family: "Craftwork Grotesk";
|
||||||
@@ -105,6 +109,7 @@
|
|||||||
--text-0: #000;
|
--text-0: #000;
|
||||||
--text-3: #333;
|
--text-3: #333;
|
||||||
--text-6: #666;
|
--text-6: #666;
|
||||||
|
--text-9: #999;
|
||||||
|
|
||||||
/* background */
|
/* background */
|
||||||
--background-white: #fff;
|
--background-white: #fff;
|
||||||
@@ -304,7 +309,7 @@ button{
|
|||||||
.main-menu__item:hover{
|
.main-menu__item:hover{
|
||||||
opacity: .8;
|
opacity: .8;
|
||||||
|
|
||||||
background: #f2f2f2;
|
background: var(--background-grey);
|
||||||
border-radius: 24px;
|
border-radius: 24px;
|
||||||
}
|
}
|
||||||
.header.white .main-menu__item:hover .main-menu__link{
|
.header.white .main-menu__item:hover .main-menu__link{
|
||||||
@@ -402,10 +407,19 @@ button{
|
|||||||
.form__input::placeholder{
|
.form__input::placeholder{
|
||||||
color: var(--text-grey);
|
color: var(--text-grey);
|
||||||
}
|
}
|
||||||
|
.form__input--grey{
|
||||||
|
border-color: var(--background-9);
|
||||||
|
}
|
||||||
.form__input--textarea{
|
.form__input--textarea{
|
||||||
height: 96px;
|
height: 96px;
|
||||||
resize: none;
|
resize: none;
|
||||||
}
|
}
|
||||||
|
.form__input--textarea-72{
|
||||||
|
height: 72px;
|
||||||
|
resize: none;
|
||||||
|
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
.form__input--center{
|
.form__input--center{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
@@ -694,7 +708,7 @@ button{
|
|||||||
.form-input-phone-list-item__code::before{
|
.form-input-phone-list-item__code::before{
|
||||||
content: '+';
|
content: '+';
|
||||||
}
|
}
|
||||||
.form-input__two{
|
.form-input__tabs{
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -704,24 +718,16 @@ button{
|
|||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.form-input-two__oval{
|
.form-input__tabs--white{
|
||||||
position: absolute;
|
padding: 3px;
|
||||||
top: 2px;
|
border: 1px solid var(--text-3);
|
||||||
left: 2px;
|
background: var(--white);
|
||||||
|
|
||||||
width: 50%;
|
|
||||||
height: calc(100% - 4px);
|
|
||||||
|
|
||||||
border-radius: 18px;
|
|
||||||
|
|
||||||
background: var(--background-white);
|
|
||||||
transition: left .2s ease-out;
|
|
||||||
}
|
}
|
||||||
.form-input-two__input:checked + .form-input-two__oval{
|
.form-input__tabs--white .form-input-tabs__button.active{
|
||||||
left: calc(50% - 2px);
|
background: var(--gradient-turquoise);
|
||||||
}
|
}
|
||||||
.form-input-two__button{
|
.form-input-tabs__button{
|
||||||
width: 50%;
|
width: 100%;
|
||||||
|
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
|
||||||
@@ -730,13 +736,18 @@ button{
|
|||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
line-height: 120%;
|
line-height: 120%;
|
||||||
color: var(--text-black);
|
color: var(--text-black);
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
background: none;
|
border-radius: 18px;
|
||||||
border: none;
|
|
||||||
|
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
|
transition: background-color .2s ease-out;
|
||||||
}
|
}
|
||||||
.form-input-two__input{
|
.form-input-tabs__button.active{
|
||||||
|
background-color: var(--background-white);
|
||||||
|
}
|
||||||
|
.form-input-tabs__input{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.form-input__radio{
|
.form-input__radio{
|
||||||
@@ -797,6 +808,21 @@ button{
|
|||||||
line-height: 120%;
|
line-height: 120%;
|
||||||
color: var(--text-dark);
|
color: var(--text-dark);
|
||||||
}
|
}
|
||||||
|
.form-input-radio__title.form-input-radio__title--no-span span{
|
||||||
|
color: var(--text-dark);
|
||||||
|
}
|
||||||
|
.form-input-radio__price{
|
||||||
|
margin-left: auto;
|
||||||
|
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 120%;
|
||||||
|
color: var(--text-black);
|
||||||
|
}
|
||||||
|
.form-input-radio__price::after{
|
||||||
|
content: ' ₽';
|
||||||
|
}
|
||||||
.form-input-radio__input{
|
.form-input-radio__input{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@@ -923,8 +949,61 @@ button{
|
|||||||
.form-input-list__item.active .form-input-list-item-box__content{
|
.form-input-list__item.active .form-input-list-item-box__content{
|
||||||
background: var(--gradient-blue);
|
background: var(--gradient-blue);
|
||||||
}
|
}
|
||||||
|
.remote-control__item{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.remote-control__item.active{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
/* .form-input-radio__ */
|
/* .form-input-radio__ */
|
||||||
|
|
||||||
|
.form-agreement{
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.form-agreement__check{
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.form-agreement__square{
|
||||||
|
width: 18px;
|
||||||
|
aspect-ratio: 1;
|
||||||
|
|
||||||
|
border-radius: 4px;
|
||||||
|
|
||||||
|
border: 2px solid var(--background-black);
|
||||||
|
}
|
||||||
|
.form-agreement__label{
|
||||||
|
margin-left: 8px;
|
||||||
|
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 120%;
|
||||||
|
color: var(--text-black);
|
||||||
|
}
|
||||||
|
.form-agreement__input{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.form-agreement__input:checked + .form-agreement__square{
|
||||||
|
border: none;
|
||||||
|
background: var(--gradient-blue);
|
||||||
|
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.form-agreement__input:checked + .form-agreement__square::after{
|
||||||
|
content: '';
|
||||||
|
|
||||||
|
position: absolute;
|
||||||
|
top: 1px;
|
||||||
|
left: 1px;
|
||||||
|
|
||||||
|
width: 16px;
|
||||||
|
aspect-ratio: 1;
|
||||||
|
|
||||||
|
background-image: url(../img/svg/main/arrow-selected-white.svg);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
/* form */
|
/* form */
|
||||||
|
|
||||||
|
|
||||||
@@ -1131,7 +1210,7 @@ button{
|
|||||||
border-radius: 48px;
|
border-radius: 48px;
|
||||||
}
|
}
|
||||||
.to-know{
|
.to-know{
|
||||||
width: 100%;
|
/* width: 100%; */
|
||||||
|
|
||||||
padding: 12px 24px 7px 24px;
|
padding: 12px 24px 7px 24px;
|
||||||
|
|
||||||
@@ -1143,6 +1222,12 @@ button{
|
|||||||
transition: opacity .2s ease-out;
|
transition: opacity .2s ease-out;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.to-know--start{
|
||||||
|
justify-content: start;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.to-know:hover{
|
.to-know:hover{
|
||||||
opacity: .8;
|
opacity: .8;
|
||||||
}
|
}
|
||||||
@@ -1544,7 +1629,7 @@ button{
|
|||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
border-top: 1px solid #f2f2f2;
|
border-top: 1px solid var(--background-grey);
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
@@ -1695,6 +1780,9 @@ button{
|
|||||||
.modal-form--width-584{
|
.modal-form--width-584{
|
||||||
width: 584px;
|
width: 584px;
|
||||||
}
|
}
|
||||||
|
.modal-form--cdek{
|
||||||
|
width: 836px;
|
||||||
|
}
|
||||||
.modal-form__close{
|
.modal-form__close{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 24px;
|
top: 24px;
|
||||||
@@ -1711,6 +1799,8 @@ button{
|
|||||||
background-position: center;
|
background-position: center;
|
||||||
|
|
||||||
transition: opacity .2s ease-out;
|
transition: opacity .2s ease-out;
|
||||||
|
|
||||||
|
z-index: 10;
|
||||||
}
|
}
|
||||||
.modal-form__close--white{
|
.modal-form__close--white{
|
||||||
background-image: url(../img/svg/main/white-x.svg);
|
background-image: url(../img/svg/main/white-x.svg);
|
||||||
@@ -1786,9 +1876,30 @@ button{
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
.modal-form-content__line--two-mobile{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
.modal-form-content__line--two-mobile .modal-form-content-line__element{
|
||||||
|
width: calc(50% - 12px);
|
||||||
|
}
|
||||||
.modal-form-content-line__element{
|
.modal-form-content-line__element{
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
.modal-form-content-line__element--arrow::after{
|
||||||
|
content: '';
|
||||||
|
|
||||||
|
position: absolute;
|
||||||
|
right: 16px;
|
||||||
|
bottom: 16px;
|
||||||
|
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
|
||||||
|
background-image: url(../img/svg/main/arrow-right-input.svg);
|
||||||
|
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
.modal-form-content__line--two .modal-form-content-line__element{
|
.modal-form-content__line--two .modal-form-content-line__element{
|
||||||
width: calc(50% - 12px);
|
width: calc(50% - 12px);
|
||||||
}
|
}
|
||||||
@@ -1853,6 +1964,9 @@ button{
|
|||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
.modal-map__control--delivery{
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
.modal-map-control__item{
|
.modal-map-control__item{
|
||||||
margin: 12px;
|
margin: 12px;
|
||||||
|
|
||||||
@@ -1896,6 +2010,9 @@ button{
|
|||||||
background: var(--background-9);
|
background: var(--background-9);
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
.modal-map-control-item__input{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
.modal-map-control-item-circle__content{
|
.modal-map-control-item-circle__content{
|
||||||
width: 16px;
|
width: 16px;
|
||||||
aspect-ratio: 1;
|
aspect-ratio: 1;
|
||||||
@@ -1954,7 +2071,7 @@ button{
|
|||||||
|
|
||||||
}
|
}
|
||||||
.modal-map-form__button{
|
.modal-map-form__button{
|
||||||
margin-top: 88px;
|
margin-top: 83px;
|
||||||
}
|
}
|
||||||
.modal-map-form__sub-button{
|
.modal-map-form__sub-button{
|
||||||
display: none;
|
display: none;
|
||||||
@@ -2149,3 +2266,96 @@ button{
|
|||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.subscription{
|
||||||
|
|
||||||
|
}
|
||||||
|
.subscription__item{
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
color: var(--text-black);
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 120%;
|
||||||
|
}
|
||||||
|
.subscription__item:nth-last-child(n + 2){
|
||||||
|
border-bottom: 1px solid var(--background-9);
|
||||||
|
}
|
||||||
|
.subscription__item span{
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
.subscription__item span small{
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.subscription__status{
|
||||||
|
color: var(--text-black);
|
||||||
|
}
|
||||||
|
.subscription__status--close{
|
||||||
|
color: var(--text-red);
|
||||||
|
}
|
||||||
|
.subscription__status--end{
|
||||||
|
color: var(--text-green);
|
||||||
|
}
|
||||||
|
.subscription__add{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.subscription__add-header{
|
||||||
|
}
|
||||||
|
.subscription__add-product{
|
||||||
|
align-items: start;
|
||||||
|
}
|
||||||
|
.subscription__add-product > *:not(:first-child){
|
||||||
|
padding-top: 14px;
|
||||||
|
}
|
||||||
|
.subscription__add-title{
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 600;
|
||||||
|
line-height: 133%;
|
||||||
|
}
|
||||||
|
.subscription__add-content{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs__buttons{
|
||||||
|
margin: -12px;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.tabs__content-wrap{
|
||||||
|
margin-top: 24px;
|
||||||
|
}
|
||||||
|
.tabs__content{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.tabs__content.active{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cabinet__control--column{
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cabinet__control--column > *:not(:first-child){
|
||||||
|
margin-top: 16px
|
||||||
|
}
|
||||||
|
|
||||||
|
.cabinet-card-order__payment{
|
||||||
|
|
||||||
|
}
|
||||||
|
.cabinet-card-order__sub-title{
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 600;
|
||||||
|
line-height: 143%;
|
||||||
|
color: var(--text-3);
|
||||||
|
}
|
||||||
|
.cabinet-card-order__date{
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 125%;
|
||||||
|
color: var(--text-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cabinet-card-order-payment__price span{
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
@@ -248,7 +248,6 @@
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 125%;
|
line-height: 125%;
|
||||||
color: #121212;
|
|
||||||
color: var(--text-black);
|
color: var(--text-black);
|
||||||
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@@ -892,7 +891,6 @@ main{
|
|||||||
font-size: 36px;
|
font-size: 36px;
|
||||||
line-height: 111%;
|
line-height: 111%;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: #121212;
|
|
||||||
}
|
}
|
||||||
.detail-block-price__price::after{
|
.detail-block-price__price::after{
|
||||||
content: '₽';
|
content: '₽';
|
||||||
@@ -1714,6 +1712,9 @@ main{
|
|||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
content: '₽';
|
content: '₽';
|
||||||
}
|
}
|
||||||
|
.cabinet-card-order-payment__price--add::after{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
.cabinet-card-order__content{
|
.cabinet-card-order__content{
|
||||||
margin-top: 24px;
|
margin-top: 24px;
|
||||||
}
|
}
|
||||||
@@ -1911,6 +1912,17 @@ main{
|
|||||||
.cabinet-card__order.active .cabinet-card-order__open-detail::after{
|
.cabinet-card__order.active .cabinet-card-order__open-detail::after{
|
||||||
transform: rotate(180deg);
|
transform: rotate(180deg);
|
||||||
}
|
}
|
||||||
|
.cabinet-card-order__payment-add{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: start;
|
||||||
|
}
|
||||||
|
.cabinet-card-order__sub-title{
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.cabinet-card-order__date{
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
/* .cabinet-card-no-orders__ */
|
/* .cabinet-card-no-orders__ */
|
||||||
.cabinet__subscription-pc{
|
.cabinet__subscription-pc{
|
||||||
}
|
}
|
||||||
@@ -1947,13 +1959,50 @@ main{
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.subscription{
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
.subscription__item{
|
||||||
|
padding: 12px 0;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
.subscription__item{
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
.subscription__add{
|
||||||
|
color: var(--text-black);
|
||||||
|
}
|
||||||
|
.subscription__add-header{
|
||||||
|
|
||||||
|
}
|
||||||
|
.subscription__add-title{
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
.subscription__add-content{
|
||||||
/* Стили для лептопов */
|
padding: 24px 0 12px 0;
|
||||||
/* @media only screen and (min-width: 992px) and (max-width: 1400px) {
|
}
|
||||||
|
.subscription__add-product{
|
||||||
} */
|
align-items: start;
|
||||||
|
}
|
||||||
|
.subscription__add-product > *:nth-child(3){
|
||||||
|
margin-left: auto;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.subscription__add .cabinet-card-order-detail-main-product-description__what {
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 125%;
|
||||||
|
}
|
||||||
|
.subscription__add .cabinet-card-order-detail-main-product-description__with-what {
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.subscription__add .cabinet-card-order-detail-main-product__count{
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 100%;
|
||||||
|
}
|
||||||
|
.subscription__add .cabinet-card-order-detail-main-product__price{
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 120%;
|
||||||
|
}
|
||||||
@@ -204,6 +204,9 @@
|
|||||||
.cabinet-card__content{
|
.cabinet-card__content{
|
||||||
padding-right: 19px;
|
padding-right: 19px;
|
||||||
}
|
}
|
||||||
|
.cabinet-card-order-main__date{
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
/* .cabinet-card__order.active */
|
/* .cabinet-card__order.active */
|
||||||
/* .cabinet-card__order.active */
|
/* .cabinet-card__order.active */
|
||||||
/* cabinet */
|
/* cabinet */
|
||||||
@@ -267,3 +270,67 @@
|
|||||||
}
|
}
|
||||||
/* cabinet */
|
/* cabinet */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 720px) {
|
||||||
|
.subscription__item{
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subscription__item > p:first-child{
|
||||||
|
font-size: 16px;
|
||||||
|
color: var(--text-6);
|
||||||
|
}
|
||||||
|
.subscription__item > p:last-child{
|
||||||
|
margin-top: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subscription__add-title {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subscription__add-product{
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subscription__add-product > *:not(:first-child){
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
.subscription__add-product .cabinet-card-order-detail-main-product__img{
|
||||||
|
width: 73px;
|
||||||
|
height: 66px;
|
||||||
|
}
|
||||||
|
.subscription__add-product .cabinet-card-order-detail-main-product-description__what{
|
||||||
|
font-size: 12px;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.subscription__add-product .cabinet-card-order-detail-main-product-description__with-what{
|
||||||
|
margin-top: 8px;
|
||||||
|
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.subscription__add-product .cabinet-card-order-detail-main-product__description {
|
||||||
|
width: calc(100% - 73px);
|
||||||
|
}
|
||||||
|
.subscription__add-product .cabinet-card-order-detail-main-product__content{
|
||||||
|
position: static;
|
||||||
|
margin-top: -10px;
|
||||||
|
margin-left: auto;
|
||||||
|
width: calc(100% - 73px);
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.subscription__add-product .cabinet-card-order-detail-main-product__count{
|
||||||
|
position: static;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.subscription__add-product .cabinet-card-order-detail-main-product__price{
|
||||||
|
position: static;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
241
assets/css/gp-style-order.css
Normal file
241
assets/css/gp-style-order.css
Normal file
@@ -0,0 +1,241 @@
|
|||||||
|
.order{
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.order__title{
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 117%;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: var(--text-black);
|
||||||
|
}
|
||||||
|
.order__contacts{
|
||||||
|
width: calc(50% - 0.5px);
|
||||||
|
|
||||||
|
padding: 24px;
|
||||||
|
|
||||||
|
border-right: 1px solid #121212;
|
||||||
|
}
|
||||||
|
.order-contacts__header{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.order-contacts__form{
|
||||||
|
margin-top: 24px;
|
||||||
|
}
|
||||||
|
.order-contacts__delivery{
|
||||||
|
margin-top: 47.5px;
|
||||||
|
|
||||||
|
padding-top: 48px;
|
||||||
|
|
||||||
|
border-top: 1px solid var(--background-grey);
|
||||||
|
}
|
||||||
|
|
||||||
|
.order-contacts-deliver__item{
|
||||||
|
margin-top: 24px;
|
||||||
|
}
|
||||||
|
.order-contacts-deliver__date{
|
||||||
|
padding: 8px;
|
||||||
|
|
||||||
|
border-radius: 24px;
|
||||||
|
|
||||||
|
background: var(--background-grey);
|
||||||
|
}
|
||||||
|
.order-contacts-deliver__date .form-input-radio__item{
|
||||||
|
margin-top: 24px;
|
||||||
|
}
|
||||||
|
.order-contacts-deliver__date .form-input-radio__item:first-child{
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
.order__your{
|
||||||
|
width: calc(50% - 0.5px);
|
||||||
|
|
||||||
|
padding: 24px 24px 24px 48px;
|
||||||
|
|
||||||
|
background: var(--background-grey);
|
||||||
|
}
|
||||||
|
.order-your__products{
|
||||||
|
margin-top: 48px;
|
||||||
|
}
|
||||||
|
.order-your-products__item{
|
||||||
|
margin-top: 16px;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
.order-your-products__left{
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.order-your-products__img{
|
||||||
|
width: 40px;
|
||||||
|
aspect-ratio: 1;
|
||||||
|
|
||||||
|
border-radius: 16px;
|
||||||
|
}
|
||||||
|
.order-your-products__content{
|
||||||
|
margin-left: 16px;
|
||||||
|
}
|
||||||
|
.order-your-products__name{
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 133%;
|
||||||
|
color: var(--text-black);
|
||||||
|
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.order-your-products__description{
|
||||||
|
margin-top: 8px;
|
||||||
|
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 133%;
|
||||||
|
color: var(--text-6);
|
||||||
|
}
|
||||||
|
.order-your-products__description span{
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
.order-your-products__description span::before{
|
||||||
|
margin-left: 3px;
|
||||||
|
|
||||||
|
content: 'x ';
|
||||||
|
}
|
||||||
|
.order-your-products__right{
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.order-your-products__count{
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 133%;
|
||||||
|
text-align: right;
|
||||||
|
color: var(--text-6);
|
||||||
|
}
|
||||||
|
.order-your-products__count::before{
|
||||||
|
content: 'x';
|
||||||
|
}
|
||||||
|
.order-your-products__price{
|
||||||
|
margin-left: 16px;
|
||||||
|
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 133%;
|
||||||
|
text-align: right;
|
||||||
|
color: var(--text-black);
|
||||||
|
}
|
||||||
|
.order-your-products__price::after{
|
||||||
|
content: 'Р';
|
||||||
|
}
|
||||||
|
.order-your__calculation{
|
||||||
|
margin-top: 48px;
|
||||||
|
}
|
||||||
|
.order-your__promo{
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.order-your-promo__button{
|
||||||
|
margin-left: 8px;
|
||||||
|
}
|
||||||
|
.order-your-calculation__item{
|
||||||
|
margin-top: 24px;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.order-your-calculation__title{
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 120%;
|
||||||
|
color: var(--text-black);
|
||||||
|
}
|
||||||
|
.order-your-calculation__value{
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 200%;
|
||||||
|
text-transform: uppercase;
|
||||||
|
text-align: right;
|
||||||
|
color: var(--text-black);
|
||||||
|
}
|
||||||
|
.order-your-calculation__value--price::after{
|
||||||
|
content: ' ₽';
|
||||||
|
}
|
||||||
|
.order-your-calculation__value--discount{
|
||||||
|
background: var(--gradient-red);
|
||||||
|
background-clip: text;
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
}
|
||||||
|
.order-your-calculation__value--discount::before{
|
||||||
|
content: '- ';
|
||||||
|
}
|
||||||
|
.order-your-calculation__description{
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 133%;
|
||||||
|
text-align: right;
|
||||||
|
color: var(--text-9);
|
||||||
|
}
|
||||||
|
.order-your-calculation__line{
|
||||||
|
margin-top: 23px;
|
||||||
|
border: 1px solid var(--background-9);
|
||||||
|
}
|
||||||
|
.order-your-calculation__result{
|
||||||
|
font-family: var(--font-family);
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 117%;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: var(--text-black);
|
||||||
|
}
|
||||||
|
.order-your-calculation__submit{
|
||||||
|
margin-top: 48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 1200px) {
|
||||||
|
.order{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.order__contacts, .order__your{
|
||||||
|
border: none;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 720px) {
|
||||||
|
.order__title{
|
||||||
|
max-width: 181px;
|
||||||
|
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 120%;
|
||||||
|
}
|
||||||
|
.order__your{
|
||||||
|
margin-top: 16px;
|
||||||
|
}
|
||||||
|
.order__contacts{
|
||||||
|
padding: 24px 16px;
|
||||||
|
}
|
||||||
|
.order__your{
|
||||||
|
padding: 40px 16px 9px 16px;
|
||||||
|
}
|
||||||
|
.order-your__promo{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.order-your-promo__button{
|
||||||
|
margin-left: 0;
|
||||||
|
margin-top: 24px;
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.order-your-products__content{
|
||||||
|
max-width: 164px;
|
||||||
|
}
|
||||||
|
.order-your-products__count, .order-your-products__price{
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -190,13 +190,13 @@ main{
|
|||||||
}
|
}
|
||||||
.cabinet__orders.active, .cabinet__profile.active{
|
.cabinet__orders.active, .cabinet__profile.active{
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
.cabinet__orders.hide, .cabinet__profile.hide{
|
.cabinet__orders.hide, .cabinet__profile.hide{
|
||||||
position: static;
|
position: static;
|
||||||
display: block;
|
display: block;
|
||||||
pointer-events:auto;
|
pointer-events:auto;
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
.cabinet__subscription-pc{
|
.cabinet__subscription-pc{
|
||||||
display: none;
|
display: none;
|
||||||
@@ -209,6 +209,9 @@ main{
|
|||||||
.cabinet__orders .cabinet-card:nth-child(2){
|
.cabinet__orders .cabinet-card:nth-child(2){
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
.cabinet__orders--no-cab .cabinet-card:nth-child(2){
|
||||||
|
margin-top: 32px;
|
||||||
|
}
|
||||||
/* cabinet */
|
/* cabinet */
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -338,5 +341,8 @@ main{
|
|||||||
.cabinet-card__order.active .cabinet-card-order__open-detail{
|
.cabinet-card__order.active .cabinet-card-order__open-detail{
|
||||||
margin-top: 24px;
|
margin-top: 24px;
|
||||||
}
|
}
|
||||||
|
.cabinet-card-order__link{
|
||||||
|
margin-top: 144px;
|
||||||
|
}
|
||||||
/* cabinet */
|
/* cabinet */
|
||||||
}
|
}
|
||||||
5
assets/img/svg/main/arrow-right-input.svg
Normal file
5
assets/img/svg/main/arrow-right-input.svg
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M14 8.24268H3" stroke="#121212" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M14 8.24268L9.75736 12.4853" stroke="#121212" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M14 8.24268L9.75736 4.00003" stroke="#121212" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 458 B |
@@ -73,35 +73,35 @@ function checkPhone(input) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
inputTwo('.form-input__two', '.form-input-two__input')
|
inputTabs('.form-input__tabs', '.form-input-tabs__button');
|
||||||
|
inputTabs('.modal-map__control', '.modal-map-control__item');
|
||||||
|
|
||||||
function inputTwo(main, inputTwo) {
|
function inputTabs(main, button) {
|
||||||
let buttons = document.querySelectorAll(main);
|
let mains = document.querySelectorAll(main);
|
||||||
|
|
||||||
|
mains.forEach(main => {
|
||||||
|
let buttons = main.querySelectorAll(button);
|
||||||
|
|
||||||
buttons.forEach(button => {
|
buttons.forEach(button => {
|
||||||
let input = button.querySelector(inputTwo);
|
|
||||||
|
|
||||||
button.onclick = function () {
|
button.onclick = function () {
|
||||||
input.checked = (input.checked == false) ? true : false;
|
if (button.classList.contains('active')) {
|
||||||
|
return ;
|
||||||
|
}
|
||||||
|
|
||||||
if (button.dataset.content) {
|
main.querySelector('.active').classList.remove('active');
|
||||||
let content = button.dataset.content,
|
|
||||||
childrens = document.querySelector(`.${content}`).children;
|
|
||||||
|
|
||||||
Object.keys(childrens).forEach(blockId => {
|
button.classList.add('active');
|
||||||
let block = childrens[blockId];
|
|
||||||
|
|
||||||
if (block.classList.contains('active')) {
|
if (button.querySelector('input')){
|
||||||
block.classList.remove('active');
|
button.querySelector('input').click();
|
||||||
}else{
|
}
|
||||||
block.classList.add('active');
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
inputRadio('.form-input__radio', '.form-input-radio__item', '.form-input-radio__title', '.form-input-radio__input')
|
inputRadio('.form-input__radio', '.form-input-radio__item', '.form-input-radio__title', '.form-input-radio__input')
|
||||||
|
|
||||||
function inputRadio(main ,item, textClass, input) {
|
function inputRadio(main ,item, textClass, input) {
|
||||||
@@ -165,3 +165,122 @@ function listInputRadio(main ,item, textClass, input, content, block) {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
remoteControl('.form-input__remote-control', '.form-input-tabs__button');
|
||||||
|
remoteControl('.modal-map__control', '.modal-map-control__item');
|
||||||
|
|
||||||
|
function remoteControl(main, button) {
|
||||||
|
let mains = document.querySelectorAll(main);
|
||||||
|
|
||||||
|
mains.forEach(main => {
|
||||||
|
let subjectClass = main.dataset.content,
|
||||||
|
subject = document.querySelector(`.${subjectClass}`),
|
||||||
|
buttons = Array.from(main.querySelectorAll(button));
|
||||||
|
|
||||||
|
main.addEventListener('click', function (eventMain) {
|
||||||
|
setTimeout(() => {
|
||||||
|
let indexActive = buttons.findIndex((button, index) => {
|
||||||
|
if (button.classList.contains('active')) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if(subject.children[indexActive].classList.contains('active')){
|
||||||
|
return ;
|
||||||
|
}
|
||||||
|
|
||||||
|
subject.querySelector('.remote-control__item.active').classList.remove('active');
|
||||||
|
subject.children[indexActive].classList.add('active');
|
||||||
|
|
||||||
|
let mandatorys = subject.querySelectorAll('.mandatory');
|
||||||
|
|
||||||
|
mandatorys.forEach(mandatory => {
|
||||||
|
if (mandatory.required) {
|
||||||
|
mandatory.required = false;
|
||||||
|
}else{
|
||||||
|
mandatory.required = true;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}, 0);
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
formCheck('.modal-form__content', 'input[type=submit]');
|
||||||
|
formCheck('.modal-map__form', 'input[type=submit]');
|
||||||
|
|
||||||
|
function formCheck(form, submit) {
|
||||||
|
let forms = document.querySelectorAll(form);
|
||||||
|
|
||||||
|
forms.forEach(form => {
|
||||||
|
let thisSubmit = form.querySelector(submit);
|
||||||
|
|
||||||
|
thisSubmit.onclick = function () {
|
||||||
|
form.classList.add('check')
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
inputPhoneNoFlag('.no-flag');
|
||||||
|
|
||||||
|
function inputPhoneNoFlag(input){
|
||||||
|
let inputs = document.querySelectorAll(input);
|
||||||
|
|
||||||
|
inputs.forEach(input => {
|
||||||
|
let code = '+' + input.dataset.code;
|
||||||
|
|
||||||
|
input.onfocus = function () {
|
||||||
|
if (input.value == '') {
|
||||||
|
input.value = code;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
input.addEventListener('input', function(event) {
|
||||||
|
let text = event.target.value;
|
||||||
|
let length = text.length;
|
||||||
|
let newSymbol = event.data;
|
||||||
|
|
||||||
|
if (isNaN(event.data) || event.data == ' ') {
|
||||||
|
event.target.value = text.slice(0, -1);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (length == 3 || length == 7 || length == 11) {
|
||||||
|
if (newSymbol != null) {
|
||||||
|
event.target.value = text.slice(0, -1) + ' ' + newSymbol;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
inputCheck('.form-agreement__check');
|
||||||
|
|
||||||
|
function inputCheck(className) {
|
||||||
|
let checks = document.querySelectorAll(className);
|
||||||
|
|
||||||
|
checks.forEach(check => {
|
||||||
|
let square = check.querySelector('.form-agreement__square'),
|
||||||
|
input = check.querySelector('input');
|
||||||
|
|
||||||
|
square.onclick = function () {
|
||||||
|
input.click();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
inputRead('.input-read');
|
||||||
|
function inputRead(className) {
|
||||||
|
let inputs = document.querySelectorAll(className);
|
||||||
|
|
||||||
|
inputs.forEach(input => {
|
||||||
|
input.addEventListener("input", function (event) {
|
||||||
|
let text = event.target.value;
|
||||||
|
|
||||||
|
event.target.value = text.slice(0, -1);
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
67
assets/js/tabs.js
Normal file
67
assets/js/tabs.js
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
const rootSelectorTabs = '[data-js-tabs]';
|
||||||
|
|
||||||
|
class Tabs{
|
||||||
|
// элементы для поиска
|
||||||
|
selectors = {
|
||||||
|
root: rootSelectorTabs,
|
||||||
|
button: '[data-js-tabs-button]',
|
||||||
|
content: '[data-js-tabs-content]',
|
||||||
|
}
|
||||||
|
// класс отображения состояния
|
||||||
|
stateClasses = {
|
||||||
|
isActive: 'active',
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(rootElement){
|
||||||
|
this.rootElement = rootElement;
|
||||||
|
this.buttonElements = this.rootElement.querySelectorAll(this.selectors.button);
|
||||||
|
this.contentElements = this.rootElement.querySelectorAll(this.selectors.content);
|
||||||
|
this.state = {
|
||||||
|
activeMenuIndex: [...this.buttonElements]
|
||||||
|
.findIndex((buttonElement) => buttonElement.classList.contains(this.stateClasses.isActive)),
|
||||||
|
};
|
||||||
|
this.limitTabsIndex = this.buttonElements.length - 1;
|
||||||
|
this.bindEvents();
|
||||||
|
}
|
||||||
|
|
||||||
|
updateUI(){
|
||||||
|
const { activeMenuIndex } = this.state;
|
||||||
|
|
||||||
|
this.buttonElements.forEach((buttonElement, index) => {
|
||||||
|
const isActive = index === activeMenuIndex;
|
||||||
|
|
||||||
|
buttonElement.classList.toggle(this.stateClasses.isActive, isActive);
|
||||||
|
})
|
||||||
|
|
||||||
|
this.contentElements.forEach((contentElement, index) => {
|
||||||
|
const isActive = index === activeMenuIndex;
|
||||||
|
|
||||||
|
contentElement.classList.toggle(this.stateClasses.isActive, isActive);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
onButtonClick(buttonIndex){
|
||||||
|
this.state.activeMenuIndex = buttonIndex;
|
||||||
|
this.updateUI();
|
||||||
|
}
|
||||||
|
|
||||||
|
bindEvents(){
|
||||||
|
this.buttonElements.forEach((buttonElement, index) => {
|
||||||
|
buttonElement.addEventListener('click', () => this.onButtonClick(index))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class TabsCollection {
|
||||||
|
constructor(){
|
||||||
|
this.init();
|
||||||
|
}
|
||||||
|
|
||||||
|
init(){
|
||||||
|
document.querySelectorAll(rootSelectorTabs).forEach((element) => {
|
||||||
|
new Tabs(element);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default TabsCollection;
|
||||||
89
assets/js/toggle.js
Normal file
89
assets/js/toggle.js
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
const rootSelectorToggles = '[data-js-toggle]';
|
||||||
|
|
||||||
|
class Toggle{
|
||||||
|
// элементы для поиска
|
||||||
|
selectors = {
|
||||||
|
root: rootSelectorToggles,
|
||||||
|
button: '[data-js-toggle-button]',
|
||||||
|
wrapper: '[data-js-toggle-wrapper]',
|
||||||
|
content: '[data-js-toggle-content]',
|
||||||
|
}
|
||||||
|
// класс отображения состояния
|
||||||
|
stateClasses = {
|
||||||
|
isActive: 'active',
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(rootElement){
|
||||||
|
this.rootElement = rootElement;
|
||||||
|
this.buttonElements = this.rootElement.querySelectorAll(this.selectors.button);
|
||||||
|
this.wrapperElements = this.rootElement.querySelectorAll(this.selectors.wrapper);
|
||||||
|
this.contentElements = this.rootElement.querySelectorAll(this.selectors.content);
|
||||||
|
this.state = {
|
||||||
|
activeToggleIndex: [...this.buttonElements]
|
||||||
|
.findIndex((buttonElement) => buttonElement.classList.contains(this.stateClasses.isActive)),
|
||||||
|
};
|
||||||
|
this.bindEvents();
|
||||||
|
}
|
||||||
|
|
||||||
|
updateUI(newHeight){
|
||||||
|
const { activeToggleIndex } = this.state;
|
||||||
|
|
||||||
|
this.buttonElements.forEach((buttonElement, index) => {
|
||||||
|
const isActive = index === activeToggleIndex;
|
||||||
|
|
||||||
|
buttonElement.classList.toggle(this.stateClasses.isActive, isActive);
|
||||||
|
})
|
||||||
|
|
||||||
|
this.wrapperElements.forEach((wrapperElement, index) => {
|
||||||
|
const isActive = index === activeToggleIndex,
|
||||||
|
newHeight = this.contentElements[index].offsetHeight;
|
||||||
|
|
||||||
|
wrapperElement.classList.toggle(this.stateClasses.isActive, isActive);
|
||||||
|
|
||||||
|
if (isActive) {
|
||||||
|
wrapperElement.style.height = `${newHeight}px`;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
if (wrapperElement.classList.contains('active')) {
|
||||||
|
wrapperElement.style.height = `auto`;
|
||||||
|
}
|
||||||
|
}, 300);
|
||||||
|
}else{
|
||||||
|
wrapperElement.style.height = `${newHeight}px`;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
if (!wrapperElement.classList.contains('active')) {
|
||||||
|
wrapperElement.style.height = `${0}px`;
|
||||||
|
}
|
||||||
|
}, 10);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
onButtonClick(buttonIndex){
|
||||||
|
this.state.activeToggleIndex = (buttonIndex === this.state.activeToggleIndex) ? -1 : buttonIndex;
|
||||||
|
|
||||||
|
this.updateUI();
|
||||||
|
}
|
||||||
|
|
||||||
|
bindEvents(){
|
||||||
|
this.buttonElements.forEach((buttonElement, index) => {
|
||||||
|
buttonElement.addEventListener('click', () => this.onButtonClick(index))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class TogglesCollection{
|
||||||
|
constructor(){
|
||||||
|
this.init();
|
||||||
|
}
|
||||||
|
|
||||||
|
init(){
|
||||||
|
document.querySelectorAll(rootSelectorToggles).forEach((element) => {
|
||||||
|
new Toggle(element);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default TogglesCollection;
|
||||||
197
new.html
197
new.html
@@ -224,7 +224,204 @@
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<div class="form-input__tabs">
|
||||||
|
<label for="boy" class="form-input-tabs__button">
|
||||||
|
Мальчик
|
||||||
|
<input type="radio" ed="" name="floor" id="boy" class="form-input-tabs__input">
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<label for="girl" class="form-input-tabs__button active">
|
||||||
|
Девочка
|
||||||
|
<input type="radio" name="floor" id="girl" class="form-input-tabs__input">
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet__profile cabinet-content">
|
||||||
|
<div class="cabinet-card cabinet-card--green">
|
||||||
|
<div class="cabinet-card__content">
|
||||||
|
<div class="cabinet-card__element">
|
||||||
|
<p class="cabinet-card__text cabinet-card__text--grey">Имя и фамилия не указано</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card__element">
|
||||||
|
<p class="cabinet-card__label">Телефон:</p>
|
||||||
|
<p class="cabinet-card__text cabinet-card__text--grey">Не заполнено</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card__element">
|
||||||
|
<p class="cabinet-card__label">Почта:</p>
|
||||||
|
<p class="cabinet-card__text">example@example.com</p>
|
||||||
|
<!-- <p class="cabinet-card__status cabinet-card__status--chek">Почта подтверждена</p> -->
|
||||||
|
<p class="cabinet-card__status cabinet-card__status--cancelled">Почта не подтверждена</p>
|
||||||
|
<button class="cabinet-card__confirm">
|
||||||
|
Подтвердить
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card__element">
|
||||||
|
<p class="cabinet-card__label">Связанные аккаунты:</p>
|
||||||
|
<div class="cabinet-card__block-accounts">
|
||||||
|
<div class="cabinet-card__account">
|
||||||
|
<img src="assets/img/svg/main/google-white.svg" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="cabinet-card__account">
|
||||||
|
<img src="assets/img/svg/main/vk-white.svg" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="cabinet-card__account">
|
||||||
|
<img src="assets/img/svg/main/ya-white.svg" alt="">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card__element">
|
||||||
|
<div class="cabinet-card__block-buttons">
|
||||||
|
<button class="cabinet-card__button form-open" data-form="form-data">
|
||||||
|
Изменить
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button class="cabinet-card__button">
|
||||||
|
Выйти
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card cabinet-card--green">
|
||||||
|
<div class="cabinet-card__content">
|
||||||
|
<div class="cabinet-card__pet">
|
||||||
|
<div class="cabinet-card-pet__icon">
|
||||||
|
<div class="cabinet-card-pet-icon__content">
|
||||||
|
<img src="assets/img/pet/mini-dog.png" alt="">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="cabinet-card-pet__name">Барон</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card__element">
|
||||||
|
<p class="cabinet-card__label">Порода:</p>
|
||||||
|
<p class="cabinet-card__text">Немецкая овчарка</p>
|
||||||
|
</div>
|
||||||
|
<div class="cabinet-card__element">
|
||||||
|
<p class="cabinet-card__label">Вес:</p>
|
||||||
|
<p class="cabinet-card__text">от 25 до 40 кг</p>
|
||||||
|
</div>
|
||||||
|
<div class="cabinet-card__element">
|
||||||
|
<p class="cabinet-card__label">Возраст:</p>
|
||||||
|
<p class="cabinet-card__text">3 года</p>
|
||||||
|
</div>
|
||||||
|
<div class="cabinet-card__element">
|
||||||
|
<p class="cabinet-card__label">Активность:</p>
|
||||||
|
<p class="cabinet-card__text">Активный</p>
|
||||||
|
</div>
|
||||||
|
<div class="cabinet-card__element">
|
||||||
|
<button class="cabinet-card__button">
|
||||||
|
Изменить
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card cabinet-card--green">
|
||||||
|
<div class="cabinet-card__content">
|
||||||
|
<button class="cabinet-card__block-add-pets form-open" data-form="form-pet">
|
||||||
|
<div class="cabinet-card-add-pets__circle">
|
||||||
|
<img src="assets/img/svg/main/plus-grey.svg" alt="">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="cabinet-card-add-pets__text">
|
||||||
|
Добавить питомца
|
||||||
|
</p>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card cabinet-card--grey">
|
||||||
|
<div class="cabinet-card__content">
|
||||||
|
<div class="cabinet-card__order">
|
||||||
|
<div class="cabinet-card-order__header">
|
||||||
|
<div class="cabinet-card-order__main">
|
||||||
|
<p class="cabinet-card-order-main__date">Заказ от 06.09.2024</p>
|
||||||
|
<p class="cabinet-card-order-main__number">763276427364</p>
|
||||||
|
</div>
|
||||||
|
<div class="cabinet-card-order__payment">
|
||||||
|
<p class="cabinet-card-order-payment__title">Оплачено:</p>
|
||||||
|
<p class="cabinet-card-order-payment__price">8960</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card-order__content">
|
||||||
|
<div class="cabinet-card-order__status">
|
||||||
|
<p class="cabinet-card-order-status__title">Статус:</p>
|
||||||
|
<p class="cabinet-card-order-status__pointer cabinet-card-order-status__pointer--grey">Доставлен</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card-order__block-detail">
|
||||||
|
<div class="cabinet-card-order__detail">
|
||||||
|
<div class="cabinet-card-order-detail__address">
|
||||||
|
<p class="cabinet-card-order-detail-address__title">Адрес доставки: </p>
|
||||||
|
<p class="cabinet-card-order-detail-address__text">Постомат: г.Москва, Каланчевская набережная, д.16</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card-order-detail__main">
|
||||||
|
<div class="cabinet-card-order-detail-main__products">
|
||||||
|
<div class="cabinet-card-order-detail-main__product">
|
||||||
|
<img src="assets/img/product/mini-card.png" alt="" class="cabinet-card-order-detail-main-product__img">
|
||||||
|
|
||||||
|
<div class="cabinet-card-order-detail-main-product__content">
|
||||||
|
<div class="cabinet-card-order-detail-main-product__description">
|
||||||
|
<p class="cabinet-card-order-detail-main-product-description__what">Сухой корм, для крупных и средних пород </p>
|
||||||
|
<p class="cabinet-card-order-detail-main-product-description__with-what">Индейка, 2 кг</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="cabinet-card-order-detail-main-product__count">3</p>
|
||||||
|
|
||||||
|
<p class="cabinet-card-order-detail-main-product__price">10280</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cabinet-card-order-detail-main__product">
|
||||||
|
<img src="assets/img/product/mini-card.png" alt="" class="cabinet-card-order-detail-main-product__img">
|
||||||
|
|
||||||
|
<div class="cabinet-card-order-detail-main-product__content">
|
||||||
|
<div class="cabinet-card-order-detail-main-product__description">
|
||||||
|
<p class="cabinet-card-order-detail-main-product-description__what">Сухой корм, для крупных и средних пород </p>
|
||||||
|
<p class="cabinet-card-order-detail-main-product-description__with-what">Индейка, 2 кг</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="cabinet-card-order-detail-main-product__count">3</p>
|
||||||
|
|
||||||
|
<p class="cabinet-card-order-detail-main-product__price">10280</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card-order-detail-main__links">
|
||||||
|
<a href="#" class="cabinet-card__button cabinet-card-order-detail-main__link">
|
||||||
|
Электронный чек
|
||||||
|
</a>
|
||||||
|
<button class="cabinet-card__button cabinet-card-order-detail-main__link">
|
||||||
|
Отследить заказ
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button class="cabinet-card-order__open-detail">Детали заказа</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cabinet-card-order__detail-short">
|
||||||
|
<img src="assets/img/product/mini-card.png" alt="" class="cabinet-card-order-detail-short__item">
|
||||||
|
<img src="assets/img/product/mini-card.png" alt="" class="cabinet-card-order-detail-short__item">
|
||||||
|
<img src="assets/img/product/mini-card.png" alt="" class="cabinet-card-order-detail-short__item">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<div class="footer__wrapper wrapper">
|
<div class="footer__wrapper wrapper">
|
||||||
|
|||||||
643
order.html
Normal file
643
order.html
Normal file
File diff suppressed because one or more lines are too long
@@ -11,6 +11,7 @@
|
|||||||
<!-- Базовые стили -->
|
<!-- Базовые стили -->
|
||||||
<link rel="stylesheet" href="assets/css/gp-style-core.css?v=1.0">
|
<link rel="stylesheet" href="assets/css/gp-style-core.css?v=1.0">
|
||||||
<link rel="stylesheet" href="assets/css/gp-style-desktop.css?v=1.0">
|
<link rel="stylesheet" href="assets/css/gp-style-desktop.css?v=1.0">
|
||||||
|
<link rel="stylesheet" href="assets/css/gp-style-order.css?v=1.0">
|
||||||
<!-- Адаптив -->
|
<!-- Адаптив -->
|
||||||
<link rel="stylesheet" media="screen and (min-width: 1400px)" href="assets/css/gp-style-ultra.css?v=1.0">
|
<link rel="stylesheet" media="screen and (min-width: 1400px)" href="assets/css/gp-style-ultra.css?v=1.0">
|
||||||
<link rel="stylesheet" media="screen and (max-width: 1200px)" href="assets/css/gp-style-tablet.css">
|
<link rel="stylesheet" media="screen and (max-width: 1200px)" href="assets/css/gp-style-tablet.css">
|
||||||
@@ -571,11 +572,11 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="cabinet-card__download">
|
<!-- <div class="cabinet-card__download">
|
||||||
<button class="cabinet-card__button">
|
<button class="cabinet-card__button">
|
||||||
Показать ещё
|
Показать ещё
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
@@ -721,7 +722,7 @@
|
|||||||
<button class="modal-form__close"></button>
|
<button class="modal-form__close"></button>
|
||||||
<p class="modal-form__title">Изменить мои данные</p>
|
<p class="modal-form__title">Изменить мои данные</p>
|
||||||
|
|
||||||
<form class="modal-form__content check" method="post" action="/send-telegram.php">
|
<form class="modal-form__content " method="post" action="/send-telegram.php">
|
||||||
<div class="modal-form-content__line modal-form-content__line--two">
|
<div class="modal-form-content__line modal-form-content__line--two">
|
||||||
<div class="modal-form-content-line__element">
|
<div class="modal-form-content-line__element">
|
||||||
<label for="firstname" class="label-name">Имя</label>
|
<label for="firstname" class="label-name">Имя</label>
|
||||||
@@ -798,15 +799,19 @@
|
|||||||
<button class="modal-form__close"></button>
|
<button class="modal-form__close"></button>
|
||||||
<p class="modal-form__title">Добавить питомца</p>
|
<p class="modal-form__title">Добавить питомца</p>
|
||||||
|
|
||||||
<form class="modal-form__content check" method="post" action="/send-telegram.php">
|
<form class="modal-form__content " method="post" action="/send-telegram.php">
|
||||||
<div class="modal-form-content__line">
|
<div class="modal-form-content__line">
|
||||||
<label for="" class="label-name">Вид животного</label>
|
<label for="" class="label-name">Вид животного</label>
|
||||||
<div class="form-input__two">
|
<div class="form-input__tabs">
|
||||||
<input type="radio" class="form-input-two__input">
|
<label for="cat" class="form-input-tabs__button active">
|
||||||
<div class="form-input-two__oval"></div>
|
Кошка
|
||||||
|
<input type="radio" ed name="pet" id="cat" class="form-input-tabs__input">
|
||||||
|
</label>
|
||||||
|
|
||||||
<button class="form-input-two__button">Кошка</button>
|
<label for="dog" class="form-input-tabs__button">
|
||||||
<button class="form-input-two__button ">Собака</button>
|
Собака
|
||||||
|
<input type="radio" name="pet" id="dog" class="form-input-tabs__input">
|
||||||
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -828,13 +833,17 @@
|
|||||||
|
|
||||||
<div class="modal-form-content__line">
|
<div class="modal-form-content__line">
|
||||||
<label for="" class="label-name">Пол вашего питомца</label>
|
<label for="" class="label-name">Пол вашего питомца</label>
|
||||||
<div class="form-input__two">
|
|
||||||
<input type="radio" class="form-input-two__input">
|
|
||||||
<div class="form-input-two__oval"></div>
|
|
||||||
|
|
||||||
<button class="form-input-two__button">Мальчик</button>
|
<div class="form-input__tabs">
|
||||||
<button class="form-input-two__button ">Девочка</button>
|
<label for="boy" class="form-input-tabs__button active">
|
||||||
|
Мальчик
|
||||||
|
<input type="radio" ed name="floor" id="boy" class="form-input-tabs__input">
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<label for="girl" class="form-input-tabs__button">
|
||||||
|
Девочка
|
||||||
|
<input type="radio" name="floor" id="girl" class="form-input-tabs__input">
|
||||||
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -944,18 +953,21 @@
|
|||||||
|
|
||||||
<div class="modal-form-content__line">
|
<div class="modal-form-content__line">
|
||||||
<label for="" class="label-name">Возраст питомца</label>
|
<label for="" class="label-name">Возраст питомца</label>
|
||||||
<div class="form-input__two" data-content="modal__age">
|
<div class="form-input__tabs form-input__remote-control" data-content="modal__age">
|
||||||
<input type="radio" class="form-input-two__input">
|
<label for="exemplary" class="form-input-tabs__button active">
|
||||||
|
Примерный
|
||||||
|
<input type="radio" ed name="weight" id="exemplary" class="form-input-tabs__input">
|
||||||
|
</label>
|
||||||
|
|
||||||
<div class="form-input-two__oval"></div>
|
<label for="accurate" class="form-input-tabs__button">
|
||||||
|
Точный
|
||||||
<button class="form-input-two__button">Примерный</button>
|
<input type="radio" name="weight" id="accurate" class="form-input-tabs__input">
|
||||||
<button class="form-input-two__button ">Точный</button>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal__age">
|
<div class="modal__age">
|
||||||
<div class="form-input__radio active">
|
<div class="form-input__radio remote-control__item active">
|
||||||
<div class="form-input-radio__item active">
|
<div class="form-input-radio__item active">
|
||||||
<div class="form-input-radio__circle">
|
<div class="form-input-radio__circle">
|
||||||
<div class="form-input-radio-circle__content"></div>
|
<div class="form-input-radio-circle__content"></div>
|
||||||
@@ -987,7 +999,7 @@
|
|||||||
<input type="text" value="Малыш (от 0 до 1 года)" class="form-input-radio__input">
|
<input type="text" value="Малыш (от 0 до 1 года)" class="form-input-radio__input">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal-form-content__line modal-form-content__line--three modal-form-content__line--margin-top-16">
|
<div class="modal-form-content__line remote-control__item modal-form-content__line--three modal-form-content__line--margin-top-16">
|
||||||
<div class="modal-form-content-line__element">
|
<div class="modal-form-content-line__element">
|
||||||
<label for="firstname" class="label-name">День</label>
|
<label for="firstname" class="label-name">День</label>
|
||||||
<input id="firstname" class="form__input form__input--center" pattern="[0-9]{2}" maxlength="2" type="text" name="name" placeholder="ДД" >
|
<input id="firstname" class="form__input form__input--center" pattern="[0-9]{2}" maxlength="2" type="text" name="name" placeholder="ДД" >
|
||||||
@@ -1046,7 +1058,7 @@
|
|||||||
<p class="modal-form__title">Добавить адрес</p>
|
<p class="modal-form__title">Добавить адрес</p>
|
||||||
<button class="modal-form__close"></button>
|
<button class="modal-form__close"></button>
|
||||||
|
|
||||||
<div class="modal-map__control">
|
<div class="modal-map__control"data-content="modal-map__address">
|
||||||
<button class="modal-map-control__item">
|
<button class="modal-map-control__item">
|
||||||
<div class="modal-map-control-item__content">
|
<div class="modal-map-control-item__content">
|
||||||
<div class="modal-map-control-item__header">
|
<div class="modal-map-control-item__header">
|
||||||
@@ -1078,7 +1090,10 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form action="/send-telegram.php" method="post" class="modal-map__form">
|
<div class="modal-map__address">
|
||||||
|
<div class="remote-control__item">
|
||||||
|
</div>
|
||||||
|
<form action="/send-telegram.php" method="post" class="modal-map__form remote-control__item active">
|
||||||
<div class="modal-map-form__hidden">
|
<div class="modal-map-form__hidden">
|
||||||
<div class="modal-form-content__line">
|
<div class="modal-form-content__line">
|
||||||
<div class="modal-form-content-line__element">
|
<div class="modal-form-content-line__element">
|
||||||
@@ -1120,10 +1135,11 @@
|
|||||||
<div class="modal-form__buttons modal-form__buttons--two modal-map-form__button">
|
<div class="modal-form__buttons modal-form__buttons--two modal-map-form__button">
|
||||||
<input class="button button--gradient button--high button--filter " type="submit" value="Сохранить">
|
<input class="button button--gradient button--high button--filter " type="submit" value="Сохранить">
|
||||||
|
|
||||||
<input type="reset" class="button button--white open-overlay button--high Добавить адрес" value="Отмена">
|
<input type="reset" class="button button--white open-overlay button--high modal-form__button-close" value="Отмена">
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="modal-map__right">
|
<div class="modal-map__right">
|
||||||
<div class="modal-map__map" style="position:relative;overflow:hidden;"><a href="https://yandex.ru/maps/213/moscow/?utm_medium=mapframe&utm_source=maps" style="color:#eee;font-size:12px;position:absolute;top:0px;">Москва</a><a href="https://yandex.ru/maps/213/moscow/?ll=37.710230%2C55.812249&mode=whatshere&utm_medium=mapframe&utm_source=maps&whatshere%5Bpoint%5D=37.622787%2C55.774846&whatshere%5Bzoom%5D=6.31&z=12.54" style="color:#eee;font-size:12px;position:absolute;top:14px;">Яндекс Карты — транспорт, навигация, поиск мест</a><iframe src="https://yandex.ru/map-widget/v1/?ll=37.710230%2C55.812249&mode=whatshere&whatshere%5Bpoint%5D=37.622787%2C55.774846&whatshere%5Bzoom%5D=6.31&z=12.54" width="560" height="400" frameborder="1" allowfullscreen="true" style="position:relative;"></iframe></div>
|
<div class="modal-map__map" style="position:relative;overflow:hidden;"><a href="https://yandex.ru/maps/213/moscow/?utm_medium=mapframe&utm_source=maps" style="color:#eee;font-size:12px;position:absolute;top:0px;">Москва</a><a href="https://yandex.ru/maps/213/moscow/?ll=37.710230%2C55.812249&mode=whatshere&utm_medium=mapframe&utm_source=maps&whatshere%5Bpoint%5D=37.622787%2C55.774846&whatshere%5Bzoom%5D=6.31&z=12.54" style="color:#eee;font-size:12px;position:absolute;top:14px;">Яндекс Карты — транспорт, навигация, поиск мест</a><iframe src="https://yandex.ru/map-widget/v1/?ll=37.710230%2C55.812249&mode=whatshere&whatshere%5Bpoint%5D=37.622787%2C55.774846&whatshere%5Bzoom%5D=6.31&z=12.54" width="560" height="400" frameborder="1" allowfullscreen="true" style="position:relative;"></iframe></div>
|
||||||
|
|||||||
703
subscription-first.html
Normal file
703
subscription-first.html
Normal file
File diff suppressed because one or more lines are too long
756
subscription-last.html
Normal file
756
subscription-last.html
Normal file
File diff suppressed because one or more lines are too long
673
subscription-order.html
Normal file
673
subscription-order.html
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user