Skip to content

Commit a678b50

Browse files
authored
CSS tweaks
1 parent 9c07658 commit a678b50

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

pomodoro.html

+10-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
border-radius: 10px;
2121
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
2222
margin-bottom: 2rem;
23+
box-sizing: border-box;
2324
}
2425
#timer {
2526
font-size: 4rem;
@@ -51,16 +52,24 @@
5152
select {
5253
background-color: #3498db;
5354
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;
5462
}
5563
select:hover {
5664
background-color: #2980b9;
5765
}
5866
#goalInput {
59-
width: 100%;
67+
width: calc(100% - 1.5em);
6068
padding: 0.5rem;
6169
margin-bottom: 1rem;
6270
border: 1px solid #ccc;
6371
border-radius: 5px;
72+
box-sizing: border-box;
6473
}
6574
#sessionLog {
6675
width: 100%;

0 commit comments

Comments
 (0)