mirror of
https://github.com/wavetermdev/waveapps.git
synced 2026-04-22 15:27:43 -07:00
80 lines
1.3 KiB
CSS
80 lines
1.3 KiB
CSS
.pomodoro-app {
|
|
max-width: 400px;
|
|
margin: 2rem auto;
|
|
padding: 2rem;
|
|
background: #2c3e50;
|
|
border-radius: 10px;
|
|
color: #ecf0f1;
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
.title {
|
|
text-align: center;
|
|
color: #ecf0f1;
|
|
margin-bottom: 2rem;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.timer-display {
|
|
background: #34495e;
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
margin-bottom: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.mode-indicator {
|
|
font-size: 1.2rem;
|
|
color: #3498db;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.time {
|
|
font-size: 3.5rem;
|
|
font-weight: bold;
|
|
font-family: monospace;
|
|
color: #ecf0f1;
|
|
}
|
|
|
|
.control-buttons {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.control-btn {
|
|
padding: 0.8rem 1.5rem;
|
|
font-size: 1.1rem;
|
|
border: none;
|
|
border-radius: 5px;
|
|
background: #3498db;
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.control-btn:hover {
|
|
background: #2980b9;
|
|
}
|
|
|
|
.mode-buttons {
|
|
display: flex;
|
|
gap: 1rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.mode-btn {
|
|
flex: 1;
|
|
padding: 0.8rem;
|
|
font-size: 1rem;
|
|
border: none;
|
|
border-radius: 5px;
|
|
background: #2ecc71;
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.mode-btn:hover {
|
|
background: #27ae60;
|
|
} |