We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c07658 commit a678b50Copy full SHA for a678b50
pomodoro.html
@@ -20,6 +20,7 @@
20
border-radius: 10px;
21
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
22
margin-bottom: 2rem;
23
+ box-sizing: border-box;
24
}
25
#timer {
26
font-size: 4rem;
@@ -51,16 +52,24 @@
51
52
select {
53
background-color: #3498db;
54
color: white;
55
+ -webkit-appearance: none;
56
+ padding: 0.5rem 1rem;
57
+ margin: 0.5rem;
58
+ border: none;
59
+ border-radius: 5px;
60
+ cursor: pointer;
61
+ transition: background-color 0.3s;
62
63
select:hover {
64
background-color: #2980b9;
65
66
#goalInput {
- width: 100%;
67
+ width: calc(100% - 1.5em);
68
padding: 0.5rem;
69
margin-bottom: 1rem;
70
border: 1px solid #ccc;
71
border-radius: 5px;
72
73
74
#sessionLog {
75
width: 100%;
0 commit comments