.status__transit {
transition: 1s;
}
.status__transit:hover {
background-color: red;
transform: scale(1.5);
transition: 1s;
}
jQuery('.book_btn').on('click'
jQuery('.book_btn2').on('click'
.features-description img.first-arrow {
position: absolute;
left: 100%;
top: 5%;
}
.first-arrow {
position: absolute;
left: 100%;
top: 5%;
}
.css {
код десктоп
// тоесть выполняется всегда
}
@media (max-width: 1023px) {
.css {
код планшет
// выполняется если разрешение меньше 1023рх
}
}
@media (max-width: 767px) {
.css {
код мобила
// выполняется если разрешение меньше 767px
}
}
.content_block {
max-width: 1600px; - для адаптива! Чтоб скрола не было при меньшем размере браузера
width: 100%;
margin: 0 auto;
}
const a = 10;
const b = 2;
const c = 4;
function calc(first, last) {console.log(first + last);}
calc(a, b);
calc(a, c);
let parent = document.querySelector('.parent');
const spans = document.querySelectorAll(`span`);
parent.addEventListener('click', function (e) {
spans.forEach(el => {
console.log(e.target.contains(el));
});
});