<div id="root"></div>
/**
* Credit
* counter desgin is from dribbble (https://dribbble.com/shots/5539678-Stepper-VI)
* chevron icons are from font-awesome (https://fontawesome.com/icons/chevron-down?style=solid)
**/
html,
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
background-color: #10375c;
display: flex;
align-items: center;
justify-content: center;
}
.container {
display: flex;
align-items: center;
flex-direction: column;
}
.number {
font-size: 72px;
color: #fbf5f5;
font-family: Verdana;
line-height: 1.75em;
text-align: center;
user-select: none;
}
.chevron {
background: transparent center center;
background-repeat: no-repeat;
cursor: pointer;
width: 70px;
height: 70px;
transition: background-image 0.3s;
}
.chevron-up {
background-image: url("data:image/svg+xml, %3Csvg aria-hidden='true' focusable='false' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23f6909c' d='M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z'%3E%3C/path%3E%3C/svg%3E");
}
.chevron-up:hover {
background-image: url("data:image/svg+xml, %3Csvg aria-hidden='true' focusable='false' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23f5b7b7' d='M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z'%3E%3C/path%3E%3C/svg%3E");
}
.chevron-down {
background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23f6909c' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'%3E%3C/path%3E%3C/svg%3E");
}
.chevron-down:hover {
background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23f5b7b7' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'%3E%3C/path%3E%3C/svg%3E");
}
View Compiled
const rootNode = document.getElementById('root');
const root = ReactDOM.createRoot(rootNode);
const { useState } = React;
const shadow = {
boxShadow: 'rgb(20,76,128) 0 0 10px 10px',
padding: 20
}
const Counter = () => {
const [ count, setCount ] = useState(5);
const handleClick = (type) => {
return () => {
return setCount ( type === 'increment' ? count + 1 : count - 1)
}
}
return (
<div className="container" style={shadow}>
<div
className="chevron chevron-up"
style={{
visibility: count >= 9 && 'hidden'
}}
onClick={handleClick('increment')}
/>
<div className="number">{count}</div>
{
count > 0 && (
<div
className="chevron chevron-down"
onClick={handleClick('decrement')}
/>
)
}
</div>
)
}
const counters = Array.from({length:4})
root.render(
<div style={{ display: 'flex', justifyContent: 'center'}}>
{counters.map((_, index)=>(
<Counter key={index} />
))}
</div>
);
View Compiled
This Pen doesn't use any external CSS resources.