Может есть более легкий способ?
<div>
Рассчитаем стоимость обслуживания за 15 минут
</div>
div {
width: 250px;
height: 70px;
border-radius: 3px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
text-transform: uppercase;
font-size: 12px;
font-family: sans-serif;
padding: 5px 40px;
color: #fff;
background: #EBA146 no-repeat;
background-image:
radial-gradient(circle at center, #fff 0, #fff 46%, transparent 50%, transparent),
radial-gradient(circle at center, #fff 0, #fff 46%, transparent 50%, transparent),
radial-gradient(circle at center, #fff 0, #fff 46%, transparent 50%, transparent),
radial-gradient(circle at center, #fff 0, #fff 46%, transparent 50%, transparent),
linear-gradient(to right, #EBA146, #E17233);
background-position:
5px 5px,
calc(100% - 5px) 5px,
5px calc(100% - 5px),
calc(100% - 5px) calc(100% - 5px),
0 0;
background-size:
12px 12px,
12px 12px,
12px 12px,
12px 12px,
100% 100%;
}
const user = {name: 'Lander', age: 33};
with(user){
console.log(`Меня зовут ${name} и мой возраст ${age}`);
}
function initialFunc(someNumber) {
console.log(`initialFunc`, someNumber);
}
function foo() { // Замыкание
const someRatio = 3.14; // Причина создания замыкания
return function(someNumber){ // Обёртка, которая возвращается из замыкания
console.log(`wrapper`, someNumber); // Причина создания обёртки
initialFunc(someNumber * someRatio); // Вызов обёрнутой функции
}
}
foo()(42);
- в пустой (мёртвой) клетке, рядом с которой ровно три живые клетки, зарождается жизнь;
- если у живой клетки есть две или три живые соседки, то эта клетка продолжает жить; в противном случае, если соседей меньше двух или больше трёх, клетка умирает («от одиночества» или «от перенаселённости»)