body { display: flex; align-items: center; flex-direction: column; background-color: #2F4F4F; /* Dark Slate Gray */ margin: 0; font-family: 'Nunito', sans-serif; } h1 { font-family: 'Nunito', sans-serif; color: #9932cc; /* Dark orchid */ } #container { height: 200px; display: flex; align-items: flex-end; } .bar { width: 25px; margin: 1px; border-radius: 12px; /* Curved edges */ background: linear-gradient(180deg, #FF6F61, #FFB347); /* Sunset gradient */ } #button-container { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; } #control-buttons { display: flex; gap: 10px; margin-bottom: 20px; /* Adjust if needed */ } button { padding: 10px 20px; font-size: 16px; background-color: #9932cc; /* Dark orchid */ color: white; border: none; border-radius: 12px; cursor: pointer; transition: background-color 0.3s; } button:hover { background-color: #ba55d3; /* Orchid */ } .control-button { background-color: #FF6347; /* Tomato color */ } .control-button:hover { background-color: #FF7F50; /* Coral color */ }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter