harperdb
Version:
HarperDB is a distributed database, caching service, streaming broker, and application development platform focused on performance and ease of use.
58 lines (49 loc) • 838 B
CSS
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f5f5f5;
}
main {
text-align: center;
background-color: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.count {
font-size: 4rem;
margin: 1rem 0;
color: #333;
}
.counter-controls {
display: flex;
justify-content: center;
gap: 1rem;
}
button {
font-size: 1.5rem;
width: 3rem;
height: 3rem;
border: none;
border-radius: 50%;
cursor: pointer;
transition: background-color 0.2s;
}
.decrement {
background-color: #ff6b6b;
color: white;
}
.decrement:hover {
background-color: #ff5252;
}
.increment {
background-color: #4ecdc4;
color: white;
}
.increment:hover {
background-color: #39b2a9;
}